jellyfin-web/dashboard-ui/scripts/wizarduserpage.js

85 lines
1.8 KiB
JavaScript
Raw Normal View History

(function ($, document, window) {
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
function getApiClient() {
return ApiClient;
2014-10-19 20:04:45 -07:00
}
2014-11-14 19:31:03 -07:00
function onUpdateUserComplete(result) {
2014-09-08 18:15:31 -07:00
Dashboard.hideLoadingMsg();
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
if (result.UserLinkResult) {
2014-09-08 18:15:31 -07:00
2015-03-21 11:12:12 -07:00
var msgKey = result.UserLinkResult.IsPending ? 'MessagePendingEmbyAccountAdded' : 'MessageEmbyAccountAdded';
2014-09-08 18:15:31 -07:00
2014-11-14 19:31:03 -07:00
Dashboard.alert({
message: Globalize.translate(msgKey),
2015-03-21 11:12:12 -07:00
title: Globalize.translate('HeaderEmbyAccountAdded'),
2014-09-08 18:15:31 -07:00
2014-11-14 19:31:03 -07:00
callback: function () {
Dashboard.navigate('wizardlibrary.html');
}
2014-10-19 20:04:45 -07:00
2014-11-14 19:31:03 -07:00
});
2014-10-19 20:04:45 -07:00
2014-11-14 19:31:03 -07:00
} else {
2014-10-19 20:04:45 -07:00
Dashboard.navigate('wizardlibrary.html');
2014-11-14 19:31:03 -07:00
}
}
2013-02-20 18:33:05 -07:00
2014-10-19 20:04:45 -07:00
function submit(form) {
2013-02-20 18:33:05 -07:00
2014-10-19 20:04:45 -07:00
Dashboard.showLoadingMsg();
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
var apiClient = getApiClient();
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
apiClient.ajax({
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
type: 'POST',
data: {
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
Name: $('#txtUsername', form).val(),
ConnectUserName: $('#txtConnectUserName', form).val()
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
},
url: apiClient.getUrl('Startup/User'),
dataType: 'json'
2013-02-20 18:33:05 -07:00
2014-11-14 19:31:03 -07:00
}).done(onUpdateUserComplete);
2014-10-19 20:04:45 -07:00
}
2013-02-20 18:33:05 -07:00
2014-10-19 20:04:45 -07:00
function wizardUserPage() {
2013-02-20 18:33:05 -07:00
2014-10-19 20:04:45 -07:00
var self = this;
self.onSubmit = function () {
var form = this;
submit(form);
2013-02-20 18:33:05 -07:00
return false;
};
2013-02-20 18:33:05 -07:00
}
$(document).on('pageshow', "#wizardUserPage", function () {
Dashboard.showLoadingMsg();
var page = this;
2014-11-14 19:31:03 -07:00
var apiClient = getApiClient();
2014-11-14 19:31:03 -07:00
apiClient.getJSON(apiClient.getUrl('Startup/User')).done(function (user) {
$('#txtUsername', page).val(user.Name);
2014-10-19 20:04:45 -07:00
$('#txtConnectUserName', page).val(user.ConnectUserName);
Dashboard.hideLoadingMsg();
});
});
window.WizardUserPage = new wizardUserPage();
2013-02-20 18:33:05 -07:00
})(jQuery, document, window);