mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
update to new confirm pattern
This commit is contained in:
parent
a42596f118
commit
166a16b60d
@ -119,17 +119,18 @@
|
|||||||
var type = this.getAttribute('data-imagetype');
|
var type = this.getAttribute('data-imagetype');
|
||||||
var index = this.getAttribute('data-index');
|
var index = this.getAttribute('data-index');
|
||||||
index = index == "null" ? null : parseInt(index);
|
index = index == "null" ? null : parseInt(index);
|
||||||
Dashboard.confirm(Globalize.translate('DeleteImageConfirmation'), Globalize.translate('HeaderDeleteImage'), function (result) {
|
|
||||||
|
|
||||||
if (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
|
confirm(Globalize.translate('DeleteImageConfirmation'), Globalize.translate('HeaderDeleteImage')).then(function () {
|
||||||
|
|
||||||
ApiClient.deleteItemImage(currentItem.Id, type, index).then(function () {
|
ApiClient.deleteItemImage(currentItem.Id, type, index).then(function () {
|
||||||
|
|
||||||
hasChanges = true;
|
hasChanges = true;
|
||||||
reload(page);
|
reload(page);
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -30,9 +30,9 @@
|
|||||||
|
|
||||||
var location = virtualFolder.Locations[index];
|
var location = virtualFolder.Locations[index];
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmRemoveMediaLocation'), Globalize.translate('HeaderRemoveMediaLocation'), function (confirmResult) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (confirmResult) {
|
confirm(Globalize.translate('MessageConfirmRemoveMediaLocation'), Globalize.translate('HeaderRemoveMediaLocation')).then(function () {
|
||||||
|
|
||||||
var refreshAfterChange = currentOptions.refresh;
|
var refreshAfterChange = currentOptions.refresh;
|
||||||
|
|
||||||
@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
Dashboard.alert(Globalize.translate('DefaultErrorMessage'));
|
Dashboard.alert(Globalize.translate('DefaultErrorMessage'));
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,9 +64,9 @@
|
|||||||
|
|
||||||
var msg = Globalize.translate('MessageAreYouSureDeleteSubtitles');
|
var msg = Globalize.translate('MessageAreYouSureDeleteSubtitles');
|
||||||
|
|
||||||
Dashboard.confirm(msg, Globalize.translate('HeaderConfirmDeletion'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (result) {
|
confirm(msg, Globalize.translate('HeaderConfirmDeletion')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -82,8 +82,7 @@
|
|||||||
|
|
||||||
reload(page, itemId);
|
reload(page, itemId);
|
||||||
});
|
});
|
||||||
|
});
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,9 +32,9 @@
|
|||||||
|
|
||||||
var message = Globalize.translate('MessageFileWillBeDeleted') + '<p style="word-wrap:break-word;">' + item.OriginalPath + '</p><p>' + Globalize.translate('MessageSureYouWishToProceed') + '</p>';
|
var message = Globalize.translate('MessageFileWillBeDeleted') + '<p style="word-wrap:break-word;">' + item.OriginalPath + '</p><p>' + Globalize.translate('MessageSureYouWishToProceed') + '</p>';
|
||||||
|
|
||||||
Dashboard.confirm(message, Globalize.translate('HeaderDeleteFile'), function (confirmResult) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (confirmResult) {
|
confirm(message, Globalize.translate('HeaderDeleteFile')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -45,8 +45,7 @@
|
|||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
|
|
||||||
}, onApiFailure);
|
}, onApiFailure);
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,9 +90,9 @@
|
|||||||
|
|
||||||
message += '<p>' + Globalize.translate('MessageSureYouWishToProceed') + '</p>';
|
message += '<p>' + Globalize.translate('MessageSureYouWishToProceed') + '</p>';
|
||||||
|
|
||||||
Dashboard.confirm(message, Globalize.translate('HeaderOrganizeFile'), function (confirmResult) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (confirmResult) {
|
confirm(message, Globalize.translate('HeaderOrganizeFile')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -104,7 +103,7 @@
|
|||||||
reloadItems(page);
|
reloadItems(page);
|
||||||
|
|
||||||
}, onApiFailure);
|
}, onApiFailure);
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -971,27 +971,27 @@
|
|||||||
|
|
||||||
restart: function () {
|
restart: function () {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmRestart'), Globalize.translate('HeaderRestart'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
|
confirm(Globalize.translate('MessageConfirmRestart'), Globalize.translate('HeaderRestart')).then(function () {
|
||||||
|
|
||||||
if (result) {
|
|
||||||
$('#btnRestartServer').buttonEnabled(false);
|
$('#btnRestartServer').buttonEnabled(false);
|
||||||
$('#btnShutdown').buttonEnabled(false);
|
$('#btnShutdown').buttonEnabled(false);
|
||||||
Dashboard.restartServer();
|
Dashboard.restartServer();
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
shutdown: function () {
|
shutdown: function () {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmShutdown'), Globalize.translate('HeaderShutdown'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
|
confirm(Globalize.translate('MessageConfirmShutdown'), Globalize.translate('HeaderShutdown')).then(function () {
|
||||||
|
|
||||||
if (result) {
|
|
||||||
$('#btnRestartServer').buttonEnabled(false);
|
$('#btnRestartServer').buttonEnabled(false);
|
||||||
$('#btnShutdown').buttonEnabled(false);
|
$('#btnShutdown').buttonEnabled(false);
|
||||||
ApiClient.shutdownServer();
|
ApiClient.shutdownServer();
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1886,9 +1886,9 @@
|
|||||||
|
|
||||||
var id = getParameterByName('id');
|
var id = getParameterByName('id');
|
||||||
|
|
||||||
Dashboard.confirm("Are you sure you wish to split the media sources into separate items?", "Split Media Apart", function (confirmResult) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (confirmResult) {
|
confirm("Are you sure you wish to split the media sources into separate items?", "Split Media Apart").then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -1902,7 +1902,7 @@
|
|||||||
|
|
||||||
reload(page);
|
reload(page);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1951,9 +1951,9 @@
|
|||||||
|
|
||||||
function deleteTimer(page, id) {
|
function deleteTimer(page, id) {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (result) {
|
confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -1963,8 +1963,7 @@
|
|||||||
|
|
||||||
reload(page);
|
reload(page);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
|
|
||||||
function remove(page, index) {
|
function remove(page, index) {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmPathSubstitutionDeletion'), Globalize.translate('HeaderConfirmDeletion'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (result) {
|
confirm(Globalize.translate('MessageConfirmPathSubstitutionDeletion'), Globalize.translate('HeaderConfirmDeletion')).then(function () {
|
||||||
|
|
||||||
ApiClient.getServerConfiguration().then(function (config) {
|
ApiClient.getServerConfiguration().then(function (config) {
|
||||||
|
|
||||||
@ -17,11 +17,8 @@
|
|||||||
reload(page);
|
reload(page);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSubstitution(page, config) {
|
function addSubstitution(page, config) {
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
|
|
||||||
function deleteTimer(page, id) {
|
function deleteTimer(page, id) {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (result) {
|
confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -17,8 +17,7 @@
|
|||||||
|
|
||||||
reload(page);
|
reload(page);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
function deleteSeriesTimer(page, id) {
|
function deleteSeriesTimer(page, id) {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmSeriesCancellation'), Globalize.translate('HeaderConfirmSeriesCancellation'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (result) {
|
confirm(Globalize.translate('MessageConfirmSeriesCancellation'), Globalize.translate('HeaderConfirmSeriesCancellation')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -20,8 +20,7 @@
|
|||||||
|
|
||||||
reload(page);
|
reload(page);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
|
|
||||||
function deleteTimer(page, id) {
|
function deleteTimer(page, id) {
|
||||||
|
|
||||||
Dashboard.confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation'), function (result) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (result) {
|
confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation')).then(function () {
|
||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
@ -16,8 +16,7 @@
|
|||||||
|
|
||||||
Dashboard.navigate('livetv.html');
|
Dashboard.navigate('livetv.html');
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,17 +53,16 @@
|
|||||||
msg += virtualFolder.Locations.join("<br/>");
|
msg += virtualFolder.Locations.join("<br/>");
|
||||||
}
|
}
|
||||||
|
|
||||||
Dashboard.confirm(msg, Globalize.translate('HeaderRemoveMediaFolder'), function (confirmResult) {
|
require(['confirm'], function (confirm) {
|
||||||
|
|
||||||
if (confirmResult) {
|
confirm(msg, Globalize.translate('HeaderRemoveMediaFolder')).then(function () {
|
||||||
|
|
||||||
var refreshAfterChange = shouldRefreshLibraryAfterChanges(page);
|
var refreshAfterChange = shouldRefreshLibraryAfterChanges(page);
|
||||||
|
|
||||||
ApiClient.removeVirtualFolder(virtualFolder.Name, refreshAfterChange).then(function () {
|
ApiClient.removeVirtualFolder(virtualFolder.Name, refreshAfterChange).then(function () {
|
||||||
reloadLibrary(page);
|
reloadLibrary(page);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user