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
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/* global Variables, updateElementAtCursor, MagentovariablePlugin, Base64 */
define([
'jquery',
'mage/backend/notification',
'mage/translate',
'wysiwygAdapter',
'uiRegistry',
'mage/apply/main',
'mageUtils',
'Magento_Variable/js/config-directive-generator',
'Magento_Variable/js/custom-directive-generator',
'Magento_Ui/js/lib/spinner',
'jquery/ui',
'prototype'
], function (jQuery, notification, $t, wysiwyg, registry, mageApply, utils, configGenerator, customGenerator, loader) {
'use strict';
window.Variables = {
textareaElementId: null,
variablesContent: null,
dialogWindow: null,
dialogWindowId: 'variables-chooser',
overlayShowEffectOptions: null,
overlayHideEffectOptions: null,
insertFunction: 'Variables.insertVariable',
selectedPlaceholder: null,
isEditMode: null,
editor: null,
/**
* Initialize Variables handler.
*
* @param {*} textareaElementId
* @param {Function} insertFunction
* @param {Object} editor
* @param {Object} selectedPlaceholder
*/
init: function (textareaElementId, insertFunction, editor, selectedPlaceholder) {
if ($(textareaElementId)) {
this.textareaElementId = textareaElementId;
}
if (insertFunction) {
this.insertFunction = insertFunction;
}
if (selectedPlaceholder) {
this.selectedPlaceholder = selectedPlaceholder;
}
if (editor) {
this.editor = editor;
}
},
/**
* Reset data.
*/
resetData: function () {
this.variablesContent = null;
this.dialogWindow = null;
},
/**
* Open variables chooser slideout.
*
* @param {Object} variables
*/
openVariableChooser: function (variables) {
if (variables) {
this.openDialogWindow(variables);
}
},
/**
* Close variables chooser slideout dialog window.
*/
closeDialogWindow: function () {
jQuery('#' + this.dialogWindowId).modal('closeModal');
},
/**
* Init ui component grid on the form
*
* @return void
*/
initUiGrid: function () {
mageApply.apply(document.getElementById(this.dialogWindow));
jQuery('#' + this.dialogWindowId).applyBindings();
loader.get('variables_modal.variables_modal.variables').hide();
},
/**
* Open slideout dialog window.
*
* @param {*} variablesContent
* @param {Object} selectedElement
*/
openDialogWindow: function (variablesContent, selectedElement) {
var html = utils.copy(variablesContent),
self = this;
jQuery('<div id="' + this.dialogWindowId + '">' + html + '</div>').modal({
title: self.isEditMode ? $t('Edit Variable') : $t('Insert Variable'),
type: 'slide',
buttons: self.getButtonsConfig(self.isEditMode),
/**
* @param {jQuery.Event} e
* @param {Object} modal
*/
closed: function (e, modal) {
modal.modal.remove();
registry.get(
'variables_modal.variables_modal.variables.variable_selector',
function (radioSelect) {
radioSelect.selectedVariableCode('');
}
);
}
});
this.selectedPlaceholder = selectedElement;
this.addNotAvailableMessage(selectedElement);
jQuery('#' + this.dialogWindowId).modal('openModal');
if (typeof selectedElement !== 'undefined') {
registry.get(
'variables_modal.variables_modal.variables.variable_selector',
function (radioSelect) {
radioSelect.selectedVariableCode(MagentovariablePlugin.getElementVariablePath(selectedElement));
}
);
}
},
/**
* Add message to slide out that variable is no longer available
*
* @param {Object} selectedElement
*/
addNotAvailableMessage: function (selectedElement) {
var name,
msg,
variablePath,
$wrapper,
lostVariableClass = 'magento-placeholder-error';
if (
this.isEditMode &&
typeof selectedElement !== 'undefined' &&
jQuery(selectedElement).hasClass(lostVariableClass)
) {
variablePath = MagentovariablePlugin.getElementVariablePath(selectedElement);
name = variablePath.split(':');
msg = $t('The variable %1 is no longer available. Select a different variable.')
.replace('%1', name[1]);
jQuery('body').notification('clear')
.notification('add', {
error: true,
message: msg,
/**
* @param {String} message
*/
insertMethod: function (message) {
$wrapper = jQuery('<div/>').html(message);
jQuery('.modal-header .page-main-actions').after($wrapper);
}
});
}
},
/**
* Get selected variable directive.
*
* @returns {*}
*/
getVariableCode: function () {
var code = registry.get('variables_modal.variables_modal.variables.variable_selector')
.selectedVariableCode(),
directive = code;
// processing switch here as content must contain only path/code without type
if (typeof code !== 'undefined') {
if (code.match('^default:')) {
directive = configGenerator.processConfig(code.replace('default:', ''));
} else if (code.match('^custom:')) {
directive = customGenerator.processConfig(code.replace('custom:', ''));
}
return directive;
}
},
/**
* Get buttons configuration for slideout dialog.
*
* @param {Boolean} isEditMode
*
* @returns {Array}
*/
getButtonsConfig: function (isEditMode) {
var self = this,
buttonsData;
buttonsData = [
{
text: $t('Cancel'),
'class': 'action-scalable cancel',
/**
* @param {jQuery.Event} event
*/
click: function (event) {
this.closeModal(event);
}
},
{
text: isEditMode ? $t('Save') : $t('Insert Variable'),
class: 'action-primary ' + (isEditMode ? '' : 'disabled'),
attr: {
'id': 'insert_variable'
},
/**
* Insert Variable
*/
click: function () {
self.insertVariable(self.getVariableCode());
}
}
];
return buttonsData;
},
/**
* Prepare variables row.
*
* @param {String} varValue
* @param {*} varLabel
* @return {String}
* @deprecated This method isn't relevant after ui changes
*/
prepareVariableRow: function (varValue, varLabel) {
var value = varValue.replace(/"/g, '"').replace(/'/g, '\\'');
return '<a href="#" onclick="' +
this.insertFunction +
'(\'' +
value +
'\');return false;">' +
varLabel +
'</a>';
},
/**
* Insert variable into WYSIWYG editor.
*
* @param {*} value
* @return {Object}
*/
insertVariable: function (value) {
var windowId = this.dialogWindowId,
textareaElm, scrollPos, wysiwygEditorFocused;
jQuery('#' + windowId).modal('closeModal');
textareaElm = $(this.textareaElementId);
//to support switching between wysiwyg editors
wysiwygEditorFocused = wysiwyg && wysiwyg.activeEditor();
if (wysiwygEditorFocused && wysiwyg.get(this.textareaElementId)) {
if (jQuery(this.selectedPlaceholder).hasClass('magento-placeholder')) {
wysiwyg.setCaretOnElement(this.selectedPlaceholder, 1);
}
wysiwyg.insertContent(value, false);
if (this.selectedPlaceholder && jQuery(this.selectedPlaceholder).hasClass('magento-placeholder')) {
this.selectedPlaceholder.remove();
}
} else if (textareaElm) {
scrollPos = textareaElm.scrollTop;
updateElementAtCursor(textareaElm, value);
textareaElm.focus();
textareaElm.scrollTop = scrollPos;
jQuery(textareaElm).change();
textareaElm = null;
}
return this;
}
};
window.MagentovariablePlugin = {
editor: null,
variables: null,
textareaId: null,
/**
* Bind editor.
*
* @param {*} editor
*/
setEditor: function (editor) {
this.editor = editor;
},
/**
* Load variables chooser.
*
* @param {String} url
* @param {*} textareaId
* @param {Object} selectedElement
*
* @return {Object}
*/
loadChooser: function (url, textareaId, selectedElement) {
this.textareaId = textareaId;
new Ajax.Request(url, {
parameters: {},
onComplete: function (transport) {
Variables.init(this.textareaId, 'MagentovariablePlugin.insertVariable', this.editor);
Variables.isEditMode = !!this.getElementVariablePath(selectedElement);
this.variablesContent = transport.responseText;
Variables.openDialogWindow(this.variablesContent, selectedElement);
Variables.initUiGrid();
}.bind(this)
});
return this;
},
/**
* Open variables chooser window.
*
* @param {*} variables
* @deprecated This method isn't relevant after ui changes
*/
openChooser: function (variables) {
Variables.openVariableChooser(variables);
},
/**
* Insert variable.
*
* @param {*} value
*
* @return {Object}
*/
insertVariable: function (value) {
if (this.textareaId) {
Variables.init(this.textareaId);
Variables.insertVariable(value);
} else {
Variables.closeDialogWindow();
Variables.insertVariable(value);
}
return this;
},
/**
* Get element variable path.
*
* @param {Object} element
* @returns {String}
*/
getElementVariablePath: function (element) {
var type, code;
if (!element || !jQuery(element).hasClass('magento-variable')) {
return '';
}
type = jQuery(element).hasClass('magento-custom-var') ? 'custom' : 'default';
code = Base64.idDecode(element.getAttribute('id'));
return type + ':' + code;
}
};
});