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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
odoo.define('mail/static/src/components/composer/composer.js', function (require) {
'use strict';
const components = {
AttachmentList: require('mail/static/src/components/attachment_list/attachment_list.js'),
ComposerSuggestedRecipientList: require('mail/static/src/components/composer_suggested_recipient_list/composer_suggested_recipient_list.js'),
DropZone: require('mail/static/src/components/drop_zone/drop_zone.js'),
EmojisPopover: require('mail/static/src/components/emojis_popover/emojis_popover.js'),
FileUploader: require('mail/static/src/components/file_uploader/file_uploader.js'),
TextInput: require('mail/static/src/components/composer_text_input/composer_text_input.js'),
ThreadTextualTypingStatus: require('mail/static/src/components/thread_textual_typing_status/thread_textual_typing_status.js'),
};
const useDragVisibleDropZone = require('mail/static/src/component_hooks/use_drag_visible_dropzone/use_drag_visible_dropzone.js');
const useShouldUpdateBasedOnProps = require('mail/static/src/component_hooks/use_should_update_based_on_props/use_should_update_based_on_props.js');
const useStore = require('mail/static/src/component_hooks/use_store/use_store.js');
const useUpdate = require('mail/static/src/component_hooks/use_update/use_update.js');
const {
isEventHandled,
markEventHandled,
} = require('mail/static/src/utils/utils.js');
const { Component } = owl;
const { useRef } = owl.hooks;
class Composer extends Component {
/**
* @override
*/
constructor(...args) {
super(...args);
this.isDropZoneVisible = useDragVisibleDropZone();
useShouldUpdateBasedOnProps({
compareDepth: {
textInputSendShortcuts: 1,
},
});
useStore(props => {
const composer = this.env.models['mail.composer'].get(props.composerLocalId);
const thread = composer && composer.thread;
return {
composer,
composerAttachments: composer ? composer.attachments : [],
composerCanPostMessage: composer && composer.canPostMessage,
composerHasFocus: composer && composer.hasFocus,
composerIsLog: composer && composer.isLog,
composerSubjectContent: composer && composer.subjectContent,
isDeviceMobile: this.env.messaging.device.isMobile,
thread,
threadChannelType: thread && thread.channel_type, // for livechat override
threadDisplayName: thread && thread.displayName,
threadMassMailing: thread && thread.mass_mailing,
threadModel: thread && thread.model,
threadName: thread && thread.name,
};
}, {
compareDepth: {
composerAttachments: 1,
},
});
useUpdate({ func: () => this._update() });
/**
* Reference of the emoji popover. Useful to include emoji popover as
* contained "inside" the composer.
*/
this._emojisPopoverRef = useRef('emojisPopover');
/**
* Reference of the file uploader.
* Useful to programmatically prompts the browser file uploader.
*/
this._fileUploaderRef = useRef('fileUploader');
/**
* Reference of the text input component.
*/
this._textInputRef = useRef('textInput');
/**
* Reference of the subject input. Useful to set content.
*/
this._subjectRef = useRef('subject');
this._onClickCaptureGlobal = this._onClickCaptureGlobal.bind(this);
}
mounted() {
document.addEventListener('click', this._onClickCaptureGlobal, true);
}
willUnmount() {
document.removeEventListener('click', this._onClickCaptureGlobal, true);
}
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
/**
* @returns {mail.composer}
*/
get composer() {
return this.env.models['mail.composer'].get(this.props.composerLocalId);
}
/**
* Returns whether the given node is self or a children of self, including
* the emoji popover.
*
* @param {Node} node
* @returns {boolean}
*/
contains(node) {
// emoji popover is outside but should be considered inside
const emojisPopover = this._emojisPopoverRef.comp;
if (emojisPopover && emojisPopover.contains(node)) {
return true;
}
return this.el.contains(node);
}
/**
* Get the current partner image URL.
*
* @returns {string}
*/
get currentPartnerAvatar() {
const avatar = this.env.messaging.currentUser
? this.env.session.url('/web/image', {
field: 'image_128',
id: this.env.messaging.currentUser.id,
model: 'res.users',
})
: '/web/static/src/img/user_menu_avatar.png';
return avatar;
}
/**
* Focus the composer.
*/
focus() {
if (this.env.messaging.device.isMobile) {
this.el.scrollIntoView();
}
this._textInputRef.comp.focus();
}
/**
* Focusout the composer.
*/
focusout() {
this._textInputRef.comp.focusout();
}
/**
* Determine whether composer should display a footer.
*
* @returns {boolean}
*/
get hasFooter() {
return (
this.props.hasThreadTyping ||
this.composer.attachments.length > 0 ||
!this.props.isCompact
);
}
/**
* Determine whether the composer should display a header.
*
* @returns {boolean}
*/
get hasHeader() {
return (
(this.props.hasThreadName && this.composer.thread) ||
(this.props.hasFollowers && !this.composer.isLog)
);
}
/**
* Get an object which is passed to FileUploader component to be used when
* creating attachment.
*
* @returns {Object}
*/
get newAttachmentExtraData() {
return {
composers: [['replace', this.composer]],
};
}
//--------------------------------------------------------------------------
// Private
//--------------------------------------------------------------------------
/**
* Post a message in the composer on related thread.
*
* Posting of the message could be aborted if it cannot be posted like if there are attachments
* currently uploading or if there is no text content and no attachments.
*
* @private
*/
async _postMessage() {
if (!this.composer.canPostMessage) {
if (this.composer.hasUploadingAttachment) {
this.env.services['notification'].notify({
message: this.env._t("Please wait while the file is uploading."),
type: 'warning',
});
}
return;
}
await this.composer.postMessage();
// TODO: we might need to remove trigger and use the store to wait for the post rpc to be done
// task-2252858
this.trigger('o-message-posted');
}
/**
* @private
*/
_update() {
if (this.props.isDoFocus) {
this.focus();
}
if (!this.composer) {
return;
}
if (this._subjectRef.el) {
this._subjectRef.el.value = this.composer.subjectContent;
}
}
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* Called when clicking on attachment button.
*
* @private
*/
_onClickAddAttachment() {
this._fileUploaderRef.comp.openBrowserFileUploader();
if (!this.env.device.isMobile) {
this.focus();
}
}
/**
* Discards the composer when clicking away.
*
* @private
* @param {MouseEvent} ev
*/
_onClickCaptureGlobal(ev) {
if (this.contains(ev.target)) {
return;
}
this.composer.discard();
}
/**
* Called when clicking on "expand" button.
*
* @private
*/
_onClickFullComposer() {
this.composer.openFullComposer();
}
/**
* Called when clicking on "discard" button.
*
* @private
* @param {MouseEvent} ev
*/
_onClickDiscard(ev) {
this.composer.discard();
}
/**
* Called when clicking on "send" button.
*
* @private
*/
_onClickSend() {
this._postMessage();
this.focus();
}
/**
* @private
*/
_onComposerSuggestionClicked() {
this.focus();
}
/**
* @private
*/
_onComposerTextInputSendShortcut() {
this._postMessage();
}
/**
* Called when some files have been dropped in the dropzone.
*
* @private
* @param {CustomEvent} ev
* @param {Object} ev.detail
* @param {FileList} ev.detail.files
*/
async _onDropZoneFilesDropped(ev) {
ev.stopPropagation();
await this._fileUploaderRef.comp.uploadFiles(ev.detail.files);
this.isDropZoneVisible.value = false;
}
/**
* Called when selection an emoji from the emoji popover (from the emoji
* button).
*
* @private
* @param {CustomEvent} ev
* @param {Object} ev.detail
* @param {string} ev.detail.unicode
*/
_onEmojiSelection(ev) {
ev.stopPropagation();
this._textInputRef.comp.saveStateInStore();
this.composer.insertIntoTextInput(ev.detail.unicode);
if (!this.env.device.isMobile) {
this.focus();
}
}
/**
* @private
*/
_onInputSubject() {
this.composer.update({ subjectContent: this._subjectRef.el.value });
}
/**
* @private
* @param {KeyboardEvent} ev
*/
_onKeydown(ev) {
if (ev.key === 'Escape') {
if (isEventHandled(ev, 'ComposerTextInput.closeSuggestions')) {
return;
}
if (isEventHandled(ev, 'Composer.closeEmojisPopover')) {
return;
}
ev.preventDefault();
this.composer.discard();
}
}
/**
* @private
* @param {KeyboardEvent} ev
*/
_onKeydownEmojiButton(ev) {
if (ev.key === 'Escape') {
if (this._emojisPopoverRef.comp) {
this._emojisPopoverRef.comp.close();
this.focus();
markEventHandled(ev, 'Composer.closeEmojisPopover');
}
}
}
/**
* @private
* @param {CustomEvent} ev
*/
async _onPasteTextInput(ev) {
if (!ev.clipboardData || !ev.clipboardData.files) {
return;
}
await this._fileUploaderRef.comp.uploadFiles(ev.clipboardData.files);
}
}
Object.assign(Composer, {
components,
defaultProps: {
hasCurrentPartnerAvatar: true,
hasDiscardButton: false,
hasFollowers: false,
hasSendButton: true,
hasThreadName: false,
hasThreadTyping: false,
isCompact: true,
isDoFocus: false,
isExpandable: false,
},
props: {
attachmentsDetailsMode: {
type: String,
optional: true,
},
composerLocalId: String,
hasCurrentPartnerAvatar: Boolean,
hasDiscardButton: Boolean,
hasFollowers: Boolean,
hasMentionSuggestionsBelowPosition: {
type: Boolean,
optional: true,
},
hasSendButton: Boolean,
hasThreadName: Boolean,
hasThreadTyping: Boolean,
/**
* Determines whether this should become focused.
*/
isDoFocus: Boolean,
showAttachmentsExtensions: {
type: Boolean,
optional: true,
},
showAttachmentsFilenames: {
type: Boolean,
optional: true,
},
isCompact: Boolean,
isExpandable: Boolean,
/**
* If set, keyboard shortcuts from text input to send message.
* If not set, will use default values from `ComposerTextInput`.
*/
textInputSendShortcuts: {
type: Array,
element: String,
optional: true,
},
},
template: 'mail.Composer',
});
return Composer;
});
|