mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
113 lines
4 KiB
JavaScript
113 lines
4 KiB
JavaScript
/* eslint-disable indent */
|
|
|
|
/**
|
|
* Module for image Options Editor.
|
|
* @module components/imageOptionsEditor/imageOptionsEditor
|
|
*/
|
|
|
|
import globalize from '../../scripts/globalize';
|
|
import dom from '../../scripts/dom';
|
|
import dialogHelper from '../dialogHelper/dialogHelper';
|
|
import '../../elements/emby-checkbox/emby-checkbox';
|
|
import '../../elements/emby-select/emby-select';
|
|
import '../../elements/emby-input/emby-input';
|
|
import template from './imageOptionsEditor.template.html';
|
|
|
|
function getDefaultImageConfig(itemType, type) {
|
|
return {
|
|
Type: type,
|
|
MinWidth: 0,
|
|
Limit: type === 'Primary' ? 1 : 0
|
|
};
|
|
}
|
|
|
|
function findImageOptions(imageOptions, type) {
|
|
return imageOptions.filter(i => {
|
|
return i.Type == type;
|
|
})[0];
|
|
}
|
|
|
|
function getImageConfig(options, availableOptions, imageType, itemType) {
|
|
return findImageOptions(options.ImageOptions || [], imageType) || findImageOptions(availableOptions.DefaultImageOptions || [], imageType) || getDefaultImageConfig(itemType, imageType);
|
|
}
|
|
|
|
function setVisibilityOfBackdrops(elem, visible) {
|
|
if (visible) {
|
|
elem.classList.remove('hide');
|
|
elem.querySelector('input').setAttribute('required', 'required');
|
|
} else {
|
|
elem.classList.add('hide');
|
|
elem.querySelector('input').setAttribute('required', '');
|
|
elem.querySelector('input').removeAttribute('required');
|
|
}
|
|
}
|
|
|
|
function loadValues(context, itemType, options, availableOptions) {
|
|
const supportedImageTypes = availableOptions.SupportedImageTypes || [];
|
|
setVisibilityOfBackdrops(context.querySelector('.backdropFields'), supportedImageTypes.includes('Backdrop'));
|
|
Array.prototype.forEach.call(context.querySelectorAll('.imageType'), i => {
|
|
const imageType = i.getAttribute('data-imagetype');
|
|
const container = dom.parentWithTag(i, 'LABEL');
|
|
|
|
if (!supportedImageTypes.includes(imageType)) {
|
|
container.classList.add('hide');
|
|
} else {
|
|
container.classList.remove('hide');
|
|
}
|
|
|
|
if (getImageConfig(options, availableOptions, imageType, itemType).Limit) {
|
|
i.checked = true;
|
|
} else {
|
|
i.checked = false;
|
|
}
|
|
});
|
|
const backdropConfig = getImageConfig(options, availableOptions, 'Backdrop', itemType);
|
|
context.querySelector('#txtMaxBackdrops').value = backdropConfig.Limit;
|
|
context.querySelector('#txtMinBackdropDownloadWidth').value = backdropConfig.MinWidth;
|
|
}
|
|
|
|
function saveValues(context, options) {
|
|
options.ImageOptions = Array.prototype.map.call(context.querySelectorAll('.imageType:not(.hide)'), c => {
|
|
return {
|
|
Type: c.getAttribute('data-imagetype'),
|
|
Limit: c.checked ? 1 : 0,
|
|
MinWidth: 0
|
|
};
|
|
});
|
|
options.ImageOptions.push({
|
|
Type: 'Backdrop',
|
|
Limit: context.querySelector('#txtMaxBackdrops').value,
|
|
MinWidth: context.querySelector('#txtMinBackdropDownloadWidth').value
|
|
});
|
|
}
|
|
|
|
function showEditor(itemType, options, availableOptions) {
|
|
const dlg = dialogHelper.createDialog({
|
|
size: 'small',
|
|
removeOnClose: true,
|
|
scrollY: false
|
|
});
|
|
dlg.classList.add('formDialog');
|
|
dlg.innerHTML = globalize.translateHtml(template);
|
|
dlg.addEventListener('close', function () {
|
|
saveValues(dlg, options);
|
|
});
|
|
loadValues(dlg, itemType, options, availableOptions);
|
|
dialogHelper.open(dlg).then(() => {
|
|
return;
|
|
}).catch(() => {
|
|
return;
|
|
});
|
|
dlg.querySelector('.btnCancel').addEventListener('click', function () {
|
|
dialogHelper.close(dlg);
|
|
});
|
|
}
|
|
|
|
export class editor {
|
|
constructor() {
|
|
this.show = showEditor;
|
|
}
|
|
}
|
|
|
|
/* eslint-enable indent */
|
|
export default editor;
|