-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathh5peditor-form.js
456 lines (411 loc) · 14 KB
/
h5peditor-form.js
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
445
446
447
448
449
450
451
452
453
454
455
456
/* global ns */
/**
* Construct a form from library semantics.
*/
ns.Form = function (library, startLanguages, defaultLanguage) {
var self = this;
this.params = {};
this.passReadies = false;
this.commonFields = {};
this.$form = ns.$('' +
'<div class="h5peditor-form">' +
'<div class="tree"></div>' +
'<div class="common collapsed hidden">' +
'<div class="fields">' +
'<p class="desc">' +
ns.t('core', 'commonFieldsDescription') +
'</p>' +
'<div class="h5peditor-language-switcher">' +
'<label class="language-label" for="h5peditor-language-switcher">' + ns.t('core', 'language') + ':</label>' +
'<select id="h5peditor-language-switcher">' +
'<option value="-">' + ns.t('core', 'noLanguagesSupported') + '</option>' +
'</select>' +
'</div>' +
'<div class="h5peditor-language-notice">' +
'<div class="first"></div>' +
'<div class="last"></div>' +
'</div>' +
'</div>' +
'</div>' +
'</div>'
);
this.$common = this.$form.find('.common > .fields');
if (ns.FullscreenBar !== undefined) {
// Exception from rules
if (library.indexOf('H5P.CoursePresentation') === -1 &&
library.indexOf('H5P.BranchingScenario') === -1 &&
library.indexOf('H5P.InteractiveVideo') === -1) {
ns.FullscreenBar(this.$form, library);
}
}
// Add title expand/collapse button
self.$commonButton = ns.$('<div/>', {
'class': 'h5peditor-label',
'aria-expanded': 'false',
title: ns.t('core', 'expandCollapse'),
role: 'button',
tabIndex: 0,
html: '<span class="icon"></span>' + ns.t('core', 'commonFields'),
on: {
click: function () {
toggleCommonFields();
},
keypress: function (event) {
if ((event.charCode || event.keyCode) === 32) {
toggleCommonFields();
event.preventDefault();
}
}
},
prependTo: this.$common.parent()
});
// Alternate background colors
this.zebra = "odd";
// Locate the language switcher DOM element
const $switcher = this.$form.find('.h5peditor-language-switcher select');
const $notice = this.$form.find('.h5peditor-language-notice');
const loadedLibs = [];
const languages = {};
ns.defaultLanguage = ns.contentLanguage;
if (defaultLanguage) {
ns.defaultLanguage = defaultLanguage;
}
/**
* Toggle common fields group visibility
*/
const toggleCommonFields = function () {
const expandedValue = self.$common.parent().hasClass('collapsed')
? 'true' : 'false';
self.$commonButton.attr('aria-expanded', expandedValue);
self.$common.parent().toggleClass('collapsed');
};
/**
* Create options DOM elements
*
* @private
* @return {string}
*/
const createOptions = function () {
let options = '';
for (let code in languages) {
let label = ns.supportedLanguages[code] ? ns.supportedLanguages[code] : code.toLocaleUpperCase();
options += '<option value="' + code + '"' + (code === ns.defaultLanguage ? ' selected' : '') + '>' + label + '</option>';
}
return options;
};
/**
* Figure out if all loaded libraries supports the chosen language code
*
* @private
* @param {string} code
* @return {boolean}
*/
const isSupportedByAll = function (code) {
return (languages[code].length === loadedLibs.length);
};
/**
* This function does something different than the other functions.
*
* @private
* @param {string} lang Global value not used to avoid it changing while loading
*/
const updateCommonFields = function (lang) {
const libs = languages[lang];
for (let lib in ns.libraryCache) {
// Update common fields
if (ns.renderableCommonFields[lib] && ns.renderableCommonFields[lib].fields) {
for (let j = 0; j < ns.renderableCommonFields[lib].fields.length; j++) {
const field = ns.renderableCommonFields[lib].fields[j];
// Determine translation to use
const translation = ns.libraryCache[lib].translation[lang];
if (field.instance === undefined || translation === undefined) {
continue; // Skip
}
// Find the correct translation for the field
const fieldTranslation = findFieldDefaultTranslation(field.field, ns.libraryCache[lib].semantics, translation);
// Extract the default values from the translation
const defaultValue = getDefaultValue(fieldTranslation, field.field);
// Update the widget
field.instance.forceValue(defaultValue);
}
}
if (ns.libraryCache[lib].translation[lang] !== undefined) {
// Update semantics, so that the next time something is inserted it will get the same language
ns.updateCommonFieldsDefault(ns.libraryCache[lib].semantics, ns.libraryCache[lib].translation[lang]);
}
}
};
/**
* Recursivly search for the field's translations
*
* @private
* @param {Object} field The field we're looking for
* @param {Array} semantics The fields tree to search amongst
* @param {Array} translation The translation tree to search and return from
* @return {Object} The translation if found
*/
const findFieldDefaultTranslation = function (field, semantics, translation) {
for (let i = 0; i < semantics.length; i++) {
if (semantics[i] === field) {
return translation[i];
}
if (semantics[i].fields !== undefined && semantics[i].fields.length &&
translation[i].fields !== undefined && translation[i].fields.length) {
const found1 = findFieldDefaultTranslation(field, semantics[i].fields, translation[i].fields);
if (found1 !== undefined) {
return found1;
}
}
if (semantics[i].field !== undefined && translation[i].field !== undefined) {
const found2 = findFieldDefaultTranslation(field, [semantics[i].field], [translation[i].field]);
if (found2 !== undefined) {
return found2;
}
}
}
};
/**
* Recursivly format a default value for a field.
*
* @private
* @param {Object} translation The translation field to extract the default values from
* @param {Object} field Needed for field naming
* @return {Object} The default value
*/
const getDefaultValue = function (translation, field) {
if (translation.default !== undefined) {
return translation.default;
}
if (translation.fields !== undefined && translation.fields.length) {
if (translation.fields.length === 1) {
return getDefaultValue(translation.fields[0], field.fields[0]);
}
const values = {};
for (let i = 0; i < translation.fields.length; i++) {
values[field.fields[i].name] = getDefaultValue(translation.fields[i], field.fields[i]);
}
return values;
}
if (translation.field !== undefined) {
return getDefaultValue(translation.field, field.field);
}
};
/**
* Prepares and loads all the missing translations from the server.
*
* @param {string} lang Global value not used to avoid it changing while loading
* @param {function} done Callback
*/
const loadTranslations = function (lang, done) {
// Figure out what we actually need to load
const loadLibs = [];
for (let li in ns.libraryCache) {
if (ns.libraryCache[li] === 0 || ns.libraryCache[li].translation[lang] === undefined) {
loadLibs.push(li);
}
}
if (loadLibs.length) {
ns.$.post(
ns.getAjaxUrl('translations', { language: lang }),
{ libraries: loadLibs },
function (res) {
for (let lib in res.data) {
ns.libraryCache[lib].translation[lang] = JSON.parse(res.data[lib]).semantics;
}
done();
}
);
}
else {
done(); // Continue without loading anything
}
}
/**
* Add new languages for content type.
*
* @param {string} lib uberName
* @param {Array} langs
*/
self.addLanguages = function (lib, langs) {
// Update language counters
for (let i = 0; i < langs.length; i++) {
const code = langs[i];
if (languages[code] === undefined) {
languages[code] = [lib];
}
else {
languages[code].push(lib);
}
}
loadedLibs.push(lib);
// Update
$switcher.html(createOptions());
};
/**
* Remove languages for content type.
*
* @param {string} lib uberName
* @param {Array} langs
*/
self.removeLanguages = function (lib, langs) {
// Update language counters
for (let i = 0; i < langs.length; i++) {
const code = langs[i];
if (languages[code] !== undefined) {
if (languages[code].length === 1) {
delete languages[code];
}
else {
languages[code].splice(languages[code].indexOf(lib), 1);
}
}
}
loadedLibs.splice(loadedLibs.indexOf(lib), 1);
// Update
$switcher.html(createOptions());
};
// Handle switching language and loading new translations
$switcher.change(function (e) {
// Create confirmation dialog
const confirmDialog = new H5P.ConfirmationDialog({
headerText: ns.t('core', 'changeLanguage', {':language': (ns.supportedLanguages[this.value] ? ns.supportedLanguages[this.value] : this.value.toLocaleUpperCase())}),
dialogText: ns.t('core', 'thisWillPotentially'),
}).appendTo(document.body);
confirmDialog.on('confirmed', function () {
const lang = ns.defaultLanguage = $switcher.val();
const humanLang = (ns.supportedLanguages[lang] ? ns.supportedLanguages[lang] : lang.toLocaleUpperCase());
// Update chosen default language for main content and sub-content
self.metadata.defaultLanguage = lang;
self.params = self.setSubContentDefaultLanguage(self.params, lang);
// Figure out if all libraries were supported
if (!isSupportedByAll(lang)) {
// Show a warning message
$notice.children('.first').html(ns.t('core', 'notAllTextsChanged', {':language': humanLang}));
$notice.children('.last').html(ns.t('core', 'contributeTranslations', {':language': humanLang, ':url': 'https://h5p.org/contributing#translating'}));
$notice.addClass('show');
}
else {
// Hide a warning message
$notice.removeClass('show');
}
$switcher.prop('disabled', 'disabled');
loadTranslations(lang, function () {
// Do the actualy update of the field values
updateCommonFields(lang);
$switcher.prop('disabled', false);
});
});
confirmDialog.on('canceled', function () {
$switcher.val(ns.defaultLanguage);
});
// Show
confirmDialog.show($switcher.offset().top);
});
// Add initial langauges for content type
self.addLanguages(library, startLanguages);
};
/**
* Recursively traverse params and sets default language for each sub-content
*
* @param {Object|Array} params Parameters
* @param {string} lang Default language that will be set
*
* @return {Object|Array} Parameters with default language set for sub-content
*/
ns.Form.prototype.setSubContentDefaultLanguage = function (params, lang) {
if (!params) {
return params;
}
const self = this;
if (Array.isArray(params)) {
for (let i; i < params.length; i++) {
params[i] = self.setSubContentDefaultLanguage(params[i], lang);
}
}
else if (typeof params === 'object') {
if (params.metadata) {
params.metadata.defaultLanguage = lang;
}
for (let parameter in params) {
if (!params.hasOwnProperty(parameter)) {
continue;
}
params[parameter] = this.setSubContentDefaultLanguage(
params[parameter],
lang
);
}
}
return params;
};
/**
* Replace the given element with our form.
*
* @param {jQuery} $element
* @returns {undefined}
*/
ns.Form.prototype.replace = function ($element) {
$element.replaceWith(this.$form);
this.offset = this.$form.offset();
// Prevent inputs and selects in an h5peditor form from submitting the main
// framework form.
this.$form.on('keydown', 'input,select', function (event) {
if (event.keyCode === 13) {
// Prevent enter key from submitting form.
return false;
}
});
};
/**
* Remove the current form.
*/
ns.Form.prototype.remove = function () {
ns.removeChildren(this.metadataForm.children);
ns.removeChildren(this.children);
ns.renderableCommonFields = {}; // Reset all common fields
this.$form.remove();
};
/**
* Wrapper for processing the semantics.
*
* @param {Array} semantics
* @param {Object} defaultParams
* @returns {undefined}
*/
ns.Form.prototype.processSemantics = function (semantics, defaultParams, metadata) {
this.metadata = (metadata ? metadata : defaultParams.metadata || {});
// Set language initially used
if (!this.metadata.defaultLanguage) {
this.metadata.defaultLanguage = ns.defaultLanguage;
}
if (ns.enableMetadata(this.currentLibrary)) {
this.metadataForm = new ns.MetadataForm(this, this.metadata, this.$form.children('.tree'), true);
}
else {
this.metadataForm = H5PEditor.MetadataForm.createLegacyForm(this.metadata, this.$form.children('.tree'));
// This fixes CSS overrides done by some old custom editors
switch (this.currentLibrary.split(' ')[0]) {
case 'H5P.InteractiveVideo':
case 'H5P.DragQuestion':
case 'H5P.ImageHotspotQuestion':
this.metadataForm.getExtraTitleField().$item.css('padding', '20px 20px 0 20px');
break;
case 'H5P.CoursePresentation':
this.metadataForm.getExtraTitleField().$item.css('padding-bottom', '1em');
break;
}
}
// Overriding this.params with {} will lead to old content not being editable for now
this.params = (defaultParams.params ? defaultParams.params : defaultParams);
// Create real children
ns.processSemanticsChunk(semantics, this.params, this.$form.children('.tree'), this);
};
/**
* Collect functions to execute once the tree is complete.
*
* @param {function} ready
* @returns {undefined}
*/
ns.Form.prototype.ready = function (ready) {
this.readies.push(ready);
};