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
|
odoo.define('mail/static/src/services/dialog_service/dialog_service.js', function (require) {
'use strict';
const components = {
DialogManager: require('mail/static/src/components/dialog_manager/dialog_manager.js'),
};
const AbstractService = require('web.AbstractService');
const { bus, serviceRegistry } = require('web.core');
const DialogService = AbstractService.extend({
/**
* @override {web.AbstractService}
*/
start() {
this._super(...arguments);
this._webClientReady = false;
this._listenHomeMenu();
},
/**
* @private
*/
destroy() {
if (this.component) {
this.component.destroy();
this.component = undefined;
}
},
//--------------------------------------------------------------------------
// Private
//--------------------------------------------------------------------------
/**
* @private
* @returns {Node}
*/
_getParentNode() {
return document.querySelector('body');
},
/**
* @private
*/
_listenHomeMenu() {
bus.on('hide_home_menu', this, this._onHideHomeMenu.bind(this));
bus.on('show_home_menu', this, this._onShowHomeMenu.bind(this));
bus.on('web_client_ready', this, this._onWebClientReady.bind(this));
},
/**
* @private
*/
async _mount() {
if (this.component) {
this.component.destroy();
this.component = undefined;
}
const DialogManagerComponent = components.DialogManager;
this.component = new DialogManagerComponent(null);
const parentNode = this._getParentNode();
await this.component.mount(parentNode);
},
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* @private
*/
async _onHideHomeMenu() {
if (!this._webClientReady) {
return;
}
if (document.querySelector('.o_DialogManager')) {
return;
}
await this._mount();
},
async _onShowHomeMenu() {
if (!this._webClientReady) {
return;
}
if (document.querySelector('.o_DialogManager')) {
return;
}
await this._mount();
},
/**
* @private
*/
async _onWebClientReady() {
await this._mount();
this._webClientReady = true;
}
});
serviceRegistry.add('dialog', DialogService);
return DialogService;
});
|