Current File : /home/pacjaorg/public_html/sceju/wp-content/plugins/h5p/admin/scripts/h5p-editor.js |
var ns = H5PEditor;
(function ($) {
H5PEditor.init = function () {
H5PEditor.$ = H5P.jQuery;
H5PEditor.basePath = H5PIntegration.editor.libraryUrl;
H5PEditor.fileIcon = H5PIntegration.editor.fileIcon;
H5PEditor.ajaxPath = H5PIntegration.editor.ajaxPath;
H5PEditor.filesPath = H5PIntegration.editor.filesPath;
H5PEditor.apiVersion = H5PIntegration.editor.apiVersion;
H5PEditor.contentLanguage = H5PIntegration.editor.language;
// Semantics describing what copyright information can be stored for media.
H5PEditor.copyrightSemantics = H5PIntegration.editor.copyrightSemantics;
H5PEditor.metadataSemantics = H5PIntegration.editor.metadataSemantics;
// Required styles and scripts for the editor
H5PEditor.assets = H5PIntegration.editor.assets;
// Required for assets
H5PEditor.baseUrl = '';
if (H5PIntegration.editor.nodeVersionId !== undefined) {
H5PEditor.contentId = H5PIntegration.editor.nodeVersionId;
}
var h5peditor;
var $type = $('input[name="action"]');
var $upload = $('.h5p-upload');
var $create = $('.h5p-create').hide();
var $editor = $('.h5p-editor');
var $library = $('input[name="library"]');
var $params = $('input[name="parameters"]');
var library = $library.val();
$type.change(function () {
if ($type.filter(':checked').val() === 'upload') {
$create.hide();
$upload.show();
}
else {
$upload.hide();
if (h5peditor === undefined) {
h5peditor = new ns.Editor(library, $params.val(), $editor[0]);
}
$create.show();
}
});
if ($type.filter(':checked').val() === 'upload') {
$type.change();
}
else {
$type.filter('input[value="create"]').attr('checked', true).change();
}
let formIsUpdated = false;
const $form = $('#h5p-content-form').submit(function (event) {
if ($type.length && $type.filter(':checked').val() === 'upload') {
return; // Old file upload
}
if (h5peditor !== undefined && !formIsUpdated) {
// Get content from editor
h5peditor.getContent(function (content) {
// Set main library
$library.val(content.library);
// Set params
$params.val(content.params);
// Submit form data
formIsUpdated = true;
$form.submit();
});
// Stop default submit
event.preventDefault();
}
});
// Title label
var $title = $('#h5p-content-form #title');
var $label = $title.prev();
$title.focus(function () {
$label.addClass('screen-reader-text');
}).blur(function () {
if ($title.val() === '') {
$label.removeClass('screen-reader-text');
}
}).focus();
// Delete confirm
$('.submitdelete').click(function () {
return confirm(H5PIntegration.editor.deleteMessage);
});
};
H5PEditor.getAjaxUrl = function (action, parameters) {
var url = H5PIntegration.editor.ajaxPath + action;
if (parameters !== undefined) {
for (var property in parameters) {
if (parameters.hasOwnProperty(property)) {
url += '&' + property + '=' + parameters[property];
}
}
}
return url;
};
$(document).ready(H5PEditor.init);
})(H5P.jQuery);