import React, { use, useRef } from 'react'; import { BgColorsOutlined, LinkOutlined, SmileOutlined, SunOutlined, SyncOutlined, } from '@ant-design/icons'; import { Badge, Button, Dropdown } from 'antd'; import type { MenuProps } from 'antd'; import { CompactTheme, DarkTheme } from 'antd-token-previewer/es/icons'; import { FormattedMessage, useLocation } from 'dumi'; import useThemeAnimation from '../../../hooks/useThemeAnimation'; import type { SiteContextProps } from '../../slots/SiteContext'; import SiteContext from '../../slots/SiteContext'; import { getLocalizedPathname, isZhCN, isLocalStorageNameSupported } from '../../utils'; import Link from '../Link'; import ThemeIcon from './ThemeIcon'; export type ThemeName = 'light' | 'dark' | 'auto' | 'compact' | 'motion-off' | 'happy-work'; // 主题持久化存储键名 const ANT_DESIGN_SITE_THEME = 'ant-design-site-theme'; export interface ThemeSwitchProps { value?: ThemeName[]; } const ThemeSwitch: React.FC = () => { const { pathname, search } = useLocation(); const { theme, updateSiteConfig } = use(SiteContext); const toggleAnimationTheme = useThemeAnimation(); const lastThemeKey = useRef(theme.includes('dark') ? 'dark' : 'light'); const badge = ; // 主题选项配置 const themeOptions = [ { id: 'app.theme.switch.auto', icon: , key: 'auto', showBadge: () => theme.includes('auto'), }, { id: 'app.theme.switch.light', icon: , key: 'light', showBadge: () => theme.includes('light'), }, { id: 'app.theme.switch.dark', icon: , key: 'dark', showBadge: () => theme.includes('dark'), }, { type: 'divider', }, { id: 'app.theme.switch.compact', icon: , key: 'compact', showBadge: () => theme.includes('compact'), }, { type: 'divider', }, { id: 'app.theme.switch.happy-work', icon: , key: 'happy-work', showBadge: () => theme.includes('happy-work'), }, { type: 'divider', }, { id: 'app.footer.theme', icon: , key: 'theme-editor', extra: , isLink: true, linkPath: '/theme-editor', }, ]; // 构建下拉菜单项 const items = themeOptions.map((option, i) => { if (option.type === 'divider') { return { type: 'divider' as const, key: `divider-${i}` }; } const { id, icon, key, showBadge, extra, isLink, linkPath } = option; return { label: isLink ? ( ) : ( ), icon, key: key || i, extra: showBadge ? (showBadge() ? badge : null) : extra, }; }); // 处理主题切换 const handleThemeChange = (key: string, domEvent: React.MouseEvent) => { // 主题编辑器特殊处理 if (key === 'theme-editor') { return; } const themeKey = key as ThemeName; // 亮色/暗色/自动模式是互斥的 if (['light', 'dark', 'auto'].includes(key)) { // 校验当前主题是否包含要切换的主题(避免 timeout in DOM update) if (theme.includes(themeKey)) { return; } // 亮色/暗色模式切换时应用动画效果 if (['light', 'dark'].includes(key)) { lastThemeKey.current = key; toggleAnimationTheme(domEvent, theme.includes('dark')); } const filteredTheme = theme.filter((t) => !['light', 'dark', 'auto'].includes(t)); const newTheme = [...filteredTheme, themeKey]; updateSiteConfig({ theme: newTheme, }); // 持久化到 localStorage if (isLocalStorageNameSupported()) { localStorage.setItem(ANT_DESIGN_SITE_THEME, themeKey); } } else { // 其他主题选项是开关式的 const hasTheme = theme.includes(themeKey); updateSiteConfig({ theme: hasTheme ? theme.filter((t) => t !== themeKey) : [...theme, themeKey], }); } }; const onClick: MenuProps['onClick'] = ({ key, domEvent }) => { handleThemeChange(key, domEvent as React.MouseEvent); }; return (