mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
912ffb15d0
* init * chore: cssinjs base button * chore: more style * chore: mix style * chore: size * chore: more style * misc * chore: re-structrue * chore: icon onlt * chore: back of disabled * chore: loading status * chore: loading motion * chore: add active style * docs: site prepare dynamic theme * chore: bump antd cssinjs * chore: color type check * chore: bump cssinjs version * chore: clean up useless ts def * chore: ignore button style * chore: rename ci * chore: update cssinjs ver * chore: ssr default wrapper * chore: bump cssinjs version * chore: ssr support * chore: fix script * test: fix node snapshot * chore: move cssinjs pkg size from css to js * test: coverage
103 lines
2.8 KiB
TypeScript
103 lines
2.8 KiB
TypeScript
import * as React from 'react';
|
|
import { TinyColor } from '@ctrl/tinycolor';
|
|
import { Drawer, Form, Input, Button, InputNumber } from 'antd';
|
|
import { useIntl } from 'react-intl';
|
|
import { BugOutlined } from '@ant-design/icons';
|
|
import { DesignToken } from '../../../../components/_util/theme';
|
|
import defaultTheme from '../../../../components/_util/theme/default';
|
|
|
|
export interface ThemeConfigProps {
|
|
defaultToken: DesignToken;
|
|
onChangeTheme: (theme: DesignToken) => void;
|
|
}
|
|
|
|
export default ({ onChangeTheme, defaultToken }: ThemeConfigProps) => {
|
|
const { formatMessage } = useIntl();
|
|
const [visible, setVisible] = React.useState(false);
|
|
const [form] = Form.useForm();
|
|
|
|
const keys = Object.keys(defaultTheme);
|
|
|
|
const onFinish = (nextToken: DesignToken) => {
|
|
onChangeTheme(nextToken);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div
|
|
style={{
|
|
position: 'fixed',
|
|
right: 0,
|
|
bottom: 32,
|
|
fontSize: 16,
|
|
borderRadius: '4px 0 0 4px',
|
|
background: '#FFF',
|
|
boxShadow: '0 0 4px rgba(0, 0, 0, 0.3)',
|
|
padding: '8px 16px 8px 12px',
|
|
cursor: 'pointer',
|
|
}}
|
|
onClick={() => setVisible(true)}
|
|
>
|
|
<BugOutlined /> Dynamic Theme
|
|
</div>
|
|
|
|
<Drawer
|
|
zIndex={10001}
|
|
visible={visible}
|
|
onClose={() => {
|
|
setVisible(false);
|
|
}}
|
|
title={formatMessage({ id: 'app.theme.switch.dynamic' })}
|
|
extra={
|
|
<Button onClick={form.submit} type="primary">
|
|
Submit
|
|
</Button>
|
|
}
|
|
destroyOnClose
|
|
>
|
|
<Form
|
|
form={form}
|
|
initialValues={defaultToken}
|
|
layout="vertical"
|
|
onFinish={onFinish}
|
|
autoComplete="off"
|
|
>
|
|
{keys.map((key: keyof typeof defaultToken) => {
|
|
const originValue = defaultToken[key];
|
|
const originValueType = typeof originValue;
|
|
|
|
let node: React.ReactElement;
|
|
|
|
switch (originValueType) {
|
|
case 'number':
|
|
node = <InputNumber />;
|
|
break;
|
|
|
|
default:
|
|
node = <Input />;
|
|
}
|
|
|
|
const rules: any[] = [{ required: true }];
|
|
const originColor = new TinyColor(originValue);
|
|
if (originValueType === 'string' && originColor.isValid) {
|
|
rules.push({
|
|
validator: async (_: any, value: string) => {
|
|
if (!new TinyColor(value).isValid) {
|
|
throw new Error('Invalidate color type');
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
return (
|
|
<Form.Item key={key} label={key} name={key} rules={rules} validateFirst>
|
|
{node}
|
|
</Form.Item>
|
|
);
|
|
})}
|
|
</Form>
|
|
</Drawer>
|
|
</>
|
|
);
|
|
};
|