[CHG] Do not toggle opened class on submenu (should be part of last commit)
[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_menu && this.getParent()) {
689             // TODO: create Widget openerp.web.SubMenu
690             this.$secondary_menu = this.getParent().$element.find('.oe_secondary_menu');
691         }
692         this.$secondary_menu.html(QWeb.render("Menu.secondary", { widget : this }));
693         this.$element.add(this.$secondary_menu).find("a").click(this.on_menu_click);
694     },
695     /**
696      * Opens a given menu by id, as if a user had browsed to that menu by hand
697      * except does not trigger any event on the way
698      *
699      * @param {Number} menu_id database id of the terminal menu to select
700      */
701     open_menu: function (menu_id) {
702         this.$element.add(this.$secondary_menu).find('.oe_active')
703                 .removeClass('oe_active');
704         this.$secondary_menu.find('> .oe_secondary_menu').hide();
705
706         var $primary_menu;
707         var $secondary_submenu = this.$secondary_menu.find(
708                 'a[data-menu=' + menu_id +']');
709         if ($secondary_submenu.length) {
710             for(;;) {
711                 if ($secondary_submenu.hasClass('leaf')) {
712                     $secondary_submenu.addClass('oe_active');
713                 } else if ($secondary_submenu.hasClass('submenu')) {
714                     $secondary_submenu.addClass('opened')
715                 }
716                 var $parent = $secondary_submenu.parent().show();
717                 if ($parent.hasClass('oe_secondary_menu')) {
718                     var primary_id = $parent.data('menu-parent');
719                     $primary_menu = this.$element.find(
720                             'a[data-menu=' + primary_id + ']');
721                     break;
722                 }
723                 $secondary_submenu = $parent.prev();
724             }
725         } else {
726             $primary_menu = this.$element.find('a[data-menu=' + menu_id + ']');
727         }
728         if (!$primary_menu.length) {
729             return;
730         }
731         $primary_menu.addClass('oe_active');
732         this.$secondary_menu.find(
733             'div[data-menu-parent=' + $primary_menu.data('menu') + ']').addClass('oe_active');
734     },
735     on_menu_click: function(ev, id) {
736         id = id || 0;
737         var $clicked_menu, manual = false;
738
739         if (id) {
740             // We can manually activate a menu with it's id (for hash url mapping)
741             manual = true;
742             $clicked_menu = this.$element.find('a[data-menu=' + id + ']');
743             if (!$clicked_menu.length) {
744                 $clicked_menu = this.$secondary_menu.find('a[data-menu=' + id + ']');
745             }
746         } else {
747             $clicked_menu = $(ev.currentTarget);
748             id = $clicked_menu.data('menu');
749         }
750
751         if (this.do_menu_click($clicked_menu, manual) && 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_menu_click: function($clicked_menu, manual) {
762         var $sub_menu, $main_menu,
763             active = $clicked_menu.is('.oe_active'),
764             sub_menu_visible = false,
765             has_submenu_items = false;
766
767         if (this.$secondary_menu.has($clicked_menu).length) {
768             $sub_menu = $clicked_menu.parents('.oe_secondary_menu');
769             $main_menu = this.$element.find('a[data-menu=' + $sub_menu.data('menu-parent') + ']');
770         } else {
771             $sub_menu = this.$secondary_menu.find('.oe_secondary_menu[data-menu-parent=' + $clicked_menu.attr('data-menu') + ']');
772             $main_menu = $clicked_menu;
773         }
774
775         sub_menu_visible = $sub_menu.is(':visible');
776         has_submenu_items = !!$sub_menu.children().length;
777         this.$secondary_menu.find('.oe_secondary_menu').hide();
778
779         $('.oe_active', this.$element.add(this.$secondary_menu)).removeClass('oe_active');
780         $main_menu.add($clicked_menu).add($sub_menu).addClass('oe_active');
781
782         if (has_submenu_items) {
783             if (!manual) {
784                 this.do_show_secondary($sub_menu, $main_menu);
785             } else {
786                 this.do_show_secondary();
787             }
788         }
789
790         if ($main_menu != $clicked_menu) {
791             if ($clicked_menu.is('.submenu')) {
792                 $clicked_menu.toggleClass('opened').next().toggle();
793             } else if ($clicked_menu.is('.leaf')) {
794                 return true;
795             }
796         } else {
797             return true;
798         }
799         return false;
800     },
801     do_hide_secondary: function() {
802         //this.$secondary_menu.hide();
803     },
804     do_show_secondary: function($sub_menu, $main_menu) {
805         var self = this;
806         this.$secondary_menu.show();
807         if (!arguments.length) {
808             return;
809         }
810         $sub_menu.show();
811     },
812     on_menu_action_loaded: function(data) {
813         var self = this;
814         if (data.action.length) {
815             var action = data.action[0][2];
816             action.from_menu = true;
817             self.on_action(action);
818         } else {
819             self.on_action({type: 'null_action'});
820         }
821     },
822     on_action: function(action) {
823     }
824 });
825
826 openerp.web.DropDownMenu =  openerp.web.Widget.extend(/** @lends openerp.web.DropDownMenu# */{
827     template: "DropDownMenu",
828     /**
829      * @constructs openerp.web.DropDownMenu
830      * @extends openerp.web.Widget
831      *
832      * @param parent
833      */
834     init: function(parent) {
835         this._super(parent);
836         this.update_promise = $.Deferred().resolve();
837     },
838     start: function() {
839         var self = this;
840         this._super.apply(this, arguments);
841         $('html').bind('click', function() {
842             self.$element.find('.oe_dropdown_options').hide();
843         });
844         this.$element.find('.oe_dropdown_toggle').click(function() {
845             self.$element.find('.oe_dropdown_options').toggle();
846             return false;
847         });
848         this.$element.on('click', '.oe_dropdown_options li a[data-menu]', function() {
849             var f = self['on_menu_' + $(this).data('menu')];
850             f && f($(this));
851             self.$element.find('.oe_dropdown_options').hide();
852             return false;
853         });
854     },
855     change_password :function() {
856         var self = this;
857         this.dialog = new openerp.web.Dialog(this, {
858             title: _t("Change Password"),
859             width : 'auto'
860         }).open();
861         this.dialog.$element.html(QWeb.render("Change_Pwd", self));
862         this.dialog.$element.find("form[name=change_password_form]").validate({
863             submitHandler: function (form) {
864                 self.rpc("/web/session/change_password",{
865                     'fields': $(form).serializeArray()
866                 }, function(result) {
867                     if (result.error) {
868                         self.display_error(result);
869                         return;
870                     } else {
871                         openerp.webclient.on_logout();
872                     }
873                 });
874             }
875         });
876     },
877     display_error: function (error) {
878         return openerp.web.dialog($('<div>'), {
879             modal: true,
880             title: error.title,
881             buttons: [
882                 {text: _("Ok"), click: function() { $(this).dialog("close"); }}
883             ]
884         }).html(error.error);
885     },
886     do_update: function () {
887         var self = this;
888         var fct = function() {
889             var $avatar = self.$element.find('.oe_topbar_avatar');
890             $avatar.attr('src', $avatar.data('default-src'));
891             if (!self.session.uid)
892                 return;
893             var func = new openerp.web.Model("res.users").get_func("read");
894             return func(self.session.uid, ["name", "company_id"]).pipe(function(res) {
895                 // TODO: Only show company if multicompany in use
896                 self.$element.find('.oe_topbar_name').text(res.name + '/' + res.company_id[1]);
897                 return self.shortcut_load();
898             });
899         };
900         this.update_promise = this.update_promise.pipe(fct, fct);
901     },
902     on_action: function() {
903     },
904     shortcut_load :function(){
905         var self = this,
906             sc = self.session.shortcuts,
907             shortcuts_ds = new openerp.web.DataSet(this, 'ir.ui.view_sc');
908         self.$element.find('.oe_dropdown_options a[data-menu=shortcut]').each(function() {
909             $(this).parent().remove();
910         });
911         // TODO: better way to communicate between sections.
912         // sc.bindings, because jquery does not bind/trigger on arrays...
913         if (!sc.binding) {
914             sc.binding = {};
915             $(sc.binding).bind({
916                 'add': function (e, attrs) {
917                     shortcuts_ds.create(attrs, function (out) {
918                         var shortcut = QWeb.render('DropDownMenu.shortcut', {
919                             shortcuts : [{
920                                 name : attrs.name,
921                                 id : out.result,
922                                 res_id : attrs.res_id
923                             }]
924                         });
925                         $(shortcut).appendTo(self.$element.find('.oe_dropdown_options'));
926                         attrs.id = out.result;
927                         sc.push(attrs);
928                     });
929                 },
930                 'remove-current': function () {
931                     var menu_id = self.session.active_id;
932                     var $shortcut = self.$element.find('.oe_dropdown_options li a[data-id=' + menu_id + ']');
933                     var shortcut_id = $shortcut.data('shortcut-id');
934                     $shortcut.remove();
935                     shortcuts_ds.unlink([shortcut_id]);
936                     var sc_new = _.reject(sc, function(shortcut){ return shortcut_id === shortcut.id});
937                     sc.splice(0, sc.length);
938                     sc.push.apply(sc, sc_new);
939                 }
940             });
941         }
942         return this.rpc('/web/session/sc_list', {}, function(shortcuts) {
943             sc.splice(0, sc.length);
944             sc.push.apply(sc, shortcuts);
945
946             $(QWeb.render('DropDownMenu.shortcut', {'shortcuts': shortcuts}))
947                 .appendTo(self.$element.find('.oe_dropdown_options'));
948         });
949     },
950     on_menu_logout: function() {
951     },
952     on_menu_settings: function() {
953         var self = this;
954         var action_manager = new openerp.web.ActionManager(this);
955         var dataset = new openerp.web.DataSet (this,'res.users',this.context);
956         dataset.call ('action_get','',function (result){
957             self.rpc('/web/action/load', {action_id:result}, function(result){
958                 action_manager.do_action(_.extend(result['result'], {
959                     res_id: self.session.uid,
960                     res_model: 'res.users',
961                     flags: {
962                         action_buttons: false,
963                         search_view: false,
964                         sidebar: false,
965                         views_switcher: false,
966                         pager: false
967                     }
968                 }));
969             });
970         });
971         this.dialog = new openerp.web.Dialog(this,{
972             title: _t("Preferences"),
973             width: '700px',
974             buttons: [
975                 {text: _t("Cancel"), click: function(){ $(this).dialog('destroy'); }},
976                 {text: _t("Change password"), click: function(){ self.change_password(); }},
977                 {text: _t("Save"), click: function(){
978                         var inner_viewmanager = action_manager.inner_viewmanager;
979                         inner_viewmanager.views[inner_viewmanager.active_view].controller.do_save()
980                         .then(function() {
981                             self.dialog.destroy();
982                             // needs to refresh interface in case language changed
983                             window.location.reload();
984                         });
985                     }
986                 }
987             ]
988         }).open();
989        action_manager.appendTo(this.dialog);
990        action_manager.render(this.dialog);
991     },
992     on_menu_about: function() {
993         var self = this;
994         self.rpc("/web/webclient/version_info", {}).then(function(res) {
995             var $help = $(QWeb.render("About-Page", {version_info: res}));
996             $help.find('a.oe_activate_debug_mode').click(function (e) {
997                 e.preventDefault();
998                 window.location = $.param.querystring(
999                         window.location.href, 'debug');
1000             });
1001             openerp.web.dialog($help, {autoOpen: true,
1002                 modal: true, width: 960, title: _t("About")});
1003         });
1004     },
1005     on_menu_shortcut: function($link) {
1006         var self = this,
1007             id = $link.data('id');
1008         self.session.active_id = id;
1009         self.rpc('/web/menu/action', {'menu_id': id}, function(ir_menu_data) {
1010             if (ir_menu_data.action.length){
1011                 self.on_action(ir_menu_data.action[0][2]);
1012             }
1013         });
1014     }
1015 });
1016
1017 openerp.web.WebClient = openerp.web.Widget.extend(/** @lends openerp.web.WebClient */{
1018     /**
1019      * @constructs openerp.web.WebClient
1020      * @extends openerp.web.Widget
1021      */
1022     init: function(parent) {
1023         var self = this;
1024         this._super(parent);
1025         openerp.webclient = this;
1026         this.querystring = '?' + jQuery.param.querystring();
1027         this._current_state = null;
1028     },
1029     start: function() {
1030         var self = this;
1031         this.$element.addClass("openerp openerp2");
1032         if (jQuery.param != undefined && jQuery.deparam(jQuery.param.querystring()).kitten != undefined) {
1033             this.$element.addClass("kitten-mode-activated");
1034             this.$element.delegate('img.oe-record-edit-link-img', 'hover', function(e) {
1035                 self.$element.toggleClass('clark-gable');
1036             });
1037         }
1038         this.session.bind().then(function() {
1039             if (!self.session.session_is_valid()) {
1040                 self.show_login();
1041             }
1042         });
1043         this.session.on_session_valid.add(function() {
1044             self.show_application();
1045
1046             self.dropdown_menu.do_update();
1047             self.menu.do_reload();
1048             if(self.action_manager)
1049                 self.action_manager.destroy();
1050             self.action_manager = new openerp.web.ActionManager(self);
1051             self.action_manager.appendTo($("#oe_app"));
1052             self.bind_hashchange();
1053             var version_label = _t("OpenERP - Unsupported/Community Version");
1054             if (!self.session.openerp_entreprise) {
1055                 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));
1056                 document.title = version_label;
1057             }
1058         });
1059     },
1060     show_login: function() {
1061         var self = this;
1062         this.destroy_content();
1063         this.show_common();
1064         self.login = new openerp.web.Login(self);
1065         self.login.appendTo(self.$element);
1066     },
1067     show_application: function() {
1068         var self = this;
1069         this.destroy_content();
1070         this.show_common();
1071         self.$table = $(QWeb.render("WebClient", {}));
1072         self.$element.append(self.$table);
1073         self.menu = new openerp.web.Menu(self);
1074         self.menu.replace(this.$element.find('.oe_menu_placeholder'));
1075         self.menu.on_action.add(this.proxy('on_menu_action'));
1076         self.dropdown_menu = new openerp.web.DropDownMenu(self);
1077         self.dropdown_menu.replace(this.$element.find('.oe_dropdown_menu_placeholder'));
1078         self.dropdown_menu.on_menu_logout.add(this.proxy('on_logout'));
1079         self.dropdown_menu.on_action.add(this.proxy('on_menu_action'));
1080     },
1081     show_common: function() {
1082         var self = this;
1083         if (!this.crashmanager) {
1084             this.crashmanager =  new openerp.web.CrashManager();
1085             openerp.connection.on_rpc_error.add(this.crashmanager.on_rpc_error);
1086             window.onerror = function (message, file, line) {
1087                 self.crashmanager.on_traceback({
1088                     type: _t("Client Error"),
1089                     message: message,
1090                     data: {debug: file + ':' + line}
1091                 });
1092             }
1093         }
1094         this.notification = new openerp.web.Notification(this);
1095         this.notification.appendTo(this.$element);
1096         this.loading = new openerp.web.Loading(this);
1097         this.loading.appendTo(this.$element);
1098     },
1099     destroy_content: function() {
1100         _.each(_.clone(this.getChildren()), function(el) {
1101             el.destroy();
1102         });
1103         this.$element.children().remove();
1104     },
1105     do_reload: function() {
1106         var self = this;
1107         return this.session.session_reload().pipe(function () {
1108             openerp.connection.load_modules(true).pipe(
1109                 self.menu.proxy('do_reload')); });
1110
1111     },
1112     do_notify: function() {
1113         var n = this.notification;
1114         n.notify.apply(n, arguments);
1115     },
1116     do_warn: function() {
1117         var n = this.notification;
1118         n.warn.apply(n, arguments);
1119     },
1120     on_logout: function() {
1121         var self = this;
1122         this.session.session_logout().then(function () {
1123             $(window).unbind('hashchange', self.on_hashchange);
1124             self.do_push_state({});
1125             //would be cool to be able to do this, but I think it will make addons do strange things
1126             //this.show_login();
1127             window.location.reload();
1128         });
1129     },
1130     bind_hashchange: function() {
1131         $(window).bind('hashchange', this.on_hashchange);
1132
1133         var state = $.bbq.getState(true);
1134         if (! _.isEmpty(state)) {
1135             $(window).trigger('hashchange');
1136         } else {
1137             this.action_manager.do_action({type: 'ir.actions.client', tag: 'default_home'});
1138         }
1139     },
1140     on_hashchange: function(event) {
1141         var state = event.getState(true);
1142         if (!_.isEqual(this._current_state, state)) {
1143             this.action_manager.do_load_state(state, !!this._current_state);
1144         }
1145         this._current_state = state;
1146     },
1147     do_push_state: function(state) {
1148         var url = '#' + $.param(state);
1149         this._current_state = _.clone(state);
1150         $.bbq.pushState(url);
1151     },
1152     on_menu_action: function(action) {
1153         this.action_manager.do_action(action);
1154     },
1155     do_action: function(action) {
1156         var self = this;
1157         // TODO replace by client action menuclick 
1158         if(action.menu_id) {
1159             this.do_reload().then(function () {
1160                 self.menu.on_menu_click(null, action.menu_id);
1161             });
1162         }
1163     }
1164 });
1165
1166 openerp.web.EmbeddedClient = openerp.web.OldWidget.extend({
1167     template: 'EmptyComponent',
1168     init: function(action_id, options) {
1169         this._super();
1170         // TODO take the xmlid of a action instead of its id 
1171         this.action_id = action_id;
1172         this.options = options || {};
1173         this.am = new openerp.web.ActionManager(this);
1174     },
1175
1176     start: function() {
1177         var self = this;
1178         this.am.appendTo(this.$element.addClass('openerp'));
1179         return this.rpc("/web/action/load", { action_id: this.action_id }, function(result) {
1180             var action = result.result;
1181             action.flags = _.extend({
1182                 //views_switcher : false,
1183                 search_view : false,
1184                 action_buttons : false,
1185                 sidebar : false
1186                 //pager : false
1187             }, self.options, action.flags || {});
1188
1189             self.am.do_action(action);
1190         });
1191     }
1192
1193 });
1194
1195 openerp.web.embed = function (origin, dbname, login, key, action, options) {
1196     $('head').append($('<link>', {
1197         'rel': 'stylesheet',
1198         'type': 'text/css',
1199         'href': origin +'/web/webclient/css'
1200     }));
1201     var currentScript = document.currentScript;
1202     if (!currentScript) {
1203         var sc = document.getElementsByTagName('script');
1204         currentScript = sc[sc.length-1];
1205     }
1206     openerp.connection.bind(origin).then(function () {
1207         openerp.connection.session_authenticate(dbname, login, key, true).then(function () {
1208             var client = new openerp.web.EmbeddedClient(action, options);
1209             client.insertAfter(currentScript);
1210         });
1211     });
1212
1213 }
1214
1215 };
1216
1217 // vim:et fdc=0 fdl=0 foldnestmax=3 fdm=syntax: