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
|
odoo.define('mail/static/src/components/attachment/attachment.js', function (require) {
'use strict';
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 components = {
AttachmentDeleteConfirmDialog: require('mail/static/src/components/attachment_delete_confirm_dialog/attachment_delete_confirm_dialog.js'),
};
const { Component, useState } = owl;
class Attachment extends Component {
/**
* @override
*/
constructor(...args) {
super(...args);
useShouldUpdateBasedOnProps({
compareDepth: {
attachmentLocalIds: 1,
},
});
useStore(props => {
const attachment = this.env.models['mail.attachment'].get(props.attachmentLocalId);
return {
attachment: attachment ? attachment.__state : undefined,
};
});
this.state = useState({
hasDeleteConfirmDialog: false,
});
}
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
/**
* @returns {mail.attachment}
*/
get attachment() {
return this.env.models['mail.attachment'].get(this.props.attachmentLocalId);
}
/**
* Return the url of the attachment. Temporary attachments, a.k.a. uploading
* attachments, do not have an url.
*
* @returns {string}
*/
get attachmentUrl() {
if (this.attachment.isTemporary) {
return '';
}
return this.env.session.url('/web/content', {
id: this.attachment.id,
download: true,
});
}
/**
* Get the details mode after auto mode is computed
*
* @returns {string} 'card', 'hover' or 'none'
*/
get detailsMode() {
if (this.props.detailsMode !== 'auto') {
return this.props.detailsMode;
}
if (this.attachment.fileType !== 'image') {
return 'card';
}
return 'hover';
}
/**
* Get the attachment representation style to be applied
*
* @returns {string}
*/
get imageStyle() {
if (this.attachment.fileType !== 'image') {
return '';
}
if (this.env.isQUnitTest) {
// background-image:url is hardly mockable, and attachments in
// QUnit tests do not actually exist in DB, so style should not
// be fetched at all.
return '';
}
let size;
if (this.detailsMode === 'card') {
size = '38x38';
} else {
// The size of background-image depends on the props.imageSize
// to sync with width and height of `.o_Attachment_image`.
if (this.props.imageSize === "large") {
size = '400x400';
} else if (this.props.imageSize === "medium") {
size = '200x200';
} else if (this.props.imageSize === "small") {
size = '100x100';
}
}
// background-size set to override value from `o_image` which makes small image stretched
return `background-image:url(/web/image/${this.attachment.id}/${size}); background-size: auto;`;
}
//--------------------------------------------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* Download the attachment when clicking on donwload icon.
*
* @private
* @param {MouseEvent} ev
*/
_onClickDownload(ev) {
ev.stopPropagation();
window.location = `/web/content/ir.attachment/${this.attachment.id}/datas?download=true`;
}
/**
* Open the attachment viewer when clicking on viewable attachment.
*
* @private
* @param {MouseEvent} ev
*/
_onClickImage(ev) {
if (!this.attachment.isViewable) {
return;
}
this.env.models['mail.attachment'].view({
attachment: this.attachment,
attachments: this.props.attachmentLocalIds.map(
attachmentLocalId => this.env.models['mail.attachment'].get(attachmentLocalId)
),
});
}
/**
* @private
* @param {MouseEvent} ev
*/
_onClickUnlink(ev) {
ev.stopPropagation();
if (!this.attachment) {
return;
}
if (this.attachment.isLinkedToComposer) {
this.attachment.remove();
this.trigger('o-attachment-removed', { attachmentLocalId: this.props.attachmentLocalId });
} else {
this.state.hasDeleteConfirmDialog = true;
}
}
/**
* @private
*/
_onDeleteConfirmDialogClosed() {
this.state.hasDeleteConfirmDialog = false;
}
}
Object.assign(Attachment, {
components,
defaultProps: {
attachmentLocalIds: [],
detailsMode: 'auto',
imageSize: 'medium',
isDownloadable: false,
isEditable: true,
showExtension: true,
showFilename: true,
},
props: {
attachmentLocalId: String,
attachmentLocalIds: {
type: Array,
element: String,
},
detailsMode: {
type: String,
validate: prop => ['auto', 'card', 'hover', 'none'].includes(prop),
},
imageSize: {
type: String,
validate: prop => ['small', 'medium', 'large'].includes(prop),
},
isDownloadable: Boolean,
isEditable: Boolean,
showExtension: Boolean,
showFilename: Boolean,
},
template: 'mail.Attachment',
});
return Attachment;
});
|