mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 11:58:41 +08:00
c8413cc78f
* feat: 不要合并 * fix: fix * fix: fix * test: fix test * test: fix test * test: fix test * test: fix test * Update components/float-button/FloatButtonGroup.tsx Co-authored-by: MadCcc <madccc@foxmail.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/float-button/__tests__/__snapshots__/demo-extend.test.ts.snap Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> * fix: fix * fix: fix * test: add test case * fix: fix * fix: fix * site: update site style * demo: update demo --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <madccc@foxmail.com> Co-authored-by: afc163 <afc163@gmail.com>
95 lines
2.9 KiB
TypeScript
95 lines
2.9 KiB
TypeScript
import React from 'react';
|
|
import { BgColorsOutlined, SmileOutlined } from '@ant-design/icons';
|
|
import { FloatButton } from 'antd';
|
|
import { CompactTheme, DarkTheme } from 'antd-token-previewer/es/icons';
|
|
// import { Motion } from 'antd-token-previewer/es/icons';
|
|
import { FormattedMessage, useLocation } from 'dumi';
|
|
|
|
import useThemeAnimation from '../../../hooks/useThemeAnimation';
|
|
import { getLocalizedPathname, isZhCN } from '../../utils';
|
|
import Link from '../Link';
|
|
import ThemeIcon from './ThemeIcon';
|
|
|
|
export type ThemeName = 'light' | 'dark' | 'compact' | 'motion-off' | 'happy-work';
|
|
|
|
export interface ThemeSwitchProps {
|
|
value?: ThemeName[];
|
|
onChange: (value: ThemeName[]) => void;
|
|
}
|
|
|
|
const ThemeSwitch: React.FC<ThemeSwitchProps> = (props) => {
|
|
const { value = ['light'], onChange } = props;
|
|
const { pathname, search } = useLocation();
|
|
|
|
// const isMotionOff = value.includes('motion-off');
|
|
const isHappyWork = value.includes('happy-work');
|
|
const isDark = value.includes('dark');
|
|
|
|
const toggleAnimationTheme = useThemeAnimation();
|
|
|
|
return (
|
|
<FloatButton.Group
|
|
trigger="click"
|
|
icon={<ThemeIcon />}
|
|
aria-label="Theme Switcher"
|
|
badge={{ dot: true }}
|
|
>
|
|
<Link
|
|
to={getLocalizedPathname('/theme-editor', isZhCN(pathname), search)}
|
|
style={{ display: 'block' }}
|
|
>
|
|
<FloatButton
|
|
icon={<BgColorsOutlined />}
|
|
tooltip={<FormattedMessage id="app.footer.theme" />}
|
|
/>
|
|
</Link>
|
|
<FloatButton
|
|
icon={<DarkTheme />}
|
|
type={isDark ? 'primary' : 'default'}
|
|
onClick={(e) => {
|
|
// Toggle animation when switch theme
|
|
toggleAnimationTheme(e, isDark);
|
|
|
|
if (isDark) {
|
|
onChange(value.filter((theme) => theme !== 'dark'));
|
|
} else {
|
|
onChange([...value, 'dark']);
|
|
}
|
|
}}
|
|
tooltip={<FormattedMessage id="app.theme.switch.dark" />}
|
|
/>
|
|
<FloatButton
|
|
icon={<CompactTheme />}
|
|
type={value.includes('compact') ? 'primary' : 'default'}
|
|
onClick={() => {
|
|
if (value.includes('compact')) {
|
|
onChange(value.filter((theme) => theme !== 'compact'));
|
|
} else {
|
|
onChange([...value, 'compact']);
|
|
}
|
|
}}
|
|
tooltip={<FormattedMessage id="app.theme.switch.compact" />}
|
|
/>
|
|
<FloatButton
|
|
badge={{ dot: true }}
|
|
icon={<SmileOutlined />}
|
|
type={isHappyWork ? 'primary' : 'default'}
|
|
onClick={() => {
|
|
if (isHappyWork) {
|
|
onChange(value.filter((theme) => theme !== 'happy-work'));
|
|
} else {
|
|
onChange([...value, 'happy-work']);
|
|
}
|
|
}}
|
|
tooltip={
|
|
<FormattedMessage
|
|
id={isHappyWork ? 'app.theme.switch.happy-work.off' : 'app.theme.switch.happy-work.on'}
|
|
/>
|
|
}
|
|
/>
|
|
</FloatButton.Group>
|
|
);
|
|
};
|
|
|
|
export default ThemeSwitch;
|