139dccd73f72e22f3d2b1e9acda41bdba82aa75e
[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 #                toggled=False,
47                 active_domid='checkboxes',
48                 sons=[
49                     Hazelnut ( 
50                         page=page,
51                         title='a sample and simple hazelnut',
52                         domid='simple',
53                         togglable=False,
54                         # this is the query at the core of the slice list
55                         query=main_query,
56                         ),
57                     Hazelnut ( 
58                         page=page,
59                         title='with checkboxes',
60                         domid='checkboxes',
61                         togglable=False,
62                         checkboxes=True,
63                         # this is the query at the core of the slice list
64                         query=main_query,
65                         ),
66                     ]),
67               Hazelnut ( 
68                 page=page,
69                 title='not in tabs',
70                 domid='standalone',
71 #                toggled=False,
72                 # this is the query at the core of the slice list
73                 query=main_query,
74                 ),
75               QueryCode (
76                 page=page,
77                 title='xmlrpc code',
78                 query=main_query,
79 #                toggled=False,
80                 ),
81               QuickFilter (
82                 page=page,
83                 title="QuickFilter is currently the only one that requires metadata",
84                 criterias=quickfilter_criterias
85                 ),
86               ])
87
88     # variables that will get passed to the view-unfold1.html template
89     template_env = {}
90     
91     # define 'unfold1_main' to the template engine - the main contents
92     template_env [ 'unfold1_main' ] = main_plugin.render(request)
93
94     # more general variables expected in the template
95     template_env [ 'title' ] = 'Test view for hazelnut'
96     # the menu items on the top
97     template_env [ 'topmenu_items' ] = topmenu_items('slice', request) 
98     # so we can sho who is logged
99     template_env [ 'username' ] = the_user (request) 
100
101     # don't forget to run the requests
102     page.exec_queue_asynchroneously ()
103
104     # xxx create another plugin with the same query and a different layout (with_datatables)
105     # show that it worls as expected, one single api call to backend and 2 refreshed views
106
107     # the prelude object in page contains a summary of the requirements() for all plugins
108     # define {js,css}_{files,chunks}
109     prelude_env = page.prelude_env()
110     template_env.update(prelude_env)
111     result=render_to_response ('view-unfold1.html',template_env,
112                                context_instance=RequestContext(request))
113     return result