mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
81 lines
1.8 KiB
JavaScript
81 lines
1.8 KiB
JavaScript
(function ($, document, window) {
|
|
|
|
function getApiClient() {
|
|
return ApiClient;
|
|
}
|
|
|
|
function onUpdateUserComplete(result) {
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
|
|
if (result.UserLinkResult) {
|
|
|
|
var msgKey = result.UserLinkResult.IsPending ? 'MessagePendingEmbyAccountAdded' : 'MessageEmbyAccountAdded';
|
|
|
|
Dashboard.alert({
|
|
message: Globalize.translate(msgKey),
|
|
title: Globalize.translate('HeaderEmbyAccountAdded'),
|
|
|
|
callback: function () {
|
|
Dashboard.navigate('wizardlibrary.html');
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
Dashboard.navigate('wizardlibrary.html');
|
|
}
|
|
}
|
|
|
|
function submit(form) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var apiClient = getApiClient();
|
|
|
|
apiClient.ajax({
|
|
|
|
type: 'POST',
|
|
data: {
|
|
|
|
Name: $('#txtUsername', form).val(),
|
|
ConnectUserName: $('#txtConnectUserName', form).val()
|
|
|
|
},
|
|
url: apiClient.getUrl('Startup/User'),
|
|
dataType: 'json'
|
|
|
|
}).done(onUpdateUserComplete);
|
|
}
|
|
|
|
function onSubmit() {
|
|
var form = this;
|
|
|
|
submit(form);
|
|
|
|
return false;
|
|
}
|
|
|
|
$(document).on('pageinitdepends', "#wizardUserPage", function () {
|
|
|
|
$('.wizardUserForm').off('submit', onSubmit).on('submit', onSubmit);
|
|
|
|
}).on('pageshowready', "#wizardUserPage", function () {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
var page = this;
|
|
|
|
var apiClient = getApiClient();
|
|
|
|
apiClient.getJSON(apiClient.getUrl('Startup/User')).done(function (user) {
|
|
|
|
$('#txtUsername', page).val(user.Name);
|
|
$('#txtConnectUserName', page).val(user.ConnectUserName);
|
|
|
|
Dashboard.hideLoadingMsg();
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery, document, window); |