1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
odoo.define('web.AppsMenu', function (require) {
"use strict";
var Widget = require('web.Widget');
var AppsMenu = Widget.extend({
template: 'AppsMenu',
events: {
'click .o_app': '_onAppsMenuItemClicked',
},
/**
* @override
* @param {web.Widget} parent
* @param {Object} menuData
* @param {Object[]} menuData.children
*/
init: function (parent, menuData) {
this._super.apply(this, arguments);
this._activeApp = undefined;
this._apps = _.map(menuData.children, function (appMenuData) {
return {
actionID: parseInt(appMenuData.action.split(',')[1]),
menuID: appMenuData.id,
name: appMenuData.name,
xmlID: appMenuData.xmlid,
};
});
},
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
/**
* @returns {Object[]}
*/
getApps: function () {
return this._apps;
},
/**
* Open the first app in the list of apps. Returns whether one was found.
*
* @returns {Boolean}
*/
openFirstApp: function () {
if (!this._apps.length) {
return false;
}
var firstApp = this._apps[0];
this._openApp(firstApp);
return true;
},
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* @private
* @param {Object} app
*/
_openApp: function (app) {
this._setActiveApp(app);
this.trigger_up('app_clicked', {
action_id: app.actionID,
menu_id: app.menuID,
});
},
/**
* @private
* @param {Object} app
*/
_setActiveApp: function (app) {
var $oldActiveApp = this.$('.o_app.active');
$oldActiveApp.removeClass('active');
var $newActiveApp = this.$('.o_app[data-action-id="' + app.actionID + '"]');
$newActiveApp.addClass('active');
},
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* Called when clicking on an item in the apps menu.
*
* @private
* @param {MouseEvent} ev
*/
_onAppsMenuItemClicked: function (ev) {
var $target = $(ev.currentTarget);
var actionID = $target.data('action-id');
var menuID = $target.data('menu-id');
var app = _.findWhere(this._apps, { actionID: actionID, menuID: menuID });
this._openApp(app);
},
});
return AppsMenu;
});
|