mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-12-04 04:02:03 +00:00
Merge pull request #6334 from thornbill/dashboard-branding
Add branding settings page
This commit is contained in:
commit
20fd822b8b
@ -1,4 +1,5 @@
|
|||||||
import { Dashboard, ExpandLess, ExpandMore, LibraryAdd, People, PlayCircle, Settings } from '@mui/icons-material';
|
import { Dashboard, ExpandLess, ExpandMore, LibraryAdd, People, PlayCircle, Settings } from '@mui/icons-material';
|
||||||
|
import Palette from '@mui/icons-material/Palette';
|
||||||
import Collapse from '@mui/material/Collapse';
|
import Collapse from '@mui/material/Collapse';
|
||||||
import List from '@mui/material/List';
|
import List from '@mui/material/List';
|
||||||
import ListItem from '@mui/material/ListItem';
|
import ListItem from '@mui/material/ListItem';
|
||||||
@ -65,6 +66,12 @@ const ServerDrawerSection = () => {
|
|||||||
<ListItemText primary={globalize.translate('General')} />
|
<ListItemText primary={globalize.translate('General')} />
|
||||||
</ListItemLink>
|
</ListItemLink>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
<ListItemLink to='/dashboard/branding'>
|
||||||
|
<ListItemIcon>
|
||||||
|
<Palette />
|
||||||
|
</ListItemIcon>
|
||||||
|
<ListItemText primary={globalize.translate('HeaderBranding')} />
|
||||||
|
</ListItemLink>
|
||||||
<ListItem disablePadding>
|
<ListItem disablePadding>
|
||||||
<ListItemLink to='/dashboard/users'>
|
<ListItemLink to='/dashboard/users'>
|
||||||
<ListItemIcon>
|
<ListItemIcon>
|
||||||
|
@ -0,0 +1,35 @@
|
|||||||
|
import { Api } from '@jellyfin/sdk';
|
||||||
|
import { getBrandingApi } from '@jellyfin/sdk/lib/utils/api/branding-api';
|
||||||
|
import { queryOptions, useQuery } from '@tanstack/react-query';
|
||||||
|
import type { AxiosRequestConfig } from 'axios';
|
||||||
|
|
||||||
|
import { useApi } from 'hooks/useApi';
|
||||||
|
|
||||||
|
export const QUERY_KEY = 'BrandingOptions';
|
||||||
|
|
||||||
|
const fetchBrandingOptions = async (
|
||||||
|
api?: Api,
|
||||||
|
options?: AxiosRequestConfig
|
||||||
|
) => {
|
||||||
|
if (!api) {
|
||||||
|
console.error('[fetchBrandingOptions] no Api instance provided');
|
||||||
|
throw new Error('No Api instance provided to fetchBrandingOptions');
|
||||||
|
}
|
||||||
|
|
||||||
|
return getBrandingApi(api)
|
||||||
|
.getBrandingOptions(options)
|
||||||
|
.then(({ data }) => data);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getBrandingOptionsQuery = (
|
||||||
|
api?: Api
|
||||||
|
) => queryOptions({
|
||||||
|
queryKey: [ QUERY_KEY ],
|
||||||
|
queryFn: ({ signal }) => fetchBrandingOptions(api, { signal }),
|
||||||
|
enabled: !!api
|
||||||
|
});
|
||||||
|
|
||||||
|
export const useBrandingOptions = () => {
|
||||||
|
const { api } = useApi();
|
||||||
|
return useQuery(getBrandingOptionsQuery(api));
|
||||||
|
};
|
@ -2,6 +2,7 @@ import { AsyncRouteType, type AsyncRoute } from 'components/router/AsyncRoute';
|
|||||||
|
|
||||||
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
export const ASYNC_ADMIN_ROUTES: AsyncRoute[] = [
|
||||||
{ path: 'activity', type: AsyncRouteType.Dashboard },
|
{ path: 'activity', type: AsyncRouteType.Dashboard },
|
||||||
|
{ path: 'branding', type: AsyncRouteType.Dashboard },
|
||||||
{ path: 'playback/trickplay', type: AsyncRouteType.Dashboard },
|
{ path: 'playback/trickplay', type: AsyncRouteType.Dashboard },
|
||||||
{ path: 'plugins/:pluginId', page: 'plugins/plugin', type: AsyncRouteType.Dashboard },
|
{ path: 'plugins/:pluginId', page: 'plugins/plugin', type: AsyncRouteType.Dashboard },
|
||||||
{ path: 'users', type: AsyncRouteType.Dashboard },
|
{ path: 'users', type: AsyncRouteType.Dashboard },
|
||||||
|
176
src/apps/dashboard/routes/branding/index.tsx
Normal file
176
src/apps/dashboard/routes/branding/index.tsx
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
import type { BrandingOptions } from '@jellyfin/sdk/lib/generated-client/models/branding-options';
|
||||||
|
import { getConfigurationApi } from '@jellyfin/sdk/lib/utils/api/configuration-api';
|
||||||
|
import Alert from '@mui/material/Alert';
|
||||||
|
import Box from '@mui/material/Box';
|
||||||
|
import Button from '@mui/material/Button';
|
||||||
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
||||||
|
import Stack from '@mui/material/Stack';
|
||||||
|
import Switch from '@mui/material/Switch';
|
||||||
|
import TextField from '@mui/material/TextField';
|
||||||
|
import Typography from '@mui/material/Typography';
|
||||||
|
import React, { useCallback, useEffect, useState } from 'react';
|
||||||
|
import { type ActionFunctionArgs, Form, useActionData } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { getBrandingOptionsQuery, QUERY_KEY, useBrandingOptions } from 'apps/dashboard/features/branding/api/useBrandingOptions';
|
||||||
|
import Loading from 'components/loading/LoadingComponent';
|
||||||
|
import Page from 'components/Page';
|
||||||
|
import ServerConnections from 'components/ServerConnections';
|
||||||
|
import globalize from 'lib/globalize';
|
||||||
|
import { queryClient } from 'utils/query/queryClient';
|
||||||
|
|
||||||
|
interface ActionData {
|
||||||
|
isSaved: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
const BRANDING_CONFIG_KEY = 'branding';
|
||||||
|
const BrandingOption = {
|
||||||
|
CustomCss: 'CustomCss',
|
||||||
|
LoginDisclaimer: 'LoginDisclaimer',
|
||||||
|
SplashscreenEnabled: 'SplashscreenEnabled'
|
||||||
|
};
|
||||||
|
|
||||||
|
export const action = async ({ request }: ActionFunctionArgs) => {
|
||||||
|
const api = ServerConnections.getCurrentApi();
|
||||||
|
if (!api) throw new Error('No Api instance available');
|
||||||
|
|
||||||
|
const formData = await request.formData();
|
||||||
|
const data = Object.fromEntries(formData);
|
||||||
|
|
||||||
|
const brandingOptions: BrandingOptions = {
|
||||||
|
CustomCss: data.CustomCss?.toString(),
|
||||||
|
LoginDisclaimer: data.LoginDisclaimer?.toString(),
|
||||||
|
SplashscreenEnabled: data.SplashscreenEnabled?.toString() === 'on'
|
||||||
|
};
|
||||||
|
|
||||||
|
await getConfigurationApi(api)
|
||||||
|
.updateNamedConfiguration({
|
||||||
|
key: BRANDING_CONFIG_KEY,
|
||||||
|
body: JSON.stringify(brandingOptions)
|
||||||
|
});
|
||||||
|
|
||||||
|
void queryClient.invalidateQueries({
|
||||||
|
queryKey: [ QUERY_KEY ]
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
isSaved: true
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const loader = () => {
|
||||||
|
return queryClient.ensureQueryData(
|
||||||
|
getBrandingOptionsQuery(ServerConnections.getCurrentApi()));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Component = () => {
|
||||||
|
const actionData = useActionData() as ActionData | undefined;
|
||||||
|
const [ isSubmitting, setIsSubmitting ] = useState(false);
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: defaultBrandingOptions,
|
||||||
|
isPending
|
||||||
|
} = useBrandingOptions();
|
||||||
|
const [ brandingOptions, setBrandingOptions ] = useState(defaultBrandingOptions || {});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setIsSubmitting(false);
|
||||||
|
}, [ actionData ]);
|
||||||
|
|
||||||
|
const onSubmit = useCallback(() => {
|
||||||
|
setIsSubmitting(true);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const setSplashscreenEnabled = useCallback((_: React.ChangeEvent<HTMLInputElement>, isEnabled: boolean) => {
|
||||||
|
setBrandingOptions({
|
||||||
|
...brandingOptions,
|
||||||
|
[BrandingOption.SplashscreenEnabled]: isEnabled
|
||||||
|
});
|
||||||
|
}, [ brandingOptions ]);
|
||||||
|
|
||||||
|
const setBrandingOption = useCallback((event: React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>) => {
|
||||||
|
if (Object.keys(BrandingOption).includes(event.target.name)) {
|
||||||
|
setBrandingOptions({
|
||||||
|
...brandingOptions,
|
||||||
|
[event.target.name]: event.target.value
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [ brandingOptions ]);
|
||||||
|
|
||||||
|
if (isPending) return <Loading />;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Page
|
||||||
|
id='brandingPage'
|
||||||
|
className='mainAnimatedPage type-interior'
|
||||||
|
>
|
||||||
|
<Box className='content-primary'>
|
||||||
|
<Form
|
||||||
|
method='POST'
|
||||||
|
onSubmit={onSubmit}
|
||||||
|
>
|
||||||
|
<Stack spacing={3}>
|
||||||
|
<Typography variant='h1'>
|
||||||
|
{globalize.translate('HeaderBranding')}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
{!isSubmitting && actionData?.isSaved && (
|
||||||
|
<Alert severity='success'>
|
||||||
|
{globalize.translate('SettingsSaved')}
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<FormControlLabel
|
||||||
|
control={
|
||||||
|
<Switch
|
||||||
|
name={BrandingOption.SplashscreenEnabled}
|
||||||
|
checked={brandingOptions?.SplashscreenEnabled}
|
||||||
|
onChange={setSplashscreenEnabled}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
label={globalize.translate('EnableSplashScreen')}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TextField
|
||||||
|
fullWidth
|
||||||
|
multiline
|
||||||
|
minRows={5}
|
||||||
|
maxRows={5}
|
||||||
|
InputProps={{
|
||||||
|
className: 'textarea-mono'
|
||||||
|
}}
|
||||||
|
name={BrandingOption.LoginDisclaimer}
|
||||||
|
label={globalize.translate('LabelLoginDisclaimer')}
|
||||||
|
helperText={globalize.translate('LabelLoginDisclaimerHelp')}
|
||||||
|
value={brandingOptions?.LoginDisclaimer}
|
||||||
|
onChange={setBrandingOption}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TextField
|
||||||
|
fullWidth
|
||||||
|
multiline
|
||||||
|
minRows={5}
|
||||||
|
maxRows={20}
|
||||||
|
InputProps={{
|
||||||
|
className: 'textarea-mono'
|
||||||
|
}}
|
||||||
|
name={BrandingOption.CustomCss}
|
||||||
|
label={globalize.translate('LabelCustomCss')}
|
||||||
|
helperText={globalize.translate('LabelCustomCssHelp')}
|
||||||
|
value={brandingOptions?.CustomCss}
|
||||||
|
onChange={setBrandingOption}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
type='submit'
|
||||||
|
size='large'
|
||||||
|
>
|
||||||
|
{globalize.translate('Save')}
|
||||||
|
</Button>
|
||||||
|
</Stack>
|
||||||
|
</Form>
|
||||||
|
</Box>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
Component.displayName = 'BrandingPage';
|
@ -1,3 +1,6 @@
|
|||||||
|
// NOTE: This is used for jsdoc return type
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
import { Api } from '@jellyfin/sdk';
|
||||||
import { MINIMUM_VERSION } from '@jellyfin/sdk/lib/versions';
|
import { MINIMUM_VERSION } from '@jellyfin/sdk/lib/versions';
|
||||||
import { ConnectionManager, Credentials, ApiClient } from 'jellyfin-apiclient';
|
import { ConnectionManager, Credentials, ApiClient } from 'jellyfin-apiclient';
|
||||||
|
|
||||||
@ -6,6 +9,7 @@ import Dashboard from '../utils/dashboard';
|
|||||||
import Events from '../utils/events.ts';
|
import Events from '../utils/events.ts';
|
||||||
import { setUserInfo } from '../scripts/settings/userSettings';
|
import { setUserInfo } from '../scripts/settings/userSettings';
|
||||||
import appSettings from '../scripts/settings/appSettings';
|
import appSettings from '../scripts/settings/appSettings';
|
||||||
|
import { toApi } from 'utils/jellyfin-apiclient/compat';
|
||||||
|
|
||||||
const normalizeImageOptions = options => {
|
const normalizeImageOptions = options => {
|
||||||
if (!options.quality && (options.maxWidth || options.width || options.maxHeight || options.height || options.fillWidth || options.fillHeight)) {
|
if (!options.quality && (options.maxWidth || options.width || options.maxHeight || options.height || options.fillWidth || options.fillHeight)) {
|
||||||
@ -111,6 +115,17 @@ class ServerConnections extends ConnectionManager {
|
|||||||
return apiClient;
|
return apiClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the Api that is currently connected.
|
||||||
|
* @returns {Api|undefined} The current Api instance.
|
||||||
|
*/
|
||||||
|
getCurrentApi() {
|
||||||
|
const apiClient = this.currentApiClient();
|
||||||
|
if (!apiClient) return;
|
||||||
|
|
||||||
|
return toApi(apiClient);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the ApiClient that is currently connected or throws if not defined.
|
* Gets the ApiClient that is currently connected or throws if not defined.
|
||||||
* @async
|
* @async
|
||||||
|
@ -37,16 +37,16 @@ export const toAsyncPageRoute = ({
|
|||||||
return {
|
return {
|
||||||
path,
|
path,
|
||||||
lazy: async () => {
|
lazy: async () => {
|
||||||
const { default: route } = await importRoute(page ?? path, type);
|
const {
|
||||||
|
// If there is a default export, use it as the Component for compatibility
|
||||||
|
default: Component,
|
||||||
|
...route
|
||||||
|
} = await importRoute(page ?? path, type);
|
||||||
|
|
||||||
// If route is not a RouteObject, use it as the Component
|
return {
|
||||||
if (!route.Component) {
|
Component,
|
||||||
return {
|
...route
|
||||||
Component: route
|
};
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return route;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -62,24 +62,6 @@
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="verticalSection">
|
|
||||||
<h2>${HeaderBranding}</h2>
|
|
||||||
<div class="inputContainer">
|
|
||||||
<textarea is="emby-textarea" id="txtLoginDisclaimer" label="${LabelLoginDisclaimer}" class="textarea-mono"></textarea>
|
|
||||||
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
|
|
||||||
</div>
|
|
||||||
<div class="inputContainer customCssContainer">
|
|
||||||
<textarea is="emby-textarea" id="txtCustomCss" label="${LabelCustomCss}" class="textarea-mono"></textarea>
|
|
||||||
<div class="fieldDescription">${LabelCustomCssHelp}</div>
|
|
||||||
</div>
|
|
||||||
<div class="checkboxList paperList" style="padding:.5em 1em;">
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" is="emby-checkbox" id="chkSplashScreenAvailable" />
|
|
||||||
<span>${EnableSplashScreen}</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="verticalSection">
|
<div class="verticalSection">
|
||||||
<h2>${HeaderPerformance}</h2>
|
<h2>${HeaderPerformance}</h2>
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
|
@ -39,25 +39,17 @@ function onSubmit() {
|
|||||||
config.LibraryScanFanoutConcurrency = parseInt(form.querySelector('#txtLibraryScanFanoutConcurrency').value || '0', 10);
|
config.LibraryScanFanoutConcurrency = parseInt(form.querySelector('#txtLibraryScanFanoutConcurrency').value || '0', 10);
|
||||||
config.ParallelImageEncodingLimit = parseInt(form.querySelector('#txtParallelImageEncodingLimit').value || '0', 10);
|
config.ParallelImageEncodingLimit = parseInt(form.querySelector('#txtParallelImageEncodingLimit').value || '0', 10);
|
||||||
|
|
||||||
ApiClient.updateServerConfiguration(config).then(function() {
|
return ApiClient.updateServerConfiguration(config)
|
||||||
ApiClient.getNamedConfiguration(brandingConfigKey).then(function(brandingConfig) {
|
.then(() => {
|
||||||
brandingConfig.LoginDisclaimer = form.querySelector('#txtLoginDisclaimer').value;
|
Dashboard.processServerConfigurationUpdateResult();
|
||||||
brandingConfig.CustomCss = form.querySelector('#txtCustomCss').value;
|
}).catch(() => {
|
||||||
brandingConfig.SplashscreenEnabled = form.querySelector('#chkSplashScreenAvailable').checked;
|
loading.hide();
|
||||||
|
alert(globalize.translate('ErrorDefault'));
|
||||||
ApiClient.updateNamedConfiguration(brandingConfigKey, brandingConfig).then(function () {
|
|
||||||
Dashboard.processServerConfigurationUpdateResult();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}, function () {
|
|
||||||
alert(globalize.translate('ErrorDefault'));
|
|
||||||
Dashboard.processServerConfigurationUpdateResult();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const brandingConfigKey = 'branding';
|
|
||||||
export default function (view) {
|
export default function (view) {
|
||||||
$('#btnSelectCachePath', view).on('click.selectDirectory', function () {
|
$('#btnSelectCachePath', view).on('click.selectDirectory', function () {
|
||||||
import('../../components/directorybrowser/directorybrowser').then(({ default: DirectoryBrowser }) => {
|
import('../../components/directorybrowser/directorybrowser').then(({ default: DirectoryBrowser }) => {
|
||||||
@ -107,11 +99,6 @@ export default function (view) {
|
|||||||
Promise.all([promiseConfig, promiseLanguageOptions, promiseSystemInfo]).then(function (responses) {
|
Promise.all([promiseConfig, promiseLanguageOptions, promiseSystemInfo]).then(function (responses) {
|
||||||
loadPage(view, responses[0], responses[1], responses[2]);
|
loadPage(view, responses[0], responses[1], responses[2]);
|
||||||
});
|
});
|
||||||
ApiClient.getNamedConfiguration(brandingConfigKey).then(function (config) {
|
|
||||||
view.querySelector('#txtLoginDisclaimer').value = config.LoginDisclaimer || '';
|
|
||||||
view.querySelector('#txtCustomCss').value = config.CustomCss || '';
|
|
||||||
view.querySelector('#chkSplashScreenAvailable').checked = config.SplashscreenEnabled === true;
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
/* Remove select styling */
|
/* Remove select styling */
|
||||||
|
|
||||||
/* Font size must the 16px or larger to prevent iOS page zoom on focus */
|
/* Font size must the 16px or larger to prevent iOS page zoom on focus */
|
||||||
font-size: inherit;
|
font-size: 110%;
|
||||||
|
|
||||||
/* General select styles: change as needed */
|
/* General select styles: change as needed */
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
@ -19,6 +19,9 @@
|
|||||||
outline: none !important;
|
outline: none !important;
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
/* Make the height at least as tall as inputs */
|
||||||
|
min-height: 2.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emby-textarea::-moz-focus-inner {
|
.emby-textarea::-moz-focus-inner {
|
||||||
|
@ -22,6 +22,24 @@ h3 {
|
|||||||
@include font(400, 1.17em);
|
@include font(400, 1.17em);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.textarea-mono {
|
||||||
|
font-family:
|
||||||
|
ui-monospace,
|
||||||
|
Menlo,
|
||||||
|
Monaco,
|
||||||
|
"Cascadia Mono",
|
||||||
|
"Segoe UI Mono",
|
||||||
|
"Roboto Mono",
|
||||||
|
"Oxygen Mono",
|
||||||
|
"Ubuntu Mono",
|
||||||
|
"Source Code Pro",
|
||||||
|
"Fira Mono",
|
||||||
|
"Droid Sans Mono",
|
||||||
|
"Consolas",
|
||||||
|
"Courier New",
|
||||||
|
monospace !important;
|
||||||
|
}
|
||||||
|
|
||||||
.layout-tv {
|
.layout-tv {
|
||||||
/* Per WebOS and Tizen guidelines, fonts must be 20px minimum.
|
/* Per WebOS and Tizen guidelines, fonts must be 20px minimum.
|
||||||
This takes the 16px baseline and multiplies it by 1.25 to get 20px. */
|
This takes the 16px baseline and multiplies it by 1.25 to get 20px. */
|
||||||
|
Loading…
Reference in New Issue
Block a user