disable paginate and filter of site list in tenant view
[plstackapi.git] / planetstack / core / xoslib / static / js / xosTenant.js
1 XOSTenantSite = XOSModel.extend( {
2     listFields: ["name", "allocated"],
3     modelName: "tenantSite",
4     collectionName: "tenantSites"
5 });
6
7 XOSTenantSiteCollection = XOSCollection.extend( {
8     listFields: ["name", "allocated"],
9     modelName: "tenantSite",
10     collectionName: "tenantSites",
11
12     getFromSlice: function(slice) {
13         var tenantSites = [];
14         var id = 0;
15         for (siteName in slice.attributes.site_allocation) {
16             allocated = slice.attributes.site_allocation[siteName];
17             tenantSites.push(new XOSTenantSite( { name: siteName, allocated: allocated, id: id} ));
18             id = id + 1;
19         }
20         for (index in xos.tenantview.models[0].attributes.blessed_site_names) {
21             siteName = xos.tenantview.models[0].attributes.blessed_site_names[index];
22             if (! (siteName in slice.attributes.site_allocation)) {
23                 tenantSites.push(new XOSTenantSite( { name: siteName, allocated: 0, id: id} ));
24                 id = id + 1;
25             }
26         }
27         this.set(tenantSites);
28     },
29
30     putToSlice: function(slice) {
31         slice.attributes.site_allocation = {};
32         for (index in this.models) {
33             var model = this.models[index];
34             slice.attributes.site_allocation[ model.attributes.name ] = model.attributes.allocated;
35         }
36     },
37 });
38
39 XOSEditUsersView = Marionette.ItemView.extend({
40             template: "#tenant-edit-users",
41             viewInitializers: [],
42
43             onShow: function() {
44                 _.each(this.viewInitializers, function(initializer) {
45                     initializer();
46                 });
47             },
48
49             templateHelpers: function() { return { detailView: this, model: this.model }; },
50
51             });
52
53
54 XOSTenantButtonView = Marionette.ItemView.extend({
55             template: "#xos-tenant-buttons-template",
56
57             events: {"click button.btn-tenant-create": "createClicked",
58                      "click button.btn-tenant-delete": "deleteClicked",
59                      "click button.btn-tenant-add-user": "addUserClicked",
60                      "click button.btn-tenant-save": "saveClicked",
61                      },
62
63             createClicked: function(e) {
64                      XOSTenantApp.addSlice();
65                      },
66
67             deleteClicked: function(e) {
68                      XOSTenantApp.deleteSlice(this.options.linkedView.model);
69                      },
70
71             addUserClicked: function(e) {
72                      XOSTenantApp.editUsers(this.options.linkedView.model);
73                      },
74
75             saveClicked: function(e) {
76                      model = this.options.linkedView.model;
77                      model.tenantSiteCollection.putToSlice(model);
78                      model.attributes.users = model.usersBuffer;
79                      this.options.linkedView.submitContinueClicked.call(this.options.linkedView, e);
80                      },
81             });
82
83 XOSTenantApp = new XOSApplication({
84     logTableId: "#logTable",
85     statusMsgId: "#statusMsg",
86     hideTabsByDefault: true,
87     varName: "XOSTenantApp",
88 });
89
90 XOSTenantApp.addRegions({
91     tenantSliceSelector: "#tenantSliceSelector",
92     tenantSummary: "#tenantSummary",
93     tenantSiteList: "#tenantSiteList",
94     tenantButtons: "#tenantButtons",
95     tenantAddSliceInterior: "#tenant-addslice-interior",
96     tenantEditUsersInterior: "#tenant-edit-users-interior",
97 });
98
99 XOSTenantApp.buildViews = function() {
100      XOSTenantApp.tenantSites = new XOSTenantSiteCollection();\r
101 \r
102      tenantSummaryClass = XOSDetailView.extend({template: "#xos-detail-template",\r
103                                                 app: XOSTenantApp,\r
104                                                 detailFields: ["serviceClass", "default_image", "default_flavor", "network_ports", "mount_data_sets"],\r
105                                                 fieldDisplayNames: {serviceClass: "Service Level", "default_flavor": "Flavor", "default_image": "Image", "mount_data_sets": "Data Sets"},\r
106                                                 });\r
107 \r
108      XOSTenantApp.tenantSummaryView = tenantSummaryClass;\r
109 \r
110      tenantAddClass = XOSDetailView.extend({template: "#xos-detail-template",\r
111                                                 app: XOSTenantApp,\r
112                                                 detailFields: ["name", "description"]});\r
113 \r
114      XOSTenantApp.tenantAddView = tenantAddClass;\r
115 \r
116      tenantSiteItemClass = XOSItemView.extend({template: "#xos-listitem-template",\r
117                                                app: XOSTenantApp});\r
118 \r
119      XOSTenantApp.tenantSiteItemView = tenantSiteItemClass;\r
120 \r
121      tenantSiteListClass = XOSDataTableView.extend({template: "#xos-list-template",\r
122                                                app: XOSTenantApp,\r
123                                                childView: tenantSiteItemClass,\r
124                                                collection: XOSTenantApp.tenantSites,\r
125                                                title: "sites",\r
126                                                inputType: {allocated: "spinner"},\r
127                                                noDeleteColumn: true,\r
128                                                disablePaginate: true,\r
129                                                disableFilter: true,\r
130                                                });\r
131 \r
132      XOSTenantApp.tenantSiteListView = tenantSiteListClass;\r
133 \r
134      XOSTenantApp.tenantSliceSelectorView = SliceSelectorView.extend( {\r
135          sliceChanged: function(id) {\r
136              XOSTenantApp.navToSlice(id);\r
137          },\r
138      });\r
139 \r
140      xos.sites.fetch();\r
141      xos.slicesPlus.fetch();\r
142      xos.tenantview.fetch();\r
143 };\r
144 \r
145 make_choices = function(list_of_names, list_of_values) {\r
146     result = [];\r
147     if (!list_of_values) {\r
148         for (index in list_of_names) {\r
149             displayName = list_of_names[index];\r
150             result.push( [displayName, displayName] );\r
151         }\r
152     } else {\r
153         for (index in list_of_names) {\r
154             displayName = list_of_names[index];\r
155             id = list_of_values[index];\r
156             result.push( [displayName, id] );\r
157         }\r
158     }\r
159     return result;\r
160 };\r
161 \r
162 XOSTenantApp.navToSlice = function(id) {\r
163     XOSTenantApp.viewSlice(xos.slicesPlus.get(id));\r
164 };\r
165 \r
166 XOSTenantApp.adjustCollectionField = function(collectionName, id, fieldName, amount) {\r
167     model = XOSTenantApp[collectionName].get(id);\r
168     model.set(fieldName, Math.max(model.get(fieldName) + amount, 0));\r
169 };\r
170 \r
171 XOSTenantApp.addSlice = function() {\r
172     var app=this;\r
173     model = new xos.slicesPlus.model({site: xos.tenant().current_user_site_id,\r
174                                       name: xos.tenant().current_user_login_base + "_"});\r
175     console.log(model);\r
176     var detailView = new XOSTenantApp.tenantAddView({model: model,\r
177                                                     collection: xos.slicesPlus,\r
178                                                     noSubmitButton: true,\r
179                                                     });\r
180     detailView.dialog = $("#tenant-addslice-dialog");\r
181     app.tenantAddSliceInterior.show(detailView);\r
182     $("#tenant-addslice-dialog").dialog({\r
183        autoOpen: false,
184        modal: true,
185        width: 640,
186        buttons : {
187             "Create Slice" : function() {
188               var addDialog = this;
189               console.log("SAVE!!!");
190               detailView.synchronous = true;
191               detailView.afterSave = function() { $(addDialog).dialog("close"); XOSTenantApp.navToSlice(detailView.model.id); }
192               detailView.save();
193             },
194             "Cancel" : function() {
195               $(this).dialog("close");
196             }
197           }
198         });
199     $("#tenant-addslice-dialog").dialog("open");\r
200 };\r
201 \r
202 XOSTenantApp.editUsers = function(model) {\r
203     var app=this;\r
204     var detailView = new XOSEditUsersView({model: model, collection: xos.slicesPlus});\r
205     detailView.dialog = $("#tenant-edit-users-dialog");\r
206     app.tenantEditUsersInterior.show(detailView);\r
207     $("#tenant-edit-users-dialog").dialog({\r
208        autoOpen: false,
209        modal: true,
210        width: 640,
211        buttons : {
212             "Ok" : function() {
213               var editDialog = this;
214               user_ids = all_options($("#tenant-edit-users-dialog").find(".select-picker-to"));
215               user_ids = user_ids.map( function(x) { return parseInt(x,10); } );
216               model.usersBuffer = user_ids;
217               $(editDialog).dialog("close");
218             },
219             "Cancel" : function() {
220               $(this).dialog("close");
221             }
222           }
223         });
224     $("#tenant-edit-users-dialog").dialog("open");\r
225 };\r
226 \r
227 XOSTenantApp.deleteSlice = function(model) {\r
228     var app=this;\r
229     app.deleteDialog(model, function() { console.log("afterDelete"); app.viewSlice(undefined); });\r
230 };\r
231 \r
232 XOSTenantApp.viewSlice = function(model) {\r
233     if (!model && xos.slicesPlus.models.length > 0) {\r
234         model = xos.slicesPlus.models[0];\r
235     }\r
236 \r
237     if (model) {\r
238         sliceSelector = new XOSTenantApp.tenantSliceSelectorView({collection: xos.slicesPlus,\r
239                                                                   selectedID: model ? model.id : null,\r
240                                                                  } );\r
241         XOSTenantApp.sliceSelector = sliceSelector;\r
242         XOSTenantApp.tenantSliceSelector.show(sliceSelector);\r
243 \r
244         tenantSummary = new XOSTenantApp.tenantSummaryView({model: model,\r
245                                                             choices: {mount_data_sets: make_choices(xos.tenant().public_volume_names, null),\r
246                                                                       serviceClass: make_choices(xos.tenant().blessed_service_class_names, xos.tenant().blessed_service_classes),\r
247                                                                       default_image: make_choices(xos.tenant().blessed_image_names, xos.tenant().blessed_images),\r
248                                                                       default_flavor: make_choices(xos.tenant().blessed_flavor_names, xos.tenant().blessed_flavors),},\r
249                                                            });\r
250         XOSTenantApp.tenantSummary.show(tenantSummary);\r
251 \r
252         tenantSites = new XOSTenantSiteCollection();\r
253         tenantSites.getFromSlice(model);\r
254         model.usersBuffer = model.attributes.users; /* save a copy of 'users' that we can edit. This prevents another view (developer) from overwriting our copy with a fetch from the server */\r
255         model.tenantSiteCollection = tenantSites;\r
256         XOSTenantApp.tenantSites = tenantSites;\r
257 \r
258         tenantSiteList = new XOSTenantApp.tenantSiteListView({collection: tenantSites });\r
259         XOSTenantApp.tenantSiteList.show(tenantSiteList);\r
260         // on xos.slicePlus.sort, need to update xostenantapp.tenantSites\r
261 \r
262         XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { app: XOSTenantApp,\r
263                                                                     linkedView: tenantSummary } ) );\r
264     } else {\r
265         XOSTenantApp.tenantSliceSelector.show(new HTMLView({html: ""}));\r
266         XOSTenantApp.tenantSummary.show(new HTMLView({html: "You have no slices"}));\r
267         XOSTenantApp.tenantSiteList.show(new HTMLView({html: ""}));\r
268         XOSTenantApp.tenantButtons.show( new XOSTenantButtonView( { template: "#xos-tenant-buttons-noslice-template",\r
269                                                                     app: XOSTenantApp,\r
270                                                                     linkedView: tenantSummary } ) );\r
271     }\r
272 };\r
273 \r
274 XOSTenantApp.sanityCheck = function() {\r
275     errors = [];\r
276     if (xos.tenant().blessed_service_classes.length == 0) {\r
277         errors.push("no blessed service classes");\r
278     }\r
279     if (xos.tenant().blessed_flavors.length == 0) {\r
280         errors.push("no blessed flavors");\r
281     }\r
282     if (xos.tenant().blessed_images.length == 0) {\r
283         errors.push("no blessed images");\r
284     }\r
285     if (xos.tenant().blessed_sites.length == 0) {\r
286         errors.push("no blessed sites");\r
287     }\r
288 \r
289     if (errors.length > 0) {\r
290          $("#tenantSummary").html("Tenant view sanity check failed<br>" + errors.join("<br>"));\r
291          return false;\r
292     }\r
293 \r
294     return true;\r
295 }\r
296 \r
297 XOSTenantApp.collectionLoadChange = function() {\r
298     stats = xos.getCollectionStatus();\r
299 \r
300     if (!XOSTenantApp.navigationStarted) {\r
301         if (stats["isLoaded"] + stats["failedLoad"] >= stats["startedLoad"]) {\r
302             if (XOSTenantApp.sanityCheck()) {\r
303                 XOSTenantApp.viewSlice(undefined);\r
304             }\r
305         } else {\r
306             $("#tenantSummary").html("<h3>Loading...</h3><div id='xos-startup-progress'></div>");\r
307             $("#xos-startup-progress").progressbar({value: stats["completedLoad"], max: stats["startedLoad"]});\r
308         }\r
309     }\r
310 };\r
311 \r
312 XOSTenantApp.on("start", function() {\r
313      XOSTenantApp.buildViews();
314
315      // fire it once to initially show the progress bar
316      XOSTenantApp.collectionLoadChange();
317
318      // fire it each time the collection load status is updated
319      Backbone.on("xoslib:collectionLoadChange", XOSTenantApp.collectionLoadChange);
320 });
321
322 $(document).ready(function(){
323     XOSTenantApp.start();
324 });
325