Scaffold theme editor
This commit is contained in:
parent
df7f2d4dca
commit
3b1d8972b0
|
@ -9,12 +9,12 @@ import ColorPicker from './color-picker';
|
||||||
import type { ColorChangeHandler } from 'react-color';
|
import type { ColorChangeHandler } from 'react-color';
|
||||||
|
|
||||||
interface IColorWithPicker {
|
interface IColorWithPicker {
|
||||||
buttonId: string,
|
|
||||||
value: string,
|
value: string,
|
||||||
onChange: ColorChangeHandler,
|
onChange: ColorChangeHandler,
|
||||||
|
className?: string,
|
||||||
}
|
}
|
||||||
|
|
||||||
const ColorWithPicker: React.FC<IColorWithPicker> = ({ buttonId, value, onChange }) => {
|
const ColorWithPicker: React.FC<IColorWithPicker> = ({ value, onChange, className }) => {
|
||||||
const node = useRef<HTMLDivElement>(null);
|
const node = useRef<HTMLDivElement>(null);
|
||||||
const [active, setActive] = useState(false);
|
const [active, setActive] = useState(false);
|
||||||
const [placement, setPlacement] = useState<string | null>(null);
|
const [placement, setPlacement] = useState<string | null>(null);
|
||||||
|
@ -39,11 +39,10 @@ const ColorWithPicker: React.FC<IColorWithPicker> = ({ buttonId, value, onChange
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className={className}>
|
||||||
<div
|
<div
|
||||||
ref={node}
|
ref={node}
|
||||||
id={buttonId}
|
className='w-full h-full'
|
||||||
className='w-8 h-8 rounded-md'
|
|
||||||
role='presentation'
|
role='presentation'
|
||||||
style={{ background: value }}
|
style={{ background: value }}
|
||||||
title={value}
|
title={value}
|
||||||
|
|
|
@ -221,7 +221,7 @@ const SoapboxConfig: React.FC = () => {
|
||||||
|
|
||||||
<ListItem label={<FormattedMessage id='soapbox_config.fields.brand_color_label' defaultMessage='Brand color' />}>
|
<ListItem label={<FormattedMessage id='soapbox_config.fields.brand_color_label' defaultMessage='Brand color' />}>
|
||||||
<ColorWithPicker
|
<ColorWithPicker
|
||||||
buttonId='brandColor'
|
className='w-8 h-8 rounded-md overflow-hidden'
|
||||||
value={soapbox.brandColor}
|
value={soapbox.brandColor}
|
||||||
onChange={handleColorChange(['brandColor'], (color) => color.hex)}
|
onChange={handleColorChange(['brandColor'], (color) => color.hex)}
|
||||||
/>
|
/>
|
||||||
|
@ -229,7 +229,7 @@ const SoapboxConfig: React.FC = () => {
|
||||||
|
|
||||||
<ListItem label={<FormattedMessage id='soapbox_config.fields.accent_color_label' defaultMessage='Accent color' />}>
|
<ListItem label={<FormattedMessage id='soapbox_config.fields.accent_color_label' defaultMessage='Accent color' />}>
|
||||||
<ColorWithPicker
|
<ColorWithPicker
|
||||||
buttonId='accentColor'
|
className='w-8 h-8 rounded-md overflow-hidden'
|
||||||
value={soapbox.accentColor}
|
value={soapbox.accentColor}
|
||||||
onChange={handleColorChange(['accentColor'], (color) => color.hex)}
|
onChange={handleColorChange(['accentColor'], (color) => color.hex)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import compareId from 'soapbox/compare_id';
|
||||||
|
import { HStack } from 'soapbox/components/ui';
|
||||||
|
import ColorWithPicker from 'soapbox/features/soapbox_config/components/color-with-picker';
|
||||||
|
|
||||||
|
interface ColorGroup {
|
||||||
|
[tint: string]: string,
|
||||||
|
}
|
||||||
|
|
||||||
|
interface IPalette {
|
||||||
|
palette: ColorGroup,
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Editable color palette. */
|
||||||
|
const Palette: React.FC<IPalette> = ({ palette }) => {
|
||||||
|
const tints = Object.keys(palette).sort(compareId);
|
||||||
|
|
||||||
|
const result = tints.map(tint => {
|
||||||
|
const hex = palette[tint];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ColorWithPicker
|
||||||
|
className='w-full h-full'
|
||||||
|
value={hex}
|
||||||
|
onChange={() => {}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<HStack className='w-full h-8 rounded-md overflow-hidden'>
|
||||||
|
{result}
|
||||||
|
</HStack>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export {
|
||||||
|
Palette as default,
|
||||||
|
ColorGroup,
|
||||||
|
};
|
|
@ -0,0 +1,74 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { defineMessages, useIntl } from 'react-intl';
|
||||||
|
|
||||||
|
import List, { ListItem } from 'soapbox/components/list';
|
||||||
|
import { Column } from 'soapbox/components/ui';
|
||||||
|
import { useSoapboxConfig } from 'soapbox/hooks';
|
||||||
|
|
||||||
|
import Palette, { ColorGroup } from './components/palette';
|
||||||
|
|
||||||
|
const messages = defineMessages({
|
||||||
|
title: { id: 'admin.theme.title', defaultMessage: 'Theme' },
|
||||||
|
});
|
||||||
|
|
||||||
|
interface IThemeEditor {
|
||||||
|
}
|
||||||
|
|
||||||
|
/** UI for editing Tailwind theme colors. */
|
||||||
|
const ThemeEditor: React.FC<IThemeEditor> = () => {
|
||||||
|
const intl = useIntl();
|
||||||
|
const soapbox = useSoapboxConfig();
|
||||||
|
const colors = soapbox.colors.toJS();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Column label={intl.formatMessage(messages.title)}>
|
||||||
|
<List>
|
||||||
|
<PaletteListItem
|
||||||
|
label='Primary'
|
||||||
|
palette={colors.primary as any}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<PaletteListItem
|
||||||
|
label='Secondary'
|
||||||
|
palette={colors.secondary as any}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<PaletteListItem
|
||||||
|
label='Accent'
|
||||||
|
palette={colors.accent as any}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<PaletteListItem
|
||||||
|
label='Gray'
|
||||||
|
palette={colors.gray as any}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<PaletteListItem
|
||||||
|
label='Success'
|
||||||
|
palette={colors.success as any}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<PaletteListItem
|
||||||
|
label='Danger'
|
||||||
|
palette={colors.danger as any}
|
||||||
|
/>
|
||||||
|
</List>
|
||||||
|
</Column>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
interface IPaletteListItem {
|
||||||
|
label: React.ReactNode,
|
||||||
|
palette: ColorGroup,
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Palette editor inside a ListItem. */
|
||||||
|
const PaletteListItem: React.FC<IPaletteListItem> = ({ label, palette }) => {
|
||||||
|
return (
|
||||||
|
<ListItem label={<div className='w-20'>{label}</div>}>
|
||||||
|
<Palette palette={palette} />
|
||||||
|
</ListItem>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ThemeEditor;
|
|
@ -112,6 +112,7 @@ import {
|
||||||
TestTimeline,
|
TestTimeline,
|
||||||
LogoutPage,
|
LogoutPage,
|
||||||
AuthTokenList,
|
AuthTokenList,
|
||||||
|
ThemeEditor,
|
||||||
} from './util/async-components';
|
} from './util/async-components';
|
||||||
import { WrappedRoute } from './util/react_router_helpers';
|
import { WrappedRoute } from './util/react_router_helpers';
|
||||||
|
|
||||||
|
@ -306,6 +307,7 @@ const SwitchingColumnsArea: React.FC = ({ children }) => {
|
||||||
<WrappedRoute path='/soapbox/admin/reports' staffOnly page={AdminPage} component={Dashboard} content={children} exact />
|
<WrappedRoute path='/soapbox/admin/reports' staffOnly page={AdminPage} component={Dashboard} content={children} exact />
|
||||||
<WrappedRoute path='/soapbox/admin/log' staffOnly page={AdminPage} component={ModerationLog} content={children} exact />
|
<WrappedRoute path='/soapbox/admin/log' staffOnly page={AdminPage} component={ModerationLog} content={children} exact />
|
||||||
<WrappedRoute path='/soapbox/admin/users' staffOnly page={AdminPage} component={UserIndex} content={children} exact />
|
<WrappedRoute path='/soapbox/admin/users' staffOnly page={AdminPage} component={UserIndex} content={children} exact />
|
||||||
|
<WrappedRoute path='/soapbox/admin/theme' staffOnly page={AdminPage} component={ThemeEditor} content={children} exact />
|
||||||
<WrappedRoute path='/info' page={EmptyPage} component={ServerInfo} content={children} />
|
<WrappedRoute path='/info' page={EmptyPage} component={ServerInfo} content={children} />
|
||||||
|
|
||||||
<WrappedRoute path='/developers/apps/create' developerOnly page={DefaultPage} component={CreateApp} content={children} />
|
<WrappedRoute path='/developers/apps/create' developerOnly page={DefaultPage} component={CreateApp} content={children} />
|
||||||
|
|
|
@ -310,6 +310,10 @@ export function ModerationLog() {
|
||||||
return import(/* webpackChunkName: "features/admin/moderation_log" */'../../admin/moderation_log');
|
return import(/* webpackChunkName: "features/admin/moderation_log" */'../../admin/moderation_log');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function ThemeEditor() {
|
||||||
|
return import(/* webpackChunkName: "features/theme-editor" */'../../theme-editor');
|
||||||
|
}
|
||||||
|
|
||||||
export function UserPanel() {
|
export function UserPanel() {
|
||||||
return import(/* webpackChunkName: "features/ui" */'../components/user_panel');
|
return import(/* webpackChunkName: "features/ui" */'../components/user_panel');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue