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
|
odoo.define('mail/static/src/components/attachment_box/attachment_box.js', function (require) {
'use strict';
const components = {
AttachmentList: require('mail/static/src/components/attachment_list/attachment_list.js'),
DropZone: require('mail/static/src/components/drop_zone/drop_zone.js'),
FileUploader: require('mail/static/src/components/file_uploader/file_uploader.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 { Component } = owl;
const { useRef } = owl.hooks;
class AttachmentBox extends Component {
/**
* @override
*/
constructor(...args) {
super(...args);
this.isDropZoneVisible = useDragVisibleDropZone();
useShouldUpdateBasedOnProps();
useStore(props => {
const thread = this.env.models['mail.thread'].get(props.threadLocalId);
return {
thread,
threadAllAttachments: thread ? thread.allAttachments : [],
threadId: thread && thread.id,
threadModel: thread && thread.model,
};
}, {
compareDepth: {
threadAllAttachments: 1,
},
});
/**
* Reference of the file uploader.
* Useful to programmatically prompts the browser file uploader.
*/
this._fileUploaderRef = useRef('fileUploader');
}
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
/**
* Get an object which is passed to FileUploader component to be used when
* creating attachment.
*
* @returns {Object}
*/
get newAttachmentExtraData() {
return {
originThread: [['link', this.thread]],
};
}
/**
* @returns {mail.thread|undefined}
*/
get thread() {
return this.env.models['mail.thread'].get(this.props.threadLocalId);
}
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* @private
* @param {Event} ev
*/
_onAttachmentCreated(ev) {
// FIXME Could be changed by spying attachments count (task-2252858)
this.trigger('o-attachments-changed');
}
/**
* @private
* @param {Event} ev
*/
_onAttachmentRemoved(ev) {
// FIXME Could be changed by spying attachments count (task-2252858)
this.trigger('o-attachments-changed');
}
/**
* @private
* @param {Event} ev
*/
_onClickAdd(ev) {
ev.preventDefault();
ev.stopPropagation();
this._fileUploaderRef.comp.openBrowserFileUploader();
}
/**
* @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;
}
}
Object.assign(AttachmentBox, {
components,
props: {
threadLocalId: String,
},
template: 'mail.AttachmentBox',
});
return AttachmentBox;
});
|