mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Move Quick Connect toggle to General page in dashboard
This replaces the separate page with a toggle.
This commit is contained in:
parent
0dde17fbd7
commit
e091f4ca39
5 changed files with 15 additions and 88 deletions
|
@ -49,6 +49,19 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="verticalSection">
|
||||||
|
<div class="sectionTitleContainer flex align-items-center">
|
||||||
|
<h2 class="sectionTitle">${QuickConnect}</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="checkboxList paperList" style="padding:.5em 1em;">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" is="emby-checkbox" id="chkQuickConnectAvailable" />
|
||||||
|
<span>${EnableQuickConnect}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="verticalSection">
|
<div class="verticalSection">
|
||||||
<h2>${HeaderBranding}</h2>
|
<h2>${HeaderBranding}</h2>
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
|
|
|
@ -14,6 +14,7 @@ import alert from '../../components/alert';
|
||||||
function loadPage(page, config, languageOptions, systemInfo) {
|
function loadPage(page, config, languageOptions, systemInfo) {
|
||||||
page.querySelector('#txtServerName').value = systemInfo.ServerName;
|
page.querySelector('#txtServerName').value = systemInfo.ServerName;
|
||||||
page.querySelector('#txtCachePath').value = systemInfo.CachePath || '';
|
page.querySelector('#txtCachePath').value = systemInfo.CachePath || '';
|
||||||
|
page.querySelector('#chkQuickConnectAvailable').checked = config.QuickConnectAvailable === true;
|
||||||
$('#txtMetadataPath', page).val(systemInfo.InternalMetadataPath || '');
|
$('#txtMetadataPath', page).val(systemInfo.InternalMetadataPath || '');
|
||||||
$('#txtMetadataNetworkPath', page).val(systemInfo.MetadataNetworkPath || '');
|
$('#txtMetadataNetworkPath', page).val(systemInfo.MetadataNetworkPath || '');
|
||||||
$('#selectLocalizationLanguage', page).html(languageOptions.map(function (language) {
|
$('#selectLocalizationLanguage', page).html(languageOptions.map(function (language) {
|
||||||
|
@ -33,6 +34,7 @@ import alert from '../../components/alert';
|
||||||
config.CachePath = form.querySelector('#txtCachePath').value;
|
config.CachePath = form.querySelector('#txtCachePath').value;
|
||||||
config.MetadataPath = $('#txtMetadataPath', form).val();
|
config.MetadataPath = $('#txtMetadataPath', form).val();
|
||||||
config.MetadataNetworkPath = $('#txtMetadataNetworkPath', form).val();
|
config.MetadataNetworkPath = $('#txtMetadataNetworkPath', form).val();
|
||||||
|
config.QuickConnectAvailable = form.querySelector('#chkQuickConnectAvailable').checked;
|
||||||
ApiClient.updateServerConfiguration(config).then(function() {
|
ApiClient.updateServerConfiguration(config).then(function() {
|
||||||
ApiClient.getNamedConfiguration(brandingConfigKey).then(function(brandingConfig) {
|
ApiClient.getNamedConfiguration(brandingConfigKey).then(function(brandingConfig) {
|
||||||
brandingConfig.LoginDisclaimer = form.querySelector('#txtLoginDisclaimer').value;
|
brandingConfig.LoginDisclaimer = form.querySelector('#txtLoginDisclaimer').value;
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
<div id="quickConnectPage" data-role="page" class="page type-interior advancedConfigurationPage">
|
|
||||||
<div class="content-primary">
|
|
||||||
<form class="quickConnectSettings">
|
|
||||||
<div class="verticalSection">
|
|
||||||
<div class="sectionTitleContainer flex align-items-center">
|
|
||||||
<h2 class="sectionTitle">${QuickConnect}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>${LabelCurrentStatus}<span id="quickConnectStatus" style="padding:0 0.4em;"></span></div>
|
|
||||||
|
|
||||||
<div class="checkboxList paperList" style="padding:.5em 1em;">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" is="emby-checkbox" id="chkQuickConnectAvailable" />
|
|
||||||
<span>${EnableQuickConnect}</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<button is="emby-button" id="btnQuickConnectSubmit" type="submit" class="raised button-submit block">
|
|
||||||
<span>${Save}</span>
|
|
||||||
</button>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -1,58 +0,0 @@
|
||||||
import loading from '../../components/loading/loading';
|
|
||||||
import toast from '../../components/toast/toast';
|
|
||||||
import globalize from '../../scripts/globalize';
|
|
||||||
|
|
||||||
const unavailable = 'Unavailable';
|
|
||||||
const available = 'Available';
|
|
||||||
const active = 'Active';
|
|
||||||
let page;
|
|
||||||
|
|
||||||
export default function(view) {
|
|
||||||
view.addEventListener('viewshow', function () {
|
|
||||||
page = this;
|
|
||||||
loading.show();
|
|
||||||
page.querySelector('#btnQuickConnectSubmit').onclick = onSubmit;
|
|
||||||
updatePage();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function loadPage(status) {
|
|
||||||
const check = status === available || status === active;
|
|
||||||
|
|
||||||
page.querySelector('#quickConnectStatus').textContent = status.toLocaleLowerCase();
|
|
||||||
page.querySelector('#chkQuickConnectAvailable').checked = check;
|
|
||||||
|
|
||||||
loading.hide();
|
|
||||||
}
|
|
||||||
|
|
||||||
function onSubmit() {
|
|
||||||
loading.show();
|
|
||||||
|
|
||||||
const newStatus = page.querySelector('#chkQuickConnectAvailable').checked ? available : unavailable;
|
|
||||||
|
|
||||||
const url = ApiClient.getUrl('/QuickConnect/Available?Status=' + newStatus);
|
|
||||||
|
|
||||||
ApiClient.ajax({
|
|
||||||
type: 'POST',
|
|
||||||
url: url
|
|
||||||
}, true).then(() => {
|
|
||||||
toast(globalize.translate('SettingsSaved'));
|
|
||||||
setTimeout(updatePage, 500);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}).catch((e) => {
|
|
||||||
console.error('Unable to set quick connect status. error:', e);
|
|
||||||
});
|
|
||||||
|
|
||||||
loading.hide();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function updatePage() {
|
|
||||||
ApiClient.getQuickConnect('Status').then((response) => {
|
|
||||||
loadPage(response);
|
|
||||||
return true;
|
|
||||||
}).catch((e) => {
|
|
||||||
console.error('Unable to get quick connect status. error:', e);
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -412,12 +412,6 @@ import Headroom from 'headroom.js';
|
||||||
pageIds: ['devicesPage', 'devicePage'],
|
pageIds: ['devicesPage', 'devicePage'],
|
||||||
icon: 'devices'
|
icon: 'devices'
|
||||||
});
|
});
|
||||||
links.push({
|
|
||||||
name: globalize.translate('QuickConnect'),
|
|
||||||
href: '#!/quickConnect.html',
|
|
||||||
pageIds: ['quickConnectPage'],
|
|
||||||
icon: 'tap_and_play'
|
|
||||||
});
|
|
||||||
links.push({
|
links.push({
|
||||||
name: globalize.translate('HeaderActivity'),
|
name: globalize.translate('HeaderActivity'),
|
||||||
href: '#!/serveractivity.html',
|
href: '#!/serveractivity.html',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue