mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
import $ from 'jQuery';
|
|
import libraryMenu from 'libraryMenu';
|
|
import loading from 'loading';
|
|
import globalize from 'globalize';
|
|
|
|
/* eslint-disable indent */
|
|
|
|
function loadPage(page, config) {
|
|
$('#txtRemoteClientBitrateLimit', page).val(config.RemoteClientBitrateLimit / 1e6 || '');
|
|
loading.hide();
|
|
}
|
|
|
|
function onSubmit() {
|
|
loading.show();
|
|
const form = this;
|
|
ApiClient.getServerConfiguration().then(function (config) {
|
|
config.RemoteClientBitrateLimit = parseInt(1e6 * parseFloat($('#txtRemoteClientBitrateLimit', form).val() || '0'));
|
|
ApiClient.updateServerConfiguration(config).then(Dashboard.processServerConfigurationUpdateResult);
|
|
});
|
|
|
|
return false;
|
|
}
|
|
|
|
function getTabs() {
|
|
return [{
|
|
href: 'encodingsettings.html',
|
|
name: globalize.translate('Transcoding')
|
|
}, {
|
|
href: 'playbackconfiguration.html',
|
|
name: globalize.translate('ButtonResume')
|
|
}, {
|
|
href: 'streamingsettings.html',
|
|
name: globalize.translate('TabStreaming')
|
|
}];
|
|
}
|
|
|
|
$(document).on('pageinit', '#streamingSettingsPage', function () {
|
|
$('.streamingSettingsForm').off('submit', onSubmit).on('submit', onSubmit);
|
|
}).on('pageshow', '#streamingSettingsPage', function () {
|
|
loading.show();
|
|
libraryMenu.setTabs('playback', 2, getTabs);
|
|
const page = this;
|
|
ApiClient.getServerConfiguration().then(function (config) {
|
|
loadPage(page, config);
|
|
});
|
|
});
|
|
|
|
/* eslint-enable indent */
|