mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
wizardstart.js
This commit is contained in:
parent
c94e970ac0
commit
e192f1f3c6
1 changed files with 33 additions and 26 deletions
|
@ -1,41 +1,48 @@
|
|||
define(["jQuery", "loading", "emby-button", "emby-select"], function($, loading) {
|
||||
define(["jQuery", "loading", "emby-button", "emby-select"], function ($, loading) {
|
||||
"use strict";
|
||||
|
||||
function loadPage(page, config, languageOptions) {
|
||||
$("#selectLocalizationLanguage", page).html(languageOptions.map(function(l) {
|
||||
return '<option value="' + l.Value + '">' + l.Name + "</option>"
|
||||
})).val(config.UICulture), loading.hide()
|
||||
$("#selectLocalizationLanguage", page).html(languageOptions.map(function (l) {
|
||||
return '<option value="' + l.Value + '">' + l.Name + "</option>";
|
||||
})).val(config.UICulture);
|
||||
loading.hide();
|
||||
}
|
||||
|
||||
function save(page) {
|
||||
loading.show();
|
||||
var apiClient = ApiClient;
|
||||
apiClient.getJSON(apiClient.getUrl("Startup/Configuration")).then(function(config) {
|
||||
config.UICulture = $("#selectLocalizationLanguage", page).val(), apiClient.ajax({
|
||||
apiClient.getJSON(apiClient.getUrl("Startup/Configuration")).then(function (config) {
|
||||
config.UICulture = $("#selectLocalizationLanguage", page).val();
|
||||
apiClient.ajax({
|
||||
type: "POST",
|
||||
data: config,
|
||||
url: apiClient.getUrl("Startup/Configuration")
|
||||
}).then(function() {
|
||||
Dashboard.navigate("wizarduser.html")
|
||||
})
|
||||
})
|
||||
}).then(function () {
|
||||
Dashboard.navigate("wizarduser.html");
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function onSubmit() {
|
||||
return save($(this).parents(".page")), !1
|
||||
save($(this).parents(".page"));
|
||||
return false;
|
||||
}
|
||||
return function(view, params) {
|
||||
$(".wizardStartForm", view).on("submit", onSubmit), view.addEventListener("viewshow", function() {
|
||||
document.querySelector(".skinHeader").classList.add("noHomeButtonHeader"), loading.show();
|
||||
var page = this,
|
||||
apiClient = ApiClient,
|
||||
promise1 = apiClient.getJSON(apiClient.getUrl("Startup/Configuration")),
|
||||
promise2 = apiClient.getJSON(apiClient.getUrl("Localization/Options"));
|
||||
Promise.all([promise1, promise2]).then(function(responses) {
|
||||
loadPage(page, responses[0], responses[1])
|
||||
})
|
||||
}), view.addEventListener("viewhide", function() {
|
||||
document.querySelector(".skinHeader").classList.remove("noHomeButtonHeader")
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
return function (view, params) {
|
||||
$(".wizardStartForm", view).on("submit", onSubmit);
|
||||
view.addEventListener("viewshow", function () {
|
||||
document.querySelector(".skinHeader").classList.add("noHomeButtonHeader");
|
||||
loading.show();
|
||||
var page = this;
|
||||
var apiClient = ApiClient;
|
||||
var promise1 = apiClient.getJSON(apiClient.getUrl("Startup/Configuration"));
|
||||
var promise2 = apiClient.getJSON(apiClient.getUrl("Localization/Options"));
|
||||
Promise.all([promise1, promise2]).then(function (responses) {
|
||||
loadPage(page, responses[0], responses[1]);
|
||||
});
|
||||
});
|
||||
view.addEventListener("viewhide", function () {
|
||||
document.querySelector(".skinHeader").classList.remove("noHomeButtonHeader");
|
||||
});
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue