enables a more elaborate 'persistent' mode for toggling plugins - which btw is the...
[myslice.git] / trash / sliceview.py
1 # Create your views here.
2
3 from django.template import RequestContext
4 from django.shortcuts import render_to_response
5
6 from django.contrib.auth.decorators import login_required
7
8 from unfold.page import Page
9 from manifold.manifoldquery import ManifoldQuery
10
11 from plugins.stack.stack import Stack
12 from plugins.tabs.tabs import Tabs
13 from plugins.hazelnut.hazelnut import Hazelnut 
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 from myslice.viewutils import topmenu_items, the_user
21
22 tmp_default_slice='ple.inria.sfatest'
23
24 @login_required
25 def slice_view (request, slicename=tmp_default_slice):
26     
27     page = Page(request)
28
29     main_query = ManifoldQuery (action='get',
30                                 subject='resource',
31                                 timestamp='latest',
32                                 fields=['network','type','hrn','hostname'],
33                                 filters= [ [ 'slice_hrn', '=', slicename, ] ],
34                                 )
35     page.enqueue_query (main_query)
36
37     main_plugin = Stack (
38         page=page,
39         title="Slice view for %s"%slicename,
40         domid='thestack',
41         togglable=False,
42         sons=[Tabs (
43                 page=page,
44                 title="2 tabs : w/ and w/o checkboxes",
45                 domid='thetabs',
46                 active_domid='checkboxes',
47                 sons=[
48                     Hazelnut ( 
49                         page=page,
50                         title='a sample and simple hazelnut',
51                         domid='simple',
52                         togglable=False,
53                         # this is the query at the core of the slice list
54                         query=main_query,
55                         ),
56                     Hazelnut ( 
57                         page=page,
58                         title='with checkboxes',
59                         domid='checkboxes',
60                         togglable=False,
61                         checkboxes=True,
62                         # this is the query at the core of the slice list
63                         query=main_query,
64                         datatables_options = { 
65                             # for now we turn off sorting on the checkboxes columns this way
66                             # this of course should be automatic in hazelnut
67                             'aoColumns' : [ None, None, None, None, {'bSortable': False} ],
68                             'iDisplayLength' : 25,
69                             'bLengthChange' : True,
70                             },
71                         ),
72                     ]),
73               Hazelnut ( 
74                 page=page,
75                 title='not in tabs',
76                 domid='standalone',
77                 # this is the query at the core of the slice list
78                 query=main_query,
79                 columns=['hrn','hostname'],
80                 ),
81               # you don't *have to* set a domid, but if you plan on using toggled=persistent then it's required
82               # because domid is the key for storing toggle status in the browser
83               QueryCode (
84                 page=page,
85                 title='xmlrpc code (toggled=False)',
86                 query=main_query,
87 #                domid='xmlrpc',
88                 toggled=False,
89                 ),
90               QuickFilter (
91                 page=page,
92                 title="QuickFilter - requires metadata (toggled=False)",
93                 criterias=quickfilter_criterias,
94                 domid='filters',
95                 toggled=False,
96                 ),
97               ])
98
99     # variables that will get passed to the view-unfold1.html template
100     template_env = {}
101     
102     # define 'unfold1_main' to the template engine - the main contents
103     template_env [ 'unfold1_main' ] = main_plugin.render(request)
104
105     # more general variables expected in the template
106     template_env [ 'title' ] = 'Test view for hazelnut'
107     # the menu items on the top
108     template_env [ 'topmenu_items' ] = topmenu_items('slice', request) 
109     # so we can sho who is logged
110     template_env [ 'username' ] = the_user (request) 
111
112     # don't forget to run the requests
113     page.exec_queue_asynchroneously ()
114
115     # xxx create another plugin with the same query and a different layout (with_datatables)
116     # show that it worls as expected, one single api call to backend and 2 refreshed views
117
118     # the prelude object in page contains a summary of the requirements() for all plugins
119     # define {js,css}_{files,chunks}
120     prelude_env = page.prelude_env()
121     template_env.update(prelude_env)
122     result=render_to_response ('view-unfold1.html',template_env,
123                                context_instance=RequestContext(request))
124     return result