add a quickfilter instance in dashboard
[unfold.git] / trash / dashboard.py
1 # Create your views here.
2
3 from django.core.context_processors import csrf
4 from django.template import RequestContext
5 from django.template.loader import render_to_string
6 from django.shortcuts import render_to_response
7
8 from django.contrib.auth.decorators import login_required
9
10 from engine.page import Page
11 from engine.manifoldquery import ManifoldQuery
12
13 from plugins.verticallayout.verticallayout import VerticalLayout
14 from plugins.lists.slicelist import SliceList
15 from plugins.querycode.querycode import QueryCode
16 from plugins.quickfilter.quickfilter import QuickFilter
17
18 from myslice.viewutils import, quickfilter_criterias
19
20
21 from myslice.viewutils import topmenu_items, the_user
22
23 @login_required
24 def dashboard_view (request):
25     
26     page = Page(request)
27
28     slices_query = ManifoldQuery (action='get',
29                                   method='slice',
30                                   timestamp='latest',
31                                   fields=['slice_hrn'],
32                                   # xxx filter : should filter on the slices the logged user can see
33                                   # we don't have the user's hrn yet
34                                   # in addition this currently returns all slices anyways
35                                   # filter = ...
36                                   sort='slice_hrn',)
37     page.enqueue_query (slices_query)
38
39     main_plugin = VerticalLayout (
40         page=page,
41         title="Putting stuff together",
42         sons=[ 
43             QueryCode (
44                 page=page,
45                 title="Vizualize your query (no syntax highlight for now)",
46                 query=slices_query,
47                 toggled=False,
48                 ),
49             QuickFilter (
50                 page=page,
51                 title='play with filters',
52                 list=quickfilter_criterias,
53                 ),
54             SliceList ( # setting visible attributes first
55                 page=page,
56                 title='Asynchroneous SliceList',
57                 header='slices list', 
58                 with_datatables=False,
59                 # this is the query at the core of the slice list
60                 query=slices_query,
61                 ),
62             ])
63
64     # variables that will get passed to the view-plugin.html template
65     template_env = {}
66     
67     # define 'content_main' to the template engine
68     template_env [ 'content_main' ] = main_plugin.render(request)
69
70 #    ########## add another plugin with the same request, on the RHS pane
71 #    # lacks a/href to /slice/%s
72 #    related_plugin = SliceList (title='SliceList plugin',domid='slicelist1',
73 #                                with_datatables='yes', 
74 #                                list=hard_wired_slice_names, 
75 #                                header='Slices')
76 #    # likewise but on the side view
77 #    template_env [ 'content_related' ] = related_plugin.render (request)
78
79     # more general variables expected in the template
80     template_env [ 'title' ] = 'Test view for a full request cycle'
81     # the menu items on the top 
82     template_env [ 'topmenu_items' ] = topmenu_items('dashboard', request) 
83     # so we can sho who is logged
84     template_env [ 'username' ] = the_user (request) 
85
86     ##########
87     # lacks a/href to /slice/%s
88     related_plugin = SliceList (
89         page=page,
90         title='Same request, other layout',
91         domid='sidelist',
92         with_datatables=True, 
93         header='paginated slices',
94         # share the query
95         query=slices_query,
96         )
97     # likewise but on the side view
98     template_env [ 'content_related' ] = related_plugin.render (request)
99     
100     # add our own css in the mix
101     page.add_css_files ( 'css/dashboard.css')
102     
103     # don't forget to run the requests
104     page.exec_queue_asynchroneously ()
105
106     # xxx create another plugin with the same query and a different layout (with_datatables)
107     # show that it worls as expected, one single api call to backend and 2 refreshed views
108
109     # the prelude object in page contains a summary of the requirements() for all plugins
110     # define {js,css}_{files,chunks}
111     prelude_env = page.template_env()
112     template_env.update(prelude_env)
113     return render_to_response ('view-plugin.html',template_env,
114                                context_instance=RequestContext(request))