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