mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
159 lines
5.3 KiB
JavaScript
159 lines
5.3 KiB
JavaScript
define(['shell', 'dialogHelper', 'loading', 'layoutManager', 'connectionManager', 'embyRouter', 'globalize', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'emby-select', 'material-icons', 'css!./../formdialog', 'emby-button'], function (shell, dialogHelper, loading, layoutManager, connectionManager, embyRouter, globalize) {
|
|
|
|
function parentWithClass(elem, className) {
|
|
|
|
while (!elem.classList || !elem.classList.contains(className)) {
|
|
elem = elem.parentNode;
|
|
|
|
if (!elem) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return elem;
|
|
}
|
|
|
|
function getEditorHtml() {
|
|
|
|
var html = '';
|
|
|
|
html += '<div class="formDialogContent smoothScrollY" style="padding-top:2em;">';
|
|
html += '<div class="dialogContentInner dialog-content-centered">';
|
|
html += '<form style="margin:auto;">';
|
|
|
|
html += '<div class="fldSelectPlaylist selectContainer">';
|
|
html += '<select is="emby-select" id="selectMetadataRefreshMode" label="' + globalize.translate('sharedcomponents#LabelRefreshMode') + '">';
|
|
html += '<option value="missing">' + globalize.translate('sharedcomponents#SearchForMissingMetadata') + '</option>';
|
|
html += '<option value="all" selected>' + globalize.translate('sharedcomponents#ReplaceAllMetadata') + '</option>';
|
|
html += '</select>';
|
|
html += '</div>';
|
|
|
|
html += '<label class="checkboxContainer">';
|
|
html += '<input type="checkbox" is="emby-checkbox" class="chkReplaceImages" />';
|
|
html += '<span>' + globalize.translate('sharedcomponents#ReplaceExistingImages') + '</span>';
|
|
html += '</label>';
|
|
|
|
html += '<div class="fieldDescription">';
|
|
html += globalize.translate('sharedcomponents#RefreshDialogHelp');
|
|
html += '</div>';
|
|
|
|
html += '<br />';
|
|
html += '<div>';
|
|
html += '<button is="emby-button" type="submit" class="raised btnSubmit block" autofocus>' + globalize.translate('sharedcomponents#ButtonOk') + '</button>';
|
|
html += '</div>';
|
|
|
|
html += '<input type="hidden" class="fldSelectedItemIds" />';
|
|
|
|
html += '</form>';
|
|
html += '</div>';
|
|
html += '</div>';
|
|
|
|
return html;
|
|
}
|
|
|
|
function centerFocus(elem, horiz, on) {
|
|
require(['scrollHelper'], function (scrollHelper) {
|
|
var fn = on ? 'on' : 'off';
|
|
scrollHelper.centerFocus[fn](elem, horiz);
|
|
});
|
|
}
|
|
|
|
return function (options) {
|
|
|
|
var self = this;
|
|
|
|
function onSubmit(e) {
|
|
|
|
loading.show();
|
|
|
|
var dlg = parentWithClass(this, 'dialog');
|
|
|
|
var apiClient = connectionManager.getApiClient(options.serverId);
|
|
|
|
var replaceAllImages = dlg.querySelector('.chkReplaceImages').checked;
|
|
var replaceAllMetadata = dlg.querySelector('#selectMetadataRefreshMode').value == 'all';
|
|
|
|
options.itemIds.forEach(function (itemId) {
|
|
apiClient.refreshItem(itemId, {
|
|
|
|
Recursive: true,
|
|
ImageRefreshMode: 'FullRefresh',
|
|
MetadataRefreshMode: 'FullRefresh',
|
|
ReplaceAllImages: replaceAllImages,
|
|
ReplaceAllMetadata: replaceAllMetadata
|
|
});
|
|
});
|
|
|
|
dialogHelper.close(dlg);
|
|
|
|
require(['toast'], function (toast) {
|
|
toast(globalize.translate('sharedcomponents#RefreshQueued'));
|
|
});
|
|
|
|
loading.hide();
|
|
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
|
|
function initEditor(content, items) {
|
|
|
|
content.querySelector('form').addEventListener('submit', onSubmit);
|
|
}
|
|
|
|
self.show = function () {
|
|
|
|
var dialogOptions = {
|
|
removeOnClose: true,
|
|
scrollY: false
|
|
};
|
|
|
|
if (layoutManager.tv) {
|
|
dialogOptions.size = 'fullscreen';
|
|
} else {
|
|
dialogOptions.size = 'small';
|
|
}
|
|
|
|
var dlg = dialogHelper.createDialog(dialogOptions);
|
|
|
|
dlg.classList.add('formDialog');
|
|
|
|
var html = '';
|
|
var title = globalize.translate('sharedcomponents#RefreshMetadata');
|
|
|
|
html += '<div class="formDialogHeader">';
|
|
html += '<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon"></i></button>';
|
|
html += '<div class="formDialogHeaderTitle">';
|
|
html += title;
|
|
html += '</div>';
|
|
|
|
html += '</div>';
|
|
|
|
html += getEditorHtml();
|
|
|
|
dlg.innerHTML = html;
|
|
document.body.appendChild(dlg);
|
|
|
|
initEditor(dlg);
|
|
|
|
dlg.querySelector('.btnCancel').addEventListener('click', function () {
|
|
|
|
dialogHelper.close(dlg);
|
|
});
|
|
|
|
if (layoutManager.tv) {
|
|
centerFocus(dlg.querySelector('.formDialogContent'), false, true);
|
|
}
|
|
|
|
return new Promise(function (resolve, reject) {
|
|
|
|
if (layoutManager.tv) {
|
|
centerFocus(dlg.querySelector('.formDialogContent'), false, false);
|
|
}
|
|
|
|
dlg.addEventListener('close', resolve);
|
|
dialogHelper.open(dlg);
|
|
});
|
|
};
|
|
};
|
|
}); |