[IMP] New menus
[odoo/odoo.git] / addons / web / static / src / js / chrome.js
1 /*---------------------------------------------------------
2  * OpenERP Web chrome
3  *---------------------------------------------------------*/
4 openerp.web.chrome = function(openerp) {
5 var QWeb = openerp.web.qweb,
6     _t = openerp.web._t;
7
8 openerp.web.Notification =  openerp.web.OldWidget.extend(/** @lends openerp.web.Notification# */{
9     template: 'Notification',
10
11     init: function() {
12         this._super.apply(this, arguments);
13         openerp.notification = this;
14     },
15
16     start: function() {
17         this._super.apply(this, arguments);
18         this.$element.notify({
19             speed: 500,
20             expires: 2500
21         });
22     },
23     notify: function(title, text, sticky) {
24         sticky = !!sticky;
25         var opts = {};
26         if (sticky) {
27             opts.expires = false;
28         }
29         this.$element.notify('create', {
30             title: title,
31             text: text
32         }, opts);
33     },
34     warn: function(title, text, sticky) {
35         sticky = !!sticky;
36         var opts = {};
37         if (sticky) {
38             opts.expires = false;
39         }
40         this.$element.notify('create', 'oe_notification_alert', {
41             title: title,
42             text: text
43         }, opts);
44     }
45
46 });
47
48 openerp.web.dialog = function(element) {
49     var result = element.dialog.apply(element, _.rest(_.toArray(arguments)));
50     result.dialog("widget").addClass("openerp");
51     return result;
52 }
53
54 openerp.web.Dialog = openerp.web.OldWidget.extend(/** @lends openerp.web.Dialog# */{
55     dialog_title: "",
56     /**
57      * @constructs openerp.web.Dialog
58      * @extends openerp.web.OldWidget
59      *
60      * @param parent
61      * @param options
62      */
63     init: function (parent, options, content) {
64         var self = this;
65         this._super(parent);
66         if (content) {
67             this.$element = content instanceof $ ? content : $(content);
68         }
69         this.dialog_options = {
70             modal: true,
71             destroy_on_close: true,
72             width: $(window).width() * (($(window).width() > 1024) ? 0.5 : 0.75),
73             min_width: 0,
74             max_width: '95%',
75             height: 'auto',
76             min_height: 0,
77             max_height: this.get_height('100%') - 140,
78             autoOpen: false,
79             position: [false, 50],
80             buttons: {},
81             beforeClose: function () { self.on_close(); },
82             resizeStop: this.on_resized
83         };
84         for (var f in this) {
85             if (f.substr(0, 10) == 'on_button_') {
86                 this.dialog_options.buttons[f.substr(10)] = this[f];
87             }
88         }
89         if (options) {
90             _.extend(this.dialog_options, options);
91         }
92         if (this.dialog_options.autoOpen) {
93             this.open();
94         } else {
95             openerp.web.dialog(this.$element, this.get_options());
96         }
97     },
98     get_options: function(options) {
99         var self = this,
100             o = _.extend({}, this.dialog_options, options || {});
101         _.each(['width', 'height'], function(unit) {
102             o[unit] = self['get_' + unit](o[unit]);
103             o['min_' + unit] = self['get_' + unit](o['min_' + unit] || 0);
104             o['max_' + unit] = self['get_' + unit](o['max_' + unit] || 0);
105             if (o[unit] !== 'auto' && o['min_' + unit] && o[unit] < o['min_' + unit]) o[unit] = o['min_' + unit];
106             if (o[unit] !== 'auto' && o['max_' + unit] && o[unit] > o['max_' + unit]) o[unit] = o['max_' + unit];
107         });
108         if (!o.title && this.dialog_title) {
109             o.title = this.dialog_title;
110         }
111         return o;
112     },
113     get_width: function(val) {
114         return this.get_size(val.toString(), $(window.top).width());
115     },
116     get_height: function(val) {
117         return this.get_size(val.toString(), $(window.top).height());
118     },
119     get_size: function(val, available_size) {
120         if (val === 'auto') {
121             return val;
122         } else if (val.slice(-1) == "%") {
123             return Math.round(available_size / 100 * parseInt(val.slice(0, -1), 10));
124         } else {
125             return parseInt(val, 10);
126         }
127     },
128     open: function(options) {
129         // TODO fme: bind window on resize
130         if (this.template) {
131             this.$element.html(this.render());
132         }
133         var o = this.get_options(options);
134         openerp.web.dialog(this.$element, o).dialog('open');
135         if (o.height === 'auto' && o.max_height) {
136             this.$element.css({ 'max-height': o.max_height, 'overflow-y': 'auto' });
137         }
138         return this;
139     },
140     close: function() {
141         this.$element.dialog('close');
142     },
143     on_close: function() {
144         if (this.dialog_options.destroy_on_close) {
145             this.$element.dialog('destroy');
146         }
147     },
148     on_resized: function() {
149         //openerp.log("Dialog resized to %d x %d", this.$element.width(), this.$element.height());
150     },
151     destroy: function () {
152         // Destroy widget
153         this.close();
154         this.$element.dialog('destroy');
155         this._super();
156     }
157 });
158
159 openerp.web.CrashManager = openerp.web.CallbackEnabled.extend({
160     on_rpc_error: function(error) {
161         if (error.data.fault_code) {
162             var split = ("" + error.data.fault_code).split('\n')[0].split(' -- ');
163             if (split.length > 1) {
164                 error.type = split.shift();
165                 error.data.fault_code = error.data.fault_code.substr(error.type.length + 4);
166             }
167         }
168         if (error.code === 200 && error.type) {
169             this.on_managed_error(error);
170         } else {
171             this.on_traceback(error);
172         }
173     },
174     on_managed_error: function(error) {
175         openerp.web.dialog($('<div>' + QWeb.render('CrashManagerWarning', {error: error}) + '</div>'), {
176             title: "OpenERP " + _.str.capitalize(error.type),
177             buttons: [
178                 {text: _t("Ok"), click: function() { $(this).dialog("close"); }}
179             ]
180         });
181     },
182     on_traceback: function(error) {
183         var self = this;
184         var buttons = {};
185         if (openerp.connection.openerp_entreprise) {
186             buttons[_t("Send OpenERP Enterprise Report")] = function() {
187                 var $this = $(this);
188                 var issuename = $('#issuename').val();
189                 var explanation = $('#explanation').val();
190                 var remark = $('#remark').val();
191                 // Call the send method from server to send mail with details
192                 new openerp.web.DataSet(self, 'publisher_warranty.contract').call_and_eval('send', [error.data,explanation,remark,issuename]).then(function(result){
193                     if (result === false) {
194                         alert('There was a communication error.')
195                     } else {
196                         $this.dialog('close');
197                     }
198                 });
199             };
200             buttons[_t("Dont send")] = function() {
201                 $(this).dialog("close");
202             };
203         } else {
204             buttons[_t("Ok")] = function() {
205                 $(this).dialog("close");
206             };
207         }
208         var dialog = new openerp.web.Dialog(this, {
209             title: "OpenERP " + _.str.capitalize(error.type),
210             width: '80%',
211             height: '50%',
212             min_width: '800px',
213             min_height: '600px',
214             buttons: buttons
215         }).open();
216         dialog.$element.html(QWeb.render('CrashManagerError', {session: openerp.connection, error: error}));
217     }
218 });
219
220 openerp.web.Loading = openerp.web.OldWidget.extend(/** @lends openerp.web.Loading# */{
221     template: 'Loading',
222     /**
223      * @constructs openerp.web.Loading
224      * @extends openerp.web.OldWidget
225      *
226      * @param parent
227      * @param element_id
228      */
229     init: function(parent) {
230         this._super(parent);
231         this.count = 0;
232         this.blocked_ui = false;
233         var self = this;
234         this.request_call = function() {
235             self.on_rpc_event(1);
236         };
237         this.response_call = function() {
238             self.on_rpc_event(-1);
239         };
240         this.session.on_rpc_request.add_first(this.request_call);
241         this.session.on_rpc_response.add_last(this.response_call);
242     },
243     destroy: function() {
244         this.session.on_rpc_request.remove(this.request_call);
245         this.session.on_rpc_response.remove(this.response_call);
246         this.on_rpc_event(-this.count);
247         this._super();
248     },
249     on_rpc_event : function(increment) {
250         var self = this;
251         if (!this.count && increment === 1) {
252             // Block UI after 3s
253             this.long_running_timer = setTimeout(function () {
254                 self.blocked_ui = true;
255                 $.blockUI();
256             }, 3000);
257         }
258
259         this.count += increment;
260         if (this.count > 0) {
261             $(".loading",this.$element).text(_.str.sprintf(
262                 _t("Loading (%d)"), this.count));
263             $(".loading",this.$element).show();
264             this.getParent().$element.addClass('loading');
265         } else {
266             this.count = 0;
267             clearTimeout(this.long_running_timer);
268             // Don't unblock if blocked by somebody else
269             if (self.blocked_ui) {
270                 this.blocked_ui = false;
271                 $.unblockUI();
272             }
273             $(".loading",this.$element).fadeOut();
274             this.getParent().$element.removeClass('loading');
275         }
276     }
277 });
278
279 openerp.web.Database = openerp.web.OldWidget.extend(/** @lends openerp.web.Database# */{
280     template: "DatabaseManager",
281     /**
282      * @constructs openerp.web.Database
283      * @extends openerp.web.OldWidget
284      *
285      * @param parent
286      * @param element_id
287      * @param option_id
288      */
289     init: function(parent, element_id, option_id) {
290         this._super(parent, element_id);
291         this.unblockUIFunction = $.unblockUI;
292         $.validator.addMethod('matches', function (s, _, re) {
293             return new RegExp(re).test(s);
294         }, _t("Invalid database name"));
295     },
296     start: function() {
297         this.$option_id = $("#oe_db_options");
298
299         var self = this;
300         var fetch_db = this.rpc("/web/database/get_list", {}).pipe(
301             function(result) { self.db_list = result.db_list; },
302             function (_, ev) { ev.preventDefault(); self.db_list = null; });
303         var fetch_langs = this.rpc("/web/session/get_lang_list", {}, function(result) {
304             if (result.error) {
305                 self.display_error(result);
306                 return;
307             }
308             self.lang_list = result.lang_list;
309         });
310         $.when(fetch_db, fetch_langs).then(function () {self.do_create();});
311
312         this.$element.find('#db-create').click(this.do_create);
313         this.$element.find('#db-drop').click(this.do_drop);
314         this.$element.find('#db-backup').click(this.do_backup);
315         this.$element.find('#db-restore').click(this.do_restore);
316         this.$element.find('#db-change-password').click(this.do_change_password);
317         this.$element.find('#back-to-login').click(function() {
318             self.hide();
319         });
320     },
321     destroy: function () {
322         this.hide();
323         this.$option_id.empty();
324
325         this.$element
326             .find('#db-create, #db-drop, #db-backup, #db-restore, #db-change-password, #back-to-login')
327                 .unbind('click')
328             .end()
329             .empty();
330         this._super();
331     },
332     show: function () {
333         this.$element.closest(".login")
334                 .addClass("database_block");
335     },
336     hide: function () {
337         this.$element.closest(".login")
338                 .removeClass("database_block")
339     },
340     /**
341      * Converts a .serializeArray() result into a dict. Does not bother folding
342      * multiple identical keys into an array, last key wins.
343      *
344      * @param {Array} array
345      */
346     to_object: function (array) {
347         var result = {};
348         _(array).each(function (record) {
349             result[record.name] = record.value;
350         });
351         return result;
352     },
353     /**
354      * Waits until the new database is done creating, then unblocks the UI and
355      * logs the user in as admin
356      *
357      * @param {Number} db_creation_id identifier for the db-creation operation, used to fetch the current installation progress
358      * @param {Object} info info fields for this database creation
359      * @param {String} info.db name of the database being created
360      * @param {String} info.password super-admin password for the database
361      */
362     wait_for_newdb: function (db_creation_id, info) {
363         var self = this;
364         self.rpc('/web/database/progress', {
365             id: db_creation_id,
366             password: info.password
367         }, function (result) {
368             var progress = result[0];
369             // I'd display a progress bar, but turns out the progress status
370             // the server report kind-of blows goats: it's at 0 for ~75% of
371             // the installation, then jumps to 75%, then jumps down to either
372             // 0 or ~40%, then back up to 75%, then terminates. Let's keep that
373             // mess hidden behind a not-very-useful but not overly weird
374             // message instead.
375             if (progress < 1) {
376                 setTimeout(function () {
377                     self.wait_for_newdb(db_creation_id, info);
378                 }, 500);
379                 return;
380             }
381
382             var admin = result[1][0];
383             setTimeout(function () {
384                 self.getParent().do_login(
385                         info.db, admin.login, admin.password);
386                 self.destroy();
387                 self.unblockUI();
388             });
389         });
390     },
391     /**
392      * Blocks UI and replaces $.unblockUI by a noop to prevent third parties
393      * from unblocking the UI
394      */
395     blockUI: function () {
396         $.blockUI();
397         $.unblockUI = function () {};
398     },
399     /**
400      * Reinstates $.unblockUI so third parties can play with blockUI, and
401      * unblocks the UI
402      */
403     unblockUI: function () {
404         $.unblockUI = this.unblockUIFunction;
405         $.unblockUI();
406     },
407     /**
408      * Displays an error dialog resulting from the various RPC communications
409      * failing over themselves
410      *
411      * @param {Object} error error description
412      * @param {String} error.title title of the error dialog
413      * @param {String} error.error message of the error dialog
414      */
415     display_error: function (error) {
416         return openerp.web.dialog($('<div>'), {
417             modal: true,
418             title: error.title,
419             buttons: [
420                 {text: _t("Ok"), click: function() { $(this).dialog("close"); }}
421             ]
422         }).html(error.error);
423     },
424     do_create: function() {
425         var self = this;
426         self.$option_id.html(QWeb.render("Database.CreateDB", self));
427         self.$option_id.find("form[name=create_db_form]").validate({
428             submitHandler: function (form) {
429                 var fields = $(form).serializeArray();
430                 self.blockUI();
431                 self.rpc("/web/database/create", {'fields': fields}, function(result) {
432                     if (result.error) {
433                         self.unblockUI();
434                         self.display_error(result);
435                         return;
436                     }
437                     if (self.db_list) {
438                         self.db_list.push(self.to_object(fields)['db_name']);
439                         self.db_list.sort();
440                         self.getParent().set_db_list(self.db_list);
441                     }
442                     var form_obj = self.to_object(fields);
443                     self.wait_for_newdb(result, {
444                         password: form_obj['super_admin_pwd'],
445                         db: form_obj['db_name']
446                     });
447                 });
448             }
449         });
450     },
451     do_drop: function() {
452         var self = this;
453         self.$option_id.html(QWeb.render("DropDB", self));
454         self.$option_id.find("form[name=drop_db_form]").validate({
455             submitHandler: function (form) {
456                 var $form = $(form),
457                     fields = $form.serializeArray(),
458                     $db_list = $form.find('select[name=drop_db]'),
459                     db = $db_list.val();
460
461                 if (!confirm("Do you really want to delete the database: " + db + " ?")) {
462                     return;
463                 }
464                 self.rpc("/web/database/drop", {'fields': fields}, function(result) {
465                     if (result.error) {
466                         self.display_error(result);
467                         return;
468                     }
469                     $db_list.find(':selected').remove();
470                     if (self.db_list) {
471                         self.db_list.splice(_.indexOf(self.db_list, db, true), 1);
472                         self.getParent().set_db_list(self.db_list);
473                     }
474                     self.do_notify("Dropping database", "The database '" + db + "' has been dropped");
475                 });
476             }
477         });
478     },
479     do_backup: function() {
480         var self = this;
481         self.$option_id
482             .html(QWeb.render("BackupDB", self))
483             .find("form[name=backup_db_form]").validate({
484             submitHandler: function (form) {
485                 self.blockUI();
486                 self.session.get_file({
487                     form: form,
488                     success: function () {
489                         self.do_notify(_t("Backed"),
490                             _t("Database backed up successfully"));
491                     },
492                     error: openerp.webclient.crashmanager.on_rpc_error,
493                     complete: function() {
494                         self.unblockUI();
495                     }
496                 });
497             }
498         });
499     },
500     do_restore: function() {
501         var self = this;
502         self.$option_id.html(QWeb.render("RestoreDB", self));
503
504         self.$option_id.find("form[name=restore_db_form]").validate({
505             submitHandler: function (form) {
506                 self.blockUI();
507                 $(form).ajaxSubmit({
508                     url: '/web/database/restore',
509                     type: 'POST',
510                     resetForm: true,
511                     success: function (body) {
512                         // TODO: ui manipulations
513                         // note: response objects don't work, but we have the
514                         // HTTP body of the response~~
515
516                         // If empty body, everything went fine
517                         if (!body) { return; }
518
519                         if (body.indexOf('403 Forbidden') !== -1) {
520                             self.display_error({
521                                 title: 'Access Denied',
522                                 error: 'Incorrect super-administrator password'
523                             })
524                         } else {
525                             self.display_error({
526                                 title: 'Restore Database',
527                                 error: 'Could not restore the database'
528                             })
529                         }
530                     },
531                     complete: function() {
532                         self.unblockUI();
533                         self.do_notify(_t("Restored"), _t("Database restored successfully"));
534                     }
535                 });
536             }
537         });
538     },
539     do_change_password: function() {
540         var self = this;
541         self.$option_id.html(QWeb.render("Change_DB_Pwd", self));
542
543         self.$option_id.find("form[name=change_pwd_form]").validate({
544             messages: {
545                 old_pwd: "Please enter your previous password",
546                 new_pwd: "Please enter your new password",
547                 confirm_pwd: {
548                     required: "Please confirm your new password",
549                     equalTo: "The confirmation does not match the password"
550                 }
551             },
552             submitHandler: function (form) {
553                 self.rpc("/web/database/change_password", {
554                     'fields': $(form).serializeArray()
555                 }, function(result) {
556                     if (result.error) {
557                         self.display_error(result);
558                         return;
559                     }
560                     self.do_notify("Changed Password", "Password has been changed successfully");
561                 });
562             }
563         });
564     }
565 });
566
567 openerp.web.Login =  openerp.web.OldWidget.extend(/** @lends openerp.web.Login# */{
568     remember_credentials: true,
569     
570     template: "Login",
571     /**
572      * @constructs openerp.web.Login
573      * @extends openerp.web.OldWidget
574      *
575      * @param parent
576      * @param element_id
577      */
578
579     init: function(parent) {
580         this._super(parent);
581         this.has_local_storage = typeof(localStorage) != 'undefined';
582         this.selected_db = null;
583         this.selected_login = null;
584
585         if (this.has_local_storage && this.remember_credentials) {
586             this.selected_db = localStorage.getItem('last_db_login_success');
587             this.selected_login = localStorage.getItem('last_login_login_success');
588             if (jQuery.deparam(jQuery.param.querystring()).debug != undefined) {
589                 this.selected_password = localStorage.getItem('last_password_login_success');
590             }
591         }
592     },
593     start: function() {
594         var self = this;
595         this.database = new openerp.web.Database(this);
596         this.database.appendTo(this.$element);
597
598         this.$element.find('#oe-db-config').click(function() {
599             self.database.show();
600         });
601
602         this.$element.find("form").submit(this.on_submit);
603
604         this.rpc("/web/database/get_list", {}, function(result) {
605             self.set_db_list(result.db_list);
606         }, 
607         function(error, event) {
608             if (error.data.fault_code === 'AccessDenied') {
609                 event.preventDefault();
610             }
611         });
612
613     },
614     set_db_list: function (list) {
615         this.$element.find("[name=db]").replaceWith(
616             openerp.web.qweb.render('Login_dblist', {
617                 db_list: list, selected_db: this.selected_db}))
618     },
619     on_submit: function(ev) {
620         if(ev) {
621             ev.preventDefault();
622         }
623         var $e = this.$element;
624         var db = $e.find("form [name=db]").val();
625         if (!db) {
626             this.do_warn("Login", "No database selected !");
627             return false;
628         }
629         var login = $e.find("form input[name=login]").val();
630         var password = $e.find("form input[name=password]").val();
631
632         this.do_login(db, login, password);
633     },
634     /**
635      * Performs actual login operation, and UI-related stuff
636      *
637      * @param {String} db database to log in
638      * @param {String} login user login
639      * @param {String} password user password
640      */
641     do_login: function (db, login, password) {
642         var self = this;
643         this.$element.removeClass('login_invalid');
644         this.session.on_session_invalid.add({
645             callback: function () {
646                 self.$element.addClass("login_invalid");
647             },
648             unique: true
649         });
650         this.session.session_authenticate(db, login, password).then(function() {
651             self.$element.removeClass("login_invalid");
652             if (self.has_local_storage) {
653                 if(self.remember_credentials) {
654                     localStorage.setItem('last_db_login_success', db);
655                     localStorage.setItem('last_login_login_success', login);
656                     if (jQuery.deparam(jQuery.param.querystring()).debug != undefined) {
657                         localStorage.setItem('last_password_login_success', password);
658                     }
659                 } else {
660                     localStorage.setItem('last_db_login_success', '');
661                     localStorage.setItem('last_login_login_success', '');
662                     localStorage.setItem('last_password_login_success', '');
663                 }
664             }
665         });
666     }
667 });
668
669 openerp.web.Menu =  openerp.web.Widget.extend(/** @lends openerp.web.Menu# */{
670     /**
671      * @constructs openerp.web.Menu
672      * @extends openerp.web.Widget
673      *
674      * @param parent
675      */
676     template: 'Menu',
677     do_reload: function() {
678         var self = this;
679         return this.rpc("/web/menu/load", {}, this.on_loaded).then(function () {
680             if (self.current_menu) {
681                 self.open_menu(self.current_menu);
682             }
683         });
684     },
685     on_loaded: function(data) {
686         this.data = data;
687         this.render_element();
688         if (!this.$secondary_menus && this.getParent()) {
689             // TODO: create Widget openerp.web.SubMenu
690             this.$secondary_menus = this.getParent().$element.find('.oe_secondary_menus_container');
691             this.$element.add(this.$secondary_menus).on('click', 'a[data-menu]', this.on_menu_click);
692         }
693         this.$secondary_menus.html(QWeb.render("Menu.secondary", { widget : this }));
694         // Hide second level submenus
695         this.$secondary_menus.find('.oe_menu_toggler').siblings('.oe_secondary_submenu').hide();
696     },
697     /**
698      * Opens a given menu by id, as if a user had browsed to that menu by hand
699      * except does not trigger any event on the way
700      *
701      * @param {Number} menu_id database id of the terminal menu to select
702      */
703     open_menu: function (id) {
704         var $clicked_menu, $sub_menu, $main_menu;
705         $clicked_menu = this.$element.add(this.$secondary_menus).find('a[data-menu=' + id + ']');
706
707         if (this.$secondary_menus.has($clicked_menu).length) {
708             $sub_menu = $clicked_menu.parents('.oe_secondary_menu');
709             $main_menu = this.$element.find('a[data-menu=' + $sub_menu.data('menu-parent') + ']');
710         } else {
711             $sub_menu = this.$secondary_menus.find('.oe_secondary_menu[data-menu-parent=' + $clicked_menu.attr('data-menu') + ']');
712             $main_menu = $clicked_menu;
713         }
714
715         // Activate current main menu
716         this.$element.find('.oe_active').removeClass('oe_active');
717         $main_menu.addClass('oe_active');
718
719         // Show current sub menu
720         this.$secondary_menus.find('.oe_secondary_menu').hide();
721         $sub_menu.show();
722
723         // Activate current menu item and show parents
724         this.$secondary_menus.find('.oe_active').removeClass('oe_active');
725         if ($main_menu !== $clicked_menu) {
726             $clicked_menu.parents().show();
727             if ($clicked_menu.is('.oe_menu_toggler')) {
728                 $clicked_menu.toggleClass('oe_menu_opened').siblings('.oe_secondary_submenu:first').toggle();
729             } else {
730                 $clicked_menu.parent().addClass('oe_active');
731             }
732         }
733     },
734     on_menu_click: function(ev, id) {
735         id = id || 0;
736         var $clicked_menu, manual = false;
737
738         if (id) {
739             // We can manually activate a menu with it's id (for hash url mapping)
740             manual = true;
741             $clicked_menu = this.$element.find('a[data-menu=' + id + ']');
742             if (!$clicked_menu.length) {
743                 $clicked_menu = this.$secondary_menus.find('a[data-menu=' + id + ']');
744             }
745         } else {
746             $clicked_menu = $(ev.currentTarget);
747             id = $clicked_menu.data('menu');
748         }
749
750         if (id) {
751             this.open_menu(id);
752             this.current_menu = id;
753             this.session.active_id = id;
754             this.rpc('/web/menu/action', {'menu_id': id}, this.on_menu_action_loaded);
755         }
756         if (ev) {
757             ev.stopPropagation();
758         }
759         return false;
760     },
761     do_show_secondary: function($sub_menu, $main_menu) {
762         var self = this;
763         this.$secondary_menus.show();
764         if (!arguments.length) {
765             return;
766         }
767         $sub_menu.show();
768     },
769     on_menu_action_loaded: function(data) {
770         var self = this;
771         if (data.action.length) {
772             var action = data.action[0][2];
773             action.from_menu = true;
774             self.on_action(action);
775         } else {
776             self.on_action({type: 'null_action'});
777         }
778     },
779     on_action: function(action) {
780     }
781 });
782
783 openerp.web.DropDownMenu =  openerp.web.Widget.extend(/** @lends openerp.web.DropDownMenu# */{
784     template: "DropDownMenu",
785     /**
786      * @constructs openerp.web.DropDownMenu
787      * @extends openerp.web.Widget
788      *
789      * @param parent
790      */
791     init: function(parent) {
792         this._super(parent);
793         this.update_promise = $.Deferred().resolve();
794     },
795     start: function() {
796         var self = this;
797         this._super.apply(this, arguments);
798         $('html').bind('click', function() {
799             self.$element.find('.oe_dropdown_options').hide();
800         });
801         this.$element.find('.oe_dropdown_toggle').click(function() {
802             self.$element.find('.oe_dropdown_options').toggle();
803             return false;
804         });
805         this.$element.on('click', '.oe_dropdown_options li a[data-menu]', function() {
806             var f = self['on_menu_' + $(this).data('menu')];
807             f && f($(this));
808             self.$element.find('.oe_dropdown_options').hide();
809             return false;
810         });
811     },
812     change_password :function() {
813         var self = this;
814         this.dialog = new openerp.web.Dialog(this, {
815             title: _t("Change Password"),
816             width : 'auto'
817         }).open();
818         this.dialog.$element.html(QWeb.render("Change_Pwd", self));
819         this.dialog.$element.find("form[name=change_password_form]").validate({
820             submitHandler: function (form) {
821                 self.rpc("/web/session/change_password",{
822                     'fields': $(form).serializeArray()
823                 }, function(result) {
824                     if (result.error) {
825                         self.display_error(result);
826                         return;
827                     } else {
828                         openerp.webclient.on_logout();
829                     }
830                 });
831             }
832         });
833     },
834     display_error: function (error) {
835         return openerp.web.dialog($('<div>'), {
836             modal: true,
837             title: error.title,
838             buttons: [
839                 {text: _("Ok"), click: function() { $(this).dialog("close"); }}
840             ]
841         }).html(error.error);
842     },
843     do_update: function () {
844         var self = this;
845         var fct = function() {
846             var $avatar = self.$element.find('.oe_topbar_avatar');
847             $avatar.attr('src', $avatar.data('default-src'));
848             if (!self.session.uid)
849                 return;
850             var func = new openerp.web.Model("res.users").get_func("read");
851             return func(self.session.uid, ["name", "company_id"]).pipe(function(res) {
852                 // TODO: Only show company if multicompany in use
853                 self.$element.find('.oe_topbar_name').text(res.name + '/' + res.company_id[1]);
854                 return self.shortcut_load();
855             });
856         };
857         this.update_promise = this.update_promise.pipe(fct, fct);
858     },
859     on_action: function() {
860     },
861     shortcut_load :function(){
862         var self = this,
863             sc = self.session.shortcuts,
864             shortcuts_ds = new openerp.web.DataSet(this, 'ir.ui.view_sc');
865         self.$element.find('.oe_dropdown_options a[data-menu=shortcut]').each(function() {
866             $(this).parent().remove();
867         });
868         // TODO: better way to communicate between sections.
869         // sc.bindings, because jquery does not bind/trigger on arrays...
870         if (!sc.binding) {
871             sc.binding = {};
872             $(sc.binding).bind({
873                 'add': function (e, attrs) {
874                     shortcuts_ds.create(attrs, function (out) {
875                         var shortcut = QWeb.render('DropDownMenu.shortcut', {
876                             shortcuts : [{
877                                 name : attrs.name,
878                                 id : out.result,
879                                 res_id : attrs.res_id
880                             }]
881                         });
882                         $(shortcut).appendTo(self.$element.find('.oe_dropdown_options'));
883                         attrs.id = out.result;
884                         sc.push(attrs);
885                     });
886                 },
887                 'remove-current': function () {
888                     var menu_id = self.session.active_id;
889                     var $shortcut = self.$element.find('.oe_dropdown_options li a[data-id=' + menu_id + ']');
890                     var shortcut_id = $shortcut.data('shortcut-id');
891                     $shortcut.remove();
892                     shortcuts_ds.unlink([shortcut_id]);
893                     var sc_new = _.reject(sc, function(shortcut){ return shortcut_id === shortcut.id});
894                     sc.splice(0, sc.length);
895                     sc.push.apply(sc, sc_new);
896                 }
897             });
898         }
899         return this.rpc('/web/session/sc_list', {}, function(shortcuts) {
900             sc.splice(0, sc.length);
901             sc.push.apply(sc, shortcuts);
902
903             $(QWeb.render('DropDownMenu.shortcut', {'shortcuts': shortcuts}))
904                 .appendTo(self.$element.find('.oe_dropdown_options'));
905         });
906     },
907     on_menu_logout: function() {
908     },
909     on_menu_settings: function() {
910         var self = this;
911         var action_manager = new openerp.web.ActionManager(this);
912         var dataset = new openerp.web.DataSet (this,'res.users',this.context);
913         dataset.call ('action_get','',function (result){
914             self.rpc('/web/action/load', {action_id:result}, function(result){
915                 action_manager.do_action(_.extend(result['result'], {
916                     res_id: self.session.uid,
917                     res_model: 'res.users',
918                     flags: {
919                         action_buttons: false,
920                         search_view: false,
921                         sidebar: false,
922                         views_switcher: false,
923                         pager: false
924                     }
925                 }));
926             });
927         });
928         this.dialog = new openerp.web.Dialog(this,{
929             title: _t("Preferences"),
930             width: '700px',
931             buttons: [
932                 {text: _t("Cancel"), click: function(){ $(this).dialog('destroy'); }},
933                 {text: _t("Change password"), click: function(){ self.change_password(); }},
934                 {text: _t("Save"), click: function(){
935                         var inner_viewmanager = action_manager.inner_viewmanager;
936                         inner_viewmanager.views[inner_viewmanager.active_view].controller.do_save()
937                         .then(function() {
938                             self.dialog.destroy();
939                             // needs to refresh interface in case language changed
940                             window.location.reload();
941                         });
942                     }
943                 }
944             ]
945         }).open();
946        action_manager.appendTo(this.dialog);
947        action_manager.render(this.dialog);
948     },
949     on_menu_about: function() {
950         var self = this;
951         self.rpc("/web/webclient/version_info", {}).then(function(res) {
952             var $help = $(QWeb.render("About-Page", {version_info: res}));
953             $help.find('a.oe_activate_debug_mode').click(function (e) {
954                 e.preventDefault();
955                 window.location = $.param.querystring(
956                         window.location.href, 'debug');
957             });
958             openerp.web.dialog($help, {autoOpen: true,
959                 modal: true, width: 960, title: _t("About")});
960         });
961     },
962     on_menu_shortcut: function($link) {
963         var self = this,
964             id = $link.data('id');
965         self.session.active_id = id;
966         self.rpc('/web/menu/action', {'menu_id': id}, function(ir_menu_data) {
967             if (ir_menu_data.action.length){
968                 self.on_action(ir_menu_data.action[0][2]);
969             }
970         });
971     }
972 });
973
974 openerp.web.WebClient = openerp.web.Widget.extend(/** @lends openerp.web.WebClient */{
975     /**
976      * @constructs openerp.web.WebClient
977      * @extends openerp.web.Widget
978      */
979     init: function(parent) {
980         var self = this;
981         this._super(parent);
982         openerp.webclient = this;
983         this.querystring = '?' + jQuery.param.querystring();
984         this._current_state = null;
985     },
986     start: function() {
987         var self = this;
988         this.$element.addClass("openerp openerp2");
989         if (jQuery.param != undefined && jQuery.deparam(jQuery.param.querystring()).kitten != undefined) {
990             this.$element.addClass("kitten-mode-activated");
991             this.$element.delegate('img.oe-record-edit-link-img', 'hover', function(e) {
992                 self.$element.toggleClass('clark-gable');
993             });
994         }
995         this.session.bind().then(function() {
996             if (!self.session.session_is_valid()) {
997                 self.show_login();
998             }
999         });
1000         this.session.on_session_valid.add(function() {
1001             self.show_application();
1002
1003             self.dropdown_menu.do_update();
1004             self.menu.do_reload();
1005             if(self.action_manager)
1006                 self.action_manager.destroy();
1007             self.action_manager = new openerp.web.ActionManager(self);
1008             self.action_manager.appendTo(self.$element.find('.oe_application'));
1009             self.bind_hashchange();
1010             var version_label = _t("OpenERP - Unsupported/Community Version");
1011             if (!self.session.openerp_entreprise) {
1012                 self.$element.find('.oe_footer_powered').append(_.str.sprintf('<span> - <a href="http://www.openerp.com/support-or-publisher-warranty-contract" target="_blank">%s</a></span>', version_label));
1013                 document.title = version_label;
1014             }
1015         });
1016     },
1017     show_login: function() {
1018         var self = this;
1019         this.destroy_content();
1020         this.show_common();
1021         self.login = new openerp.web.Login(self);
1022         self.login.appendTo(self.$element);
1023     },
1024     show_application: function() {
1025         var self = this;
1026         this.destroy_content();
1027         this.show_common();
1028         self.$table = $(QWeb.render("WebClient", {}));
1029         self.$element.append(self.$table);
1030         self.menu = new openerp.web.Menu(self);
1031         self.menu.replace(this.$element.find('.oe_menu_placeholder'));
1032         self.menu.on_action.add(this.proxy('on_menu_action'));
1033         self.dropdown_menu = new openerp.web.DropDownMenu(self);
1034         self.dropdown_menu.replace(this.$element.find('.oe_dropdown_menu_placeholder'));
1035         self.dropdown_menu.on_menu_logout.add(this.proxy('on_logout'));
1036         self.dropdown_menu.on_action.add(this.proxy('on_menu_action'));
1037     },
1038     show_common: function() {
1039         var self = this;
1040         if (!this.crashmanager) {
1041             this.crashmanager =  new openerp.web.CrashManager();
1042             openerp.connection.on_rpc_error.add(this.crashmanager.on_rpc_error);
1043             window.onerror = function (message, file, line) {
1044                 self.crashmanager.on_traceback({
1045                     type: _t("Client Error"),
1046                     message: message,
1047                     data: {debug: file + ':' + line}
1048                 });
1049             }
1050         }
1051         this.notification = new openerp.web.Notification(this);
1052         this.notification.appendTo(this.$element);
1053         this.loading = new openerp.web.Loading(this);
1054         this.loading.appendTo(this.$element);
1055     },
1056     destroy_content: function() {
1057         _.each(_.clone(this.getChildren()), function(el) {
1058             el.destroy();
1059         });
1060         this.$element.children().remove();
1061     },
1062     do_reload: function() {
1063         var self = this;
1064         return this.session.session_reload().pipe(function () {
1065             openerp.connection.load_modules(true).pipe(
1066                 self.menu.proxy('do_reload')); });
1067
1068     },
1069     do_notify: function() {
1070         var n = this.notification;
1071         n.notify.apply(n, arguments);
1072     },
1073     do_warn: function() {
1074         var n = this.notification;
1075         n.warn.apply(n, arguments);
1076     },
1077     on_logout: function() {
1078         var self = this;
1079         this.session.session_logout().then(function () {
1080             $(window).unbind('hashchange', self.on_hashchange);
1081             self.do_push_state({});
1082             //would be cool to be able to do this, but I think it will make addons do strange things
1083             //this.show_login();
1084             window.location.reload();
1085         });
1086     },
1087     bind_hashchange: function() {
1088         $(window).bind('hashchange', this.on_hashchange);
1089
1090         var state = $.bbq.getState(true);
1091         if (! _.isEmpty(state)) {
1092             $(window).trigger('hashchange');
1093         } else {
1094             this.action_manager.do_action({type: 'ir.actions.client', tag: 'default_home'});
1095         }
1096     },
1097     on_hashchange: function(event) {
1098         var state = event.getState(true);
1099         if (!_.isEqual(this._current_state, state)) {
1100             this.action_manager.do_load_state(state, !!this._current_state);
1101         }
1102         this._current_state = state;
1103     },
1104     do_push_state: function(state) {
1105         var url = '#' + $.param(state);
1106         this._current_state = _.clone(state);
1107         $.bbq.pushState(url);
1108     },
1109     on_menu_action: function(action) {
1110         this.action_manager.do_action(action);
1111     },
1112     do_action: function(action) {
1113         var self = this;
1114         // TODO replace by client action menuclick 
1115         if(action.menu_id) {
1116             this.do_reload().then(function () {
1117                 self.menu.on_menu_click(null, action.menu_id);
1118             });
1119         }
1120     }
1121 });
1122
1123 openerp.web.EmbeddedClient = openerp.web.OldWidget.extend({
1124     template: 'EmptyComponent',
1125     init: function(action_id, options) {
1126         this._super();
1127         // TODO take the xmlid of a action instead of its id 
1128         this.action_id = action_id;
1129         this.options = options || {};
1130         this.am = new openerp.web.ActionManager(this);
1131     },
1132
1133     start: function() {
1134         var self = this;
1135         this.am.appendTo(this.$element.addClass('openerp'));
1136         return this.rpc("/web/action/load", { action_id: this.action_id }, function(result) {
1137             var action = result.result;
1138             action.flags = _.extend({
1139                 //views_switcher : false,
1140                 search_view : false,
1141                 action_buttons : false,
1142                 sidebar : false
1143                 //pager : false
1144             }, self.options, action.flags || {});
1145
1146             self.am.do_action(action);
1147         });
1148     }
1149
1150 });
1151
1152 openerp.web.embed = function (origin, dbname, login, key, action, options) {
1153     $('head').append($('<link>', {
1154         'rel': 'stylesheet',
1155         'type': 'text/css',
1156         'href': origin +'/web/webclient/css'
1157     }));
1158     var currentScript = document.currentScript;
1159     if (!currentScript) {
1160         var sc = document.getElementsByTagName('script');
1161         currentScript = sc[sc.length-1];
1162     }
1163     openerp.connection.bind(origin).then(function () {
1164         openerp.connection.session_authenticate(dbname, login, key, true).then(function () {
1165             var client = new openerp.web.EmbeddedClient(action, options);
1166             client.insertAfter(currentScript);
1167         });
1168     });
1169
1170 }
1171
1172 };
1173
1174 // vim:et fdc=0 fdl=0 foldnestmax=3 fdm=syntax: