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
|
odoo.define('website.s_dynamic_snippet', function (require) {
'use strict';
const core = require('web.core');
const config = require('web.config');
const publicWidget = require('web.public.widget');
const DynamicSnippet = publicWidget.Widget.extend({
selector: '.s_dynamic_snippet',
xmlDependencies: ['/website/static/src/snippets/s_dynamic_snippet/000.xml'],
read_events: {
'click [data-url]': '_onCallToAction',
},
disabledInEditableMode: false,
/**
*
* @override
*/
init: function () {
this._super.apply(this, arguments);
/**
* The dynamic filter data source data formatted with the chosen template.
* Can be accessed when overriding the _render_content() function in order to generate
* a new renderedContent from the original data.
*
* @type {*|jQuery.fn.init|jQuery|HTMLElement}
*/
this.data = [];
this.renderedContent = '';
this.isDesplayedAsMobile = config.device.isMobile;
this.uniqueId = _.uniqueId('s_dynamic_snippet_');
this.template_key = 'website.s_dynamic_snippet.grid';
},
/**
*
* @override
*/
willStart: function () {
return this._super.apply(this, arguments).then(
() => Promise.all([
this._fetchData(),
this._manageWarningMessageVisibility()
])
);
},
/**
*
* @override
*/
start: function () {
return this._super.apply(this, arguments)
.then(() => {
this._setupSizeChangedManagement(true);
this._render();
this._toggleVisibility(true);
});
},
/**
*
* @override
*/
destroy: function () {
this._toggleVisibility(false);
this._setupSizeChangedManagement(false);
this._clearContent();
this._super.apply(this, arguments);
},
//--------------------------------------------------------------------------
// Private
//--------------------------------------------------------------------------
/**
*
* @private
*/
_clearContent: function () {
const $dynamicSnippetTemplate = this.$el.find('.dynamic_snippet_template');
if ($dynamicSnippetTemplate) {
$dynamicSnippetTemplate.html('');
}
},
/**
* Method to be overridden in child components if additional configuration elements
* are required in order to fetch data.
* @private
*/
_isConfigComplete: function () {
return this.$el.get(0).dataset.filterId !== undefined && this.$el.get(0).dataset.templateKey !== undefined;
},
/**
* Method to be overridden in child components in order to provide a search
* domain if needed.
* @private
*/
_getSearchDomain: function () {
return [];
},
/**
* Fetches the data.
* @private
*/
_fetchData: function () {
if (this._isConfigComplete()) {
return this._rpc(
{
'route': '/website/snippet/filters',
'params': {
'filter_id': parseInt(this.$el.get(0).dataset.filterId),
'template_key': this.$el.get(0).dataset.templateKey,
'limit': parseInt(this.$el.get(0).dataset.numberOfRecords),
'search_domain': this._getSearchDomain()
},
})
.then(
(data) => {
this.data = data;
}
);
} else {
return new Promise((resolve) => {
this.data = [];
resolve();
});
}
},
/**
*
* @private
*/
_mustMessageWarningBeHidden: function() {
return this._isConfigComplete() || !this.editableMode;
},
/**
*
* @private
*/
_manageWarningMessageVisibility: async function () {
this.$el.find('.missing_option_warning').toggleClass(
'd-none',
this._mustMessageWarningBeHidden()
);
},
/**
* Method to be overridden in child components in order to prepare content
* before rendering.
* @private
*/
_prepareContent: function () {
if (this.$target[0].dataset.numberOfElements && this.$target[0].dataset.numberOfElementsSmallDevices) {
this.renderedContent = core.qweb.render(
this.template_key,
this._getQWebRenderOptions());
} else {
this.renderedContent = '';
}
},
/**
* Method to be overridden in child components in order to prepare QWeb
* options.
* @private
*/
_getQWebRenderOptions: function () {
return {
chunkSize: parseInt(
config.device.isMobile
? this.$target[0].dataset.numberOfElementsSmallDevices
: this.$target[0].dataset.numberOfElements
),
data: this.data,
uniqueId: this.uniqueId
};
},
/**
*
* @private
*/
_render: function () {
if (this.data.length) {
this._prepareContent();
} else {
this.renderedContent = '';
}
this._renderContent();
},
/**
*
* @private
*/
_renderContent: function () {
this.$el.find('.dynamic_snippet_template').html(this.renderedContent);
},
/**
*
* @param {Boolean} enable
* @private
*/
_setupSizeChangedManagement: function (enable) {
if (enable === true) {
config.device.bus.on('size_changed', this, this._onSizeChanged);
} else {
config.device.bus.off('size_changed', this, this._onSizeChanged);
}
},
/**
*
* @param visible
* @private
*/
_toggleVisibility: function (visible) {
this.$el.toggleClass('d-none', !visible);
},
//------------------------------------- -------------------------------------
// Handlers
//--------------------------------------------------------------------------
/**
* Navigates to the call to action url.
* @private
*/
_onCallToAction: function (ev) {
window.location = $(ev.currentTarget).attr('data-url');
},
/**
* Called when the size has reached a new bootstrap breakpoint.
*
* @private
* @param {number} size as Integer @see web.config.device.SIZES
*/
_onSizeChanged: function (size) {
if (this.isDesplayedAsMobile !== config.device.isMobile) {
this.isDesplayedAsMobile = config.device.isMobile;
this._render();
}
},
});
publicWidget.registry.dynamic_snippet = DynamicSnippet;
return DynamicSnippet;
});
|