mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
74 lines
1.7 KiB
JavaScript
74 lines
1.7 KiB
JavaScript
import { appRouter } from '../router/appRouter';
|
|
import browser from '../../scripts/browser';
|
|
import dialog from '../dialog/dialog';
|
|
import globalize from '../../scripts/globalize';
|
|
|
|
function useNativeConfirm() {
|
|
// webOS seems to block modals
|
|
// Tizen 2.x seems to block modals
|
|
return !browser.web0s
|
|
&& !(browser.tizenVersion && browser.tizenVersion < 3)
|
|
&& browser.tv
|
|
&& window.confirm;
|
|
}
|
|
|
|
async function nativeConfirm(options) {
|
|
if (typeof options === 'string') {
|
|
options = {
|
|
title: '',
|
|
text: options
|
|
};
|
|
}
|
|
|
|
const text = (options.text || '').replaceAll('<br/>', '\n');
|
|
await appRouter.ready();
|
|
const result = window.confirm(text);
|
|
|
|
if (result) {
|
|
return Promise.resolve();
|
|
} else {
|
|
return Promise.reject();
|
|
}
|
|
}
|
|
|
|
async function customConfirm(text, title) {
|
|
let options;
|
|
if (typeof text === 'string') {
|
|
options = {
|
|
title: title,
|
|
text: text
|
|
};
|
|
} else {
|
|
options = text;
|
|
}
|
|
|
|
const items = [];
|
|
|
|
items.push({
|
|
name: options.cancelText || globalize.translate('ButtonCancel'),
|
|
id: 'cancel',
|
|
type: 'cancel'
|
|
});
|
|
|
|
items.push({
|
|
name: options.confirmText || globalize.translate('ButtonOk'),
|
|
id: 'ok',
|
|
type: options.primary === 'delete' ? 'delete' : 'submit'
|
|
});
|
|
|
|
options.buttons = items;
|
|
|
|
await appRouter.ready();
|
|
|
|
return dialog.show(options).then(result => {
|
|
if (result === 'ok') {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
return Promise.reject();
|
|
});
|
|
}
|
|
|
|
const confirm = useNativeConfirm() ? nativeConfirm : customConfirm;
|
|
|
|
export default confirm;
|