[FIX] Prevent ViewManager to remove other spans from the title
[odoo/odoo.git] / addons / web / static / src / js / views.js
1 /*---------------------------------------------------------
2  * OpenERP web library
3  *---------------------------------------------------------*/
4
5 openerp.web.views = function(session) {
6
7 var _t = session.web._t;
8
9 /**
10  * Registry for all the client actions key: tag value: widget
11  */
12 session.web.client_actions = new session.web.Registry();
13
14 /**
15  * Registry for all the main views
16  */
17 session.web.views = new session.web.Registry();
18
19 session.web.ActionManager = session.web.Widget.extend({
20     identifier_prefix: "actionmanager",
21     init: function(parent) {
22         this._super(parent);
23         this.inner_viewmanager = null;
24         this.dialog = null;
25         this.dialog_viewmanager = null;
26         this.client_widget = null;
27     },
28     render: function() {
29         return "<div id='"+this.element_id+"'></div>";
30     },
31     dialog_stop: function () {
32         if (this.dialog) {
33             this.dialog_viewmanager.stop();
34             this.dialog_viewmanager = null;
35             this.dialog.stop();
36             this.dialog = null;
37         }
38     },
39     content_stop: function () {
40         if (this.inner_viewmanager) {
41             this.inner_viewmanager.stop();
42             this.inner_viewmanager = null;
43         }
44         if (this.client_widget) {
45             this.client_widget.stop();
46             this.client_widget = null;
47         }
48     },
49     url_update: function(action) {
50         var url = {};
51         if(action.id)
52             url.action_id = action.id;
53         // this.url = {
54         //     "model": action.res_model,
55         //     "domain": action.domain,
56         // };
57         // action.res_model
58         // action.domain
59         // action.context
60         // after
61         // action.views
62         // action.res_id
63         // mode
64         // menu
65         this.do_url_set_hash(url);
66     },
67     do_url_set_hash: function(url) {
68     },
69     on_url_hashchange: function(url) {
70         var self = this;
71         if(url && url.action_id) {
72             self.rpc("/web/action/load", { action_id: url.action_id }, function(result) {
73                     self.do_action(result.result);
74                 });
75         }
76     },
77     do_action: function(action, on_close) {
78         var type = action.type.replace(/\./g,'_');
79         var popup = action.target === 'new';
80         action.flags = _.extend({
81             views_switcher : !popup,
82             search_view : !popup,
83             action_buttons : !popup,
84             sidebar : !popup,
85             pager : !popup
86         }, action.flags || {});
87         if (!(type in this)) {
88             console.log("Action manager can't handle action of type " + action.type, action);
89             return;
90         }
91         return this[type](action, on_close);
92     },
93     ir_actions_act_window: function (action, on_close) {
94         if (action.target === 'new') {
95             if (this.dialog == null) {
96                 this.dialog = new session.web.Dialog(this, { title: action.name, width: '80%' });
97                 if(on_close)
98                     this.dialog.on_close.add(on_close);
99                 this.dialog.start();
100             } else {
101                 this.dialog_viewmanager.stop();
102             }
103             this.dialog_viewmanager = new session.web.ViewManagerAction(this, action);
104             this.dialog_viewmanager.appendTo(this.dialog.$element);
105             this.dialog.open();
106         } else  {
107             this.dialog_stop();
108             this.content_stop();
109             this.inner_viewmanager = new session.web.ViewManagerAction(this, action);
110             this.inner_viewmanager.appendTo(this.$element);
111             this.url_update(action);
112         }
113         /* new window code
114             this.rpc("/web/session/save_session_action", { the_action : action}, function(key) {
115                 var url = window.location.protocol + "//" + window.location.host + window.location.pathname + "?" + jQuery.param({ s_action : "" + key });
116                 window.open(url,'_blank');
117             });
118         */
119     },
120     ir_actions_act_window_close: function (action, on_closed) {
121         if (!this.dialog && on_closed) {
122             on_closed();
123         }
124         if (this.dialog && action.context) {
125             var model = action.context.active_model;
126             if (model === 'base.module.upgrade' || model === 'base.setup.installer' || model === 'base.module.upgrade') {
127                 session.webclient.do_reload();
128             }
129         }
130         this.dialog_stop();
131     },
132     ir_actions_server: function (action, on_closed) {
133         var self = this;
134         this.rpc('/web/action/run', {
135             action_id: action.id,
136             context: action.context || {}
137         }).then(function (action) {
138             self.do_action(action, on_closed)
139         });
140     },
141     ir_actions_client: function (action) {
142         this.content_stop();
143         var ClientWidget = session.web.client_actions.get_object(action.tag);
144         (this.client_widget = new ClientWidget(this, action.params)).appendTo(this);
145     },
146     ir_actions_report_xml: function(action) {
147         var self = this;
148         $.blockUI();
149         self.rpc("/web/session/eval_domain_and_context", {
150             contexts: [action.context],
151             domains: []
152         }).then(function(res) {
153             action = _.clone(action);
154             action.context = res.context;
155             self.session.get_file({
156                 url: '/web/report',
157                 data: {action: JSON.stringify(action)},
158                 complete: $.unblockUI
159             });
160         });
161     },
162     ir_actions_act_url: function (action) {
163         window.open(action.url, action.target === 'self' ? '_self' : '_blank');
164     }
165 });
166
167 session.web.ViewManager =  session.web.Widget.extend(/** @lends session.web.ViewManager# */{
168     identifier_prefix: "viewmanager",
169     template: "ViewManager",
170     /**
171      * @constructs session.web.ViewManager
172      * @extends session.web.Widget
173      *
174      * @param parent
175      * @param dataset
176      * @param views
177      */
178     init: function(parent, dataset, views) {
179         this._super(parent);
180         this.model = dataset ? dataset.model : undefined;
181         this.dataset = dataset;
182         this.searchview = null;
183         this.last_search = false;
184         this.active_view = null;
185         this.views_src = _.map(views, function(x) {return x instanceof Array? {view_id: x[0], view_type: x[1]} : x;});
186         this.views = {};
187         this.flags = this.flags || {};
188         this.registry = session.web.views;
189     },
190     render: function() {
191         return session.web.qweb.render(this.template, {
192             self: this,
193             prefix: this.element_id,
194             views: this.views_src});
195     },
196     /**
197      * @returns {jQuery.Deferred} initial view loading promise
198      */
199     start: function() {
200         this._super();
201         var self = this;
202         this.$element.find('.oe_vm_switch button').click(function() {
203             self.on_mode_switch($(this).data('view-type'));
204         });
205         var views_ids = {};
206         _.each(this.views_src, function(view) {
207             self.views[view.view_type] = $.extend({}, view, {
208                 controller : null,
209                 options : _.extend({
210                     sidebar_id : self.element_id + '_sidebar_' + view.view_type,
211                     action : self.action,
212                     action_views_ids : views_ids
213                 }, self.flags, view.options || {})
214             });
215             views_ids[view.view_type] = view.view_id;
216         });
217         if (this.flags.views_switcher === false) {
218             this.$element.find('.oe_vm_switch').hide();
219         }
220         // switch to the first one in sequence
221         return this.on_mode_switch(this.views_src[0].view_type);
222     },
223     /**
224      * Asks the view manager to switch visualization mode.
225      *
226      * @param {String} view_type type of view to display
227      * @returns {jQuery.Deferred} new view loading promise
228      */
229     on_mode_switch: function(view_type) {
230         var self = this,
231             view_promise;
232         this.active_view = view_type;
233         var view = this.views[view_type];
234         if (!view.controller) {
235             // Lazy loading of views
236             var controllerclass = this.registry.get_object(view_type);
237             var controller = new controllerclass(this, this.dataset, view.view_id, view.options);
238             if (view.embedded_view) {
239                 controller.set_embedded_view(view.embedded_view);
240             }
241             controller.do_switch_view.add_last(this.on_mode_switch);
242             var container = $("#" + this.element_id + '_view_' + view_type);
243             view_promise = controller.appendTo(container);
244             this.views[view_type].controller = controller;
245             $.when(view_promise).then(function() {
246                 self.on_controller_inited(view_type, controller);
247                 if (self.searchview && view.controller.searchable !== false) {
248                     self.do_searchview_search();
249                 }
250             });
251         } else if (this.searchview && view.controller.searchable !== false) {
252             self.do_searchview_search();
253         }
254
255         if (this.searchview) {
256             this.searchview[(view.controller.searchable === false || this.searchview.hidden) ? 'hide' : 'show']();
257         }
258
259         this.$element
260             .find('.views-switchers button').removeAttr('disabled')
261             .filter('[data-view-type="' + view_type + '"]')
262             .attr('disabled', true);
263
264         for (var view_name in this.views) {
265             if (!this.views.hasOwnProperty(view_name)) { continue; }
266             if (this.views[view_name].controller) {
267                 if (view_name === view_type) {
268                     $.when(view_promise).then(this.views[view_name].controller.do_show);
269                 } else {
270                     this.views[view_name].controller.do_hide();
271                 }
272             }
273         }
274         $.when(view_promise).then(function () {
275             self.$element.find('.oe_view_title:first').text(
276                     self.display_title());
277         });
278         return view_promise;
279     },
280     /**
281      * Sets up the current viewmanager's search view.
282      *
283      * @param {Number|false} view_id the view to use or false for a default one
284      * @returns {jQuery.Deferred} search view startup deferred
285      */
286     setup_search_view: function(view_id, search_defaults) {
287         var self = this;
288         if (this.searchview) {
289             this.searchview.stop();
290         }
291         this.searchview = new session.web.SearchView(
292                 this, this.dataset,
293                 view_id, search_defaults, this.flags.search_view === false);
294
295         this.searchview.on_search.add(this.do_searchview_search);
296         return this.searchview.appendTo($("#" + this.element_id + "_search"));
297     },
298     do_searchview_search: function(domains, contexts, groupbys) {
299         var self = this,
300             controller = this.views[this.active_view].controller;
301         if (domains || contexts) {
302             this.rpc('/web/session/eval_domain_and_context', {
303                 domains: [this.action.domain || []].concat(domains || []),
304                 contexts: [this.action.context || {}].concat(contexts || []),
305                 group_by_seq: groupbys || []
306             }, function (results) {
307                 self.dataset.context = results.context;
308                 self.dataset.domain = results.domain;
309                 self.last_search = [results.domain, results.context, results.group_by];
310                 controller.do_search(results.domain, results.context, results.group_by);
311             });
312         } else if (this.last_search) {
313             controller.do_search.apply(controller, this.last_search);
314         }
315     },
316     /**
317      * Event launched when a controller has been inited.
318      *
319      * @param {String} view_type type of view
320      * @param {String} view the inited controller
321      */
322     on_controller_inited: function(view_type, view) {
323     },
324     /**
325      * Called when one of the view want to execute an action
326      */
327     on_action: function(action) {
328     },
329     on_create: function() {
330     },
331     on_remove: function() {
332     },
333     on_edit: function() {
334     },
335     /**
336      * Called by children view after executing an action
337      */
338     on_action_executed: function () {},
339     display_title: function () {
340         var view = this.views[this.active_view];
341         if (view) {
342             // ick
343             return view.controller.fields_view.arch.attrs.string;
344         }
345         return '';
346     }
347 });
348
349 session.web.ViewManagerAction = session.web.ViewManager.extend(/** @lends oepnerp.web.ViewManagerAction# */{
350     template:"ViewManagerAction",
351     /**
352      * @constructs session.web.ViewManagerAction
353      * @extends session.web.ViewManager
354      *
355      * @param {session.web.ActionManager} parent parent object/widget
356      * @param {Object} action descriptor for the action this viewmanager needs to manage its views.
357      */
358     init: function(parent, action) {
359         // dataset initialization will take the session from ``this``, so if we
360         // do not have it yet (and we don't, because we've not called our own
361         // ``_super()``) rpc requests will blow up.
362         this._super(parent, null, action.views);
363         this.session = parent.session;
364         this.action = action;
365         var dataset = new session.web.DataSetSearch(this, action.res_model, action.context, action.domain);
366         if (action.res_id) {
367             dataset.ids.push(action.res_id);
368             dataset.index = 0;
369         }
370         this.dataset = dataset;
371         this.flags = this.action.flags || {};
372         if (action.res_model == 'board.board' && action.views.length == 1 && action.views) {
373             // Not elegant but allows to avoid form chrome (pager, save/new
374             // buttons, sidebar, ...) displaying
375             this.flags.search_view = this.flags.pager = this.flags.sidebar = this.flags.action_buttons = false;
376         }
377
378         // setup storage for session-wise menu hiding
379         if (this.session.hidden_menutips) {
380             return;
381         }
382         this.session.hidden_menutips = {}
383     },
384     /**
385      * Initializes the ViewManagerAction: sets up the searchview (if the
386      * searchview is enabled in the manager's action flags), calls into the
387      * parent to initialize the primary view and (if the VMA has a searchview)
388      * launches an initial search after both views are done rendering.
389      */
390     start: function() {
391         var self = this,
392             searchview_loaded,
393             search_defaults = {};
394         _.each(this.action.context, function (value, key) {
395             var match = /^search_default_(.*)$/.exec(key);
396             if (match) {
397                 search_defaults[match[1]] = value;
398             }
399         });
400         // init search view
401         var searchview_id = this.action['search_view_id'] && this.action['search_view_id'][0];
402
403         searchview_loaded = this.setup_search_view(searchview_id || false, search_defaults);
404
405         var main_view_loaded = this._super();
406
407         var manager_ready = $.when(searchview_loaded, main_view_loaded);
408         if (searchview_loaded && this.action['auto_search'] !== false) {
409             // schedule auto_search
410             manager_ready.then(this.searchview.do_search);
411         }
412
413         this.$element.find('.oe_get_xml_view').click(function () {
414             // TODO: add search view?
415             $('<pre>').text(session.web.json_node_to_xml(
416                 self.views[self.active_view].controller.fields_view.arch, true))
417                     .dialog({ width: '95%'});
418         });
419         if (this.action.help && !this.flags.low_profile) {
420             var Users = new session.web.DataSet(self, 'res.users'),
421                 header = this.$element.find('.oe-view-manager-header');
422             header.delegate('blockquote button', 'click', function() {
423                 var $this = $(this);
424                 //noinspection FallthroughInSwitchStatementJS
425                 switch ($this.attr('name')) {
426                 case 'disable':
427                     Users.write(self.session.uid, {menu_tips:false});
428                 case 'hide':
429                     $this.closest('blockquote').hide();
430                     self.session.hidden_menutips[self.action.id] = true;
431                 }
432             });
433             if (!(self.action.id in self.session.hidden_menutips)) {
434                 Users.read_ids([this.session.uid], ['menu_tips'], function(users) {
435                     var user = users[0];
436                     if (!(user && user.id === self.session.uid)) {
437                         return;
438                     }
439                     header.find('blockquote').toggle(user.menu_tips);
440                 });
441             }
442         }
443
444         var $res_logs = this.$element.find('.oe-view-manager-logs:first');
445         $res_logs.delegate('a.oe-more-logs', 'click', function () {
446             $res_logs.removeClass('oe-folded');
447             return false;
448         }).delegate('a.oe-remove-everything', 'click', function () {
449             $res_logs.removeClass('oe-has-more')
450                      .find('ul').empty();
451             return false;
452         });
453
454         return manager_ready;
455     },
456     on_mode_switch: function (view_type) {
457         var self = this;
458         return $.when(
459                 this._super(view_type),
460                 this.shortcut_check(this.views[view_type])
461             ).then(function() {
462                 var controller = self.views[self.active_view].controller,
463                     fvg = controller.fields_view,
464                     view_id = (fvg && fvg.view_id) || '--';
465                 self.$element.find('.oe_get_xml_view span').text(view_id);
466                 if (!self.action.name && fvg) {
467                     self.$element.find('.oe_view_title').text(fvg.arch.attrs.string || fvg.name);
468                 }
469
470                 var $title = self.$element.find('.oe_view_title'),
471                     $search_prefix = $title.find('span.oe_searchable_view');
472                 if (controller.searchable !== false) {
473                     if (!$search_prefix.length) {
474                         $title.prepend('<span class="oe_searchable_view">' + _t("Search: ") + '</span>');
475                     }
476                 } else {
477                     $search_prefix.remove();
478                 }
479         });
480     },
481     shortcut_check : function(view) {
482         var self = this;
483         var grandparent = this.widget_parent && this.widget_parent.widget_parent;
484         // display shortcuts if on the first view for the action
485         var $shortcut_toggle = this.$element.find('.oe-shortcut-toggle');
486         if (!(grandparent instanceof session.web.WebClient) ||
487             !(view.view_type === this.views_src[0].view_type
488                 && view.view_id === this.views_src[0].view_id)) {
489             $shortcut_toggle.hide();
490             return;
491         }
492         $shortcut_toggle.removeClass('oe-shortcut-remove').show();
493         if (_(this.session.shortcuts).detect(function (shortcut) {
494                     return shortcut.res_id === self.session.active_id; })) {
495             $shortcut_toggle.addClass("oe-shortcut-remove");
496         }
497         this.shortcut_add_remove();
498     },
499     shortcut_add_remove: function() {
500         var self = this;
501         var $shortcut_toggle = this.$element.find('.oe-shortcut-toggle');
502         $shortcut_toggle
503             .unbind("click")
504             .click(function() {
505                 if ($shortcut_toggle.hasClass("oe-shortcut-remove")) {
506                     $(self.session.shortcuts.binding).trigger('remove-current');
507                     $shortcut_toggle.removeClass("oe-shortcut-remove");
508                 } else {
509                     $(self.session.shortcuts.binding).trigger('add', {
510                         'user_id': self.session.uid,
511                         'res_id': self.session.active_id,
512                         'resource': 'ir.ui.menu',
513                         'name': self.action.name
514                     });
515                     $shortcut_toggle.addClass("oe-shortcut-remove");
516                 }
517             });
518     },
519     /**
520      * Intercept do_action resolution from children views
521      */
522     on_action_executed: function () {
523         return new session.web.DataSet(this, 'res.log')
524                 .call('get', [], this.do_display_log);
525     },
526     /**
527      * @param {Array<Object>} log_records
528      */
529     do_display_log: function (log_records) {
530         var self = this,
531             cutoff = 3,
532             $logs = this.$element.find('.oe-view-manager-logs:first')
533                     .addClass('oe-folded'),
534             $logs_list = $logs.find('ul').empty();
535         $logs.toggleClass('oe-has-more', log_records.length > cutoff);
536         _(log_records.reverse()).each(function (record) {
537             $(_.sprintf('<li><a href="#">%s</a></li>', record.name))
538                 .appendTo($logs_list)
539                 .delegate('a', 'click', function (e) {
540                     self.do_action({
541                         type: 'ir.actions.act_window',
542                         res_model: record.res_model,
543                         res_id: record.res_id,
544                         // TODO: need to have an evaluated context here somehow
545                         //context: record.context,
546                         views: [[false, 'form']]
547                     });
548                     return false;
549                 });
550         });
551     },
552     display_title: function () {
553         return this.action.name;
554     }
555 });
556
557 session.web.Sidebar = session.web.Widget.extend({
558     init: function(parent, element_id) {
559         this._super(parent, element_id);
560         this.items = {};
561         this.sections = {};
562     },
563     start: function() {
564         this._super(this);
565         var self = this;
566         this.$element.html(session.web.qweb.render('Sidebar'));
567         this.$element.find(".toggle-sidebar").click(function(e) {
568             self.do_toggle();
569         });
570     },
571
572     call_default_on_sidebar: function(item) {
573         var func_name = 'on_sidebar_' + _.underscored(item.label);
574         var fn = this.widget_parent[func_name];
575         if(typeof fn === 'function') {
576             fn(item);
577         }
578     },
579
580     add_default_sections: function() {
581         if (this.session.uid === 1) {
582             this.add_section(_t('Customize'), 'customize');
583             this.add_items('customize', [
584                 {
585                     label: _t("Manage Views"),
586                     callback: this.call_default_on_sidebar,
587                     title: _t("Manage views of the current object")
588                 }, {
589                     label: _t("Edit Workflow"),
590                     callback: this.call_default_on_sidebar,
591                     title: _t("Manage views of the current object"),
592                     classname: 'oe_hide oe_sidebar_edit_workflow'
593                 }, {
594                     label: _t("Customize Object"),
595                     callback: this.call_default_on_sidebar,
596                     title: _t("Manage views of the current object")
597                 }, {
598                     label: _t("Translate"),
599                     callback: this.call_default_on_sidebar,
600                     title: _t("Technical translation")
601                 }
602             ]);
603         }
604
605         this.add_section(_t('Other Options'), 'other');
606         this.add_items('other', [
607             {
608                 label: _t("Import"),
609                 callback: this.call_default_on_sidebar
610             }, {
611                 label: _t("Export"),
612                 callback: this.call_default_on_sidebar
613             }, {
614                 label: _t("View Log"),
615                 callback: this.call_default_on_sidebar,
616                 classname: 'oe_hide oe_sidebar_view_log'
617             }
618         ]);
619     },
620
621     add_toolbar: function(toolbar) {
622         var self = this;
623         _.each([['print', _t("Reports")], ['action', _t("Actions")], ['relate', _t("Links")]], function(type) {
624             var items = toolbar[type[0]];
625             if (items.length) {
626                 for (var i = 0; i < items.length; i++) {
627                     items[i] = {
628                         label: items[i]['name'],
629                         action: items[i],
630                         classname: 'oe_sidebar_' + type[0]
631                     }
632                 }
633                 self.add_section(type[1], type[0]);
634                 self.add_items(type[0], items);
635             }
636         });
637     },
638
639     add_section: function(name, code) {
640         if(!code) code = _.underscored(name);
641         var $section = this.sections[code];
642
643         if(!$section) {
644             var section_id = _.uniqueId(this.element_id + '_section_' + code + '_');
645             $section = $(session.web.qweb.render("Sidebar.section", {
646                 section_id: section_id,
647                 name: name,
648                 classname: 'oe_sidebar_' + code
649             }));
650             $section.appendTo(this.$element.find('div.sidebar-actions'));
651             this.sections[code] = $section;
652         }
653         return $section;
654     },
655
656     add_items: function(section_code, items) {
657         // An item is a dictonary : {
658         //    label: label to be displayed for the link,
659         //    action: action to be launch when the link is clicked,
660         //    callback: a function to be executed when the link is clicked,
661         //    classname: optional dom class name for the line,
662         //    title: optional title for the link
663         // }
664         // Note: The item should have one action or/and a callback
665         //
666
667         var self = this,
668             $section = this.add_section(_.titleize(section_code.replace('_', ' ')), section_code),
669             section_id = $section.attr('id');
670
671         if (items) {
672             for (var i = 0; i < items.length; i++) {
673                 items[i].element_id = _.uniqueId(section_id + '_item_');
674                 this.items[items[i].element_id] = items[i];
675             }
676
677             var $items = $(session.web.qweb.render("Sidebar.section.items", {items: items}));
678
679             $items.find('a.oe_sidebar_action_a').click(function() {
680                 var item = self.items[$(this).attr('id')];
681                 if (item.callback) {
682                     item.callback.apply(self, [item]);
683                 }
684                 if (item.action) {
685                     var ids = self.widget_parent.get_selected_ids();
686                     if (ids.length == 0) {
687                         //TODO: make prettier warning?
688                         $("<div />").text(_t("You must choose at least one record.")).dialog({
689                             title: _t("Warning"),
690                             modal: true
691                         });
692                         return false;
693                     }
694                     var additional_context = {
695                         active_id: ids[0],
696                         active_ids: ids,
697                         active_model: self.widget_parent.dataset.model
698                     };
699                     self.rpc("/web/action/load", {
700                         action_id: item.action.id,
701                         context: additional_context
702                     }, function(result) {
703                         result.result.context = _.extend(result.result.context || {},
704                             additional_context);
705                         result.result.flags = result.result.flags || {};
706                         result.result.flags.new_window = true;
707                         self.do_action(result.result);
708                     });
709                 }
710                 return false;
711             });
712         
713             var $ul = $section.find('ul');
714             if(!$ul.length) {
715                 $ul = $('<ul/>').appendTo($section);
716             }
717             $items.appendTo($ul);
718         }
719     },
720     do_fold: function() {
721         this.$element.addClass('closed-sidebar').removeClass('open-sidebar');
722     },
723     do_unfold: function() {
724         this.$element.addClass('open-sidebar').removeClass('closed-sidebar');
725     },
726     do_toggle: function() {
727         this.$element.toggleClass('open-sidebar closed-sidebar');
728     }
729 });
730
731 session.web.TranslateDialog = session.web.Dialog.extend({
732     dialog_title: _t("Translations"),
733     init: function(view) {
734         // TODO fme: should add the language to fields_view_get because between the fields view get
735         // and the moment the user opens the translation dialog, the user language could have been changed
736         this.view_language = view.session.user_context.lang;
737         this['on_button' + _t("Save")] = this.on_button_Save;
738         this['on_button' + _t("Close")] = this.on_button_Close;
739         this._super(view, {
740             width: '80%',
741             height: '80%'
742         });
743         this.view = view;
744         this.view_type = view.fields_view.type || '';
745         this.$fields_form = null;
746         this.$view_form = null;
747         this.$sidebar_form = null;
748         this.translatable_fields_keys = _.map(this.view.translatable_fields || [], function(i) { return i.name });
749         this.languages = null;
750         this.languages_loaded = $.Deferred();
751         (new session.web.DataSetSearch(this, 'res.lang', this.view.dataset.get_context(),
752             [['translatable', '=', '1']])).read_slice(['code', 'name'], { sort: 'id' }, this.on_languages_loaded);
753     },
754     start: function() {
755         var self = this;
756         this._super();
757         $.when(this.languages_loaded).then(function() {
758             self.$element.html(session.web.qweb.render('TranslateDialog', { widget: self }));
759             self.$fields_form = self.$element.find('.oe_translation_form');
760             self.$fields_form.find('.oe_trad_field').change(function() {
761                 $(this).toggleClass('touched', ($(this).val() != $(this).attr('data-value')));
762             });
763         });
764         return this;
765     },
766     on_languages_loaded: function(langs) {
767         this.languages = langs;
768         this.languages_loaded.resolve();
769     },
770     do_load_fields_values: function(callback) {
771         var self = this,
772             deffered = [];
773         this.$fields_form.find('.oe_trad_field').val('').removeClass('touched');
774         _.each(self.languages, function(lg) {
775             var deff = $.Deferred();
776             deffered.push(deff);
777             var callback = function(values) {
778                 _.each(self.translatable_fields_keys, function(f) {
779                     self.$fields_form.find('.oe_trad_field[name="' + lg.code + '-' + f + '"]').val(values[0][f] || '').attr('data-value', values[0][f] || '');
780                 });
781                 deff.resolve();
782             };
783             if (lg.code === self.view_language) {
784                 var values = {};
785                 _.each(self.translatable_fields_keys, function(field) {
786                     values[field] = self.view.fields[field].get_value();
787                 });
788                 callback([values]);
789             } else {
790                 self.rpc('/web/dataset/get', {
791                     model: self.view.dataset.model,
792                     ids: [self.view.datarecord.id],
793                     fields: self.translatable_fields_keys,
794                     context: self.view.dataset.get_context({
795                         'lang': lg.code
796                     })}, callback);
797             }
798         });
799         $.when.apply(null, deffered).then(callback);
800     },
801     open: function(field) {
802         var self = this,
803             sup = this._super;
804         $.when(this.languages_loaded).then(function() {
805             if (self.view.translatable_fields && self.view.translatable_fields.length) {
806                 self.do_load_fields_values(function() {
807                     sup.call(self);
808                     if (field) {
809                         var $field_input = self.$element.find('tr[data-field="' + field.name + '"] td:nth-child(2) *:first-child');
810                         self.$element.scrollTo($field_input);
811                         $field_input.focus();
812                     }
813                 });
814             } else {
815                 sup.call(self);
816             }
817         });
818     },
819     on_button_Save: function() {
820         var trads = {},
821             self = this;
822         self.$fields_form.find('.oe_trad_field.touched').each(function() {
823             var field = $(this).attr('name').split('-');
824             if (!trads[field[0]]) {
825                 trads[field[0]] = {};
826             }
827             trads[field[0]][field[1]] = $(this).val();
828         });
829         _.each(trads, function(data, code) {
830             if (code === self.view_language) {
831                 _.each(data, function(value, field) {
832                     self.view.fields[field].set_value(value);
833                 });
834             } else {
835                 self.view.dataset.write(self.view.datarecord.id, data, { 'lang': code });
836             }
837         });
838         this.close();
839     },
840     on_button_Close: function() {
841         this.close();
842     }
843 });
844
845 session.web.View = session.web.Widget.extend(/** @lends session.web.View# */{
846     template: "EmptyComponent",
847     set_default_options: function(options) {
848         this.options = options || {};
849         _.defaults(this.options, {
850             // All possible views options should be defaulted here
851             sidebar_id: null,
852             sidebar: true,
853             action: null,
854             action_views_ids: {}
855         });
856     },
857     open_translate_dialog: function(field) {
858         if (!this.translate_dialog) {
859             this.translate_dialog = new session.web.TranslateDialog(this).start();
860         }
861         this.translate_dialog.open(field);
862     },
863     /**
864      * Fetches and executes the action identified by ``action_data``.
865      *
866      * @param {Object} action_data the action descriptor data
867      * @param {String} action_data.name the action name, used to uniquely identify the action to find and execute it
868      * @param {String} [action_data.special=null] special action handlers (currently: only ``'cancel'``)
869      * @param {String} [action_data.type='workflow'] the action type, if present, one of ``'object'``, ``'action'`` or ``'workflow'``
870      * @param {Object} [action_data.context=null] additional action context, to add to the current context
871      * @param {session.web.DataSet} dataset a dataset object used to communicate with the server
872      * @param {Object} [record_id] the identifier of the object on which the action is to be applied
873      * @param {Function} on_closed callback to execute when dialog is closed or when the action does not generate any result (no new action)
874      */
875     do_execute_action: function (action_data, dataset, record_id, on_closed) {
876         var self = this;
877         var result_handler = function () {
878             if (on_closed) { on_closed.apply(null, arguments); }
879             if (self.widget_parent && self.widget_parent.on_action_executed) {
880                 return self.widget_parent.on_action_executed.apply(null, arguments);
881             }
882         };
883         var context = new session.web.CompoundContext(dataset.get_context(), action_data.context || {});
884         
885         var handler = function (r) {
886             var action = r.result;
887             if (action && action.constructor == Object) {
888                 var ncontext = new session.web.CompoundContext(context);
889                 if (record_id) {
890                     ncontext.add({
891                         active_id: record_id,
892                         active_ids: [record_id],
893                         active_model: dataset.model
894                     });
895                 }
896                 ncontext.add(action.context || {});
897                 return self.rpc('/web/session/eval_domain_and_context', {
898                     contexts: [ncontext],
899                     domains: []
900                 }).pipe(function (results) {
901                     action.context = results.context;
902                     /* niv: previously we were overriding once more with action_data.context,
903                      * I assumed this was not a correct behavior and removed it
904                      */
905                     return self.do_action(action, result_handler);
906                 }, null);
907             } else {
908                 return result_handler();
909             }
910         };
911
912         if (action_data.special) {
913             return handler({result: {"type":"ir.actions.act_window_close"}});
914         } else if (action_data.type=="object") {
915             return dataset.call_button(action_data.name, [[record_id], context], handler);
916         } else if (action_data.type=="action") {
917             return this.rpc('/web/action/load', { action_id: parseInt(action_data.name, 10), context: context, do_not_eval: true}, handler);
918         } else  {
919             return dataset.exec_workflow(record_id, action_data.name, handler);
920         }
921     },
922     /**
923      * Directly set a view to use instead of calling fields_view_get. This method must
924      * be called before start(). When an embedded view is set, underlying implementations
925      * of session.web.View must use the provided view instead of any other one.
926      *
927      * @param embedded_view A view.
928      */
929     set_embedded_view: function(embedded_view) {
930         this.embedded_view = embedded_view;
931         this.options.sidebar = false;
932     },
933     do_switch_view: function(view) {
934     },
935     do_search: function(view) {
936     },
937
938     set_common_sidebar_sections: function(sidebar) {
939         sidebar.add_default_sections();
940     },
941     on_sidebar_manage_views: function() {
942         if (this.fields_view && this.fields_view.arch) {
943             var view_editor = new session.web.ViewEditor(this, this.$element, this.dataset, this.fields_view.arch);
944             view_editor.start();
945         } else {
946             this.do_warn("Manage Views", "Could not find current view declaration");
947         }
948     },
949     on_sidebar_edit_workflow: function() {
950         console.log('Todo');
951     },
952     on_sidebar_customize_object: function() {
953         console.log('Todo');
954     },
955     on_sidebar_import: function() {
956         var import_view = new session.web.DataImport(this, this.dataset);
957         import_view.start();
958     },
959     on_sidebar_export: function() {
960         var export_view = new session.web.DataExport(this, this.dataset);
961         export_view.start();
962     },
963     on_sidebar_translate: function() {
964         return this.do_action({
965             res_model : 'ir.translation',
966             domain : [['type', '!=', 'object'], '|', ['name', '=', this.dataset.model], ['name', 'ilike', this.dataset.model + ',']],
967             views: [[false, 'list'], [false, 'form']],
968             type : 'ir.actions.act_window',
969             auto_search : true,
970             view_type : "list",
971             view_mode : "list"
972         });
973     },
974     on_sidebar_view_log: function() {
975     }
976 });
977
978 session.web.json_node_to_xml = function(node, human_readable, indent) {
979     // For debugging purpose, this function will convert a json node back to xml
980     // Maybe usefull for xml view editor
981     indent = indent || 0;
982     var sindent = (human_readable ? (new Array(indent + 1).join('\t')) : ''),
983         r = sindent + '<' + node.tag,
984         cr = human_readable ? '\n' : '';
985
986     if (typeof(node) === 'string') {
987         return sindent + node;
988     } else if (typeof(node.tag) !== 'string' || !node.children instanceof Array || !node.attrs instanceof Object) {
989         throw("Node a json node");
990     }
991     for (var attr in node.attrs) {
992         var vattr = node.attrs[attr];
993         if (typeof(vattr) !== 'string') {
994             // domains, ...
995             vattr = JSON.stringify(vattr);
996         }
997         vattr = vattr.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
998         if (human_readable) {
999             vattr = vattr.replace(/&quot;/g, "'");
1000         }
1001         r += ' ' + attr + '="' + vattr + '"';
1002     }
1003     if (node.children && node.children.length) {
1004         r += '>' + cr;
1005         var childs = [];
1006         for (var i = 0, ii = node.children.length; i < ii; i++) {
1007             childs.push(session.web.json_node_to_xml(node.children[i], human_readable, indent + 1));
1008         }
1009         r += childs.join(cr);
1010         r += cr + sindent + '</' + node.tag + '>';
1011         return r;
1012     } else {
1013         return r + '/>';
1014     }
1015 }
1016
1017 };
1018
1019 // vim:et fdc=0 fdl=0 foldnestmax=3 fdm=syntax: