mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
* feat: 统一并标准化eslint * lint: napcat.webui * lint: napcat.webui * lint: napcat.core * build: fix * lint: napcat.webui * refactor: 重构eslint * Update README.md
88 lines
2.0 KiB
TypeScript
88 lines
2.0 KiB
TypeScript
import { SwitchProps, useSwitch } from '@heroui/switch';
|
|
import { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
import clsx from 'clsx';
|
|
import { FC, useEffect, useState } from 'react';
|
|
|
|
import { MoonFilledIcon, SunFilledIcon } from '@/components/icons';
|
|
|
|
import { useTheme } from '@/hooks/use-theme';
|
|
|
|
export interface ThemeSwitchProps {
|
|
className?: string
|
|
classNames?: SwitchProps['classNames']
|
|
}
|
|
|
|
export const ThemeSwitch: FC<ThemeSwitchProps> = ({
|
|
className,
|
|
classNames,
|
|
}) => {
|
|
const [isMounted, setIsMounted] = useState(false);
|
|
|
|
const { theme, toggleTheme } = useTheme();
|
|
|
|
const onChange = toggleTheme;
|
|
|
|
const {
|
|
Component,
|
|
slots,
|
|
isSelected,
|
|
getBaseProps,
|
|
getInputProps,
|
|
getWrapperProps,
|
|
} = useSwitch({
|
|
isSelected: theme === 'light',
|
|
onChange,
|
|
});
|
|
|
|
useEffect(() => {
|
|
setIsMounted(true);
|
|
}, [isMounted]);
|
|
|
|
// Prevent Hydration Mismatch
|
|
if (!isMounted) return <div className='w-6 h-6' />;
|
|
|
|
return (
|
|
<Component
|
|
aria-label={isSelected ? 'Switch to dark mode' : 'Switch to light mode'}
|
|
{...getBaseProps({
|
|
className: clsx(
|
|
'px-px transition-opacity hover:opacity-80 cursor-pointer',
|
|
className,
|
|
classNames?.base
|
|
),
|
|
})}
|
|
>
|
|
<VisuallyHidden>
|
|
<input {...getInputProps()} />
|
|
</VisuallyHidden>
|
|
<div
|
|
{...getWrapperProps()}
|
|
className={slots.wrapper({
|
|
class: clsx(
|
|
[
|
|
'w-auto h-auto',
|
|
'bg-transparent',
|
|
'rounded-lg',
|
|
'flex items-center justify-center',
|
|
'group-data-[selected=true]:bg-transparent',
|
|
'!text-default-500',
|
|
'pt-px',
|
|
'px-0',
|
|
'mx-0',
|
|
],
|
|
classNames?.wrapper
|
|
),
|
|
})}
|
|
>
|
|
{isSelected
|
|
? (
|
|
<MoonFilledIcon size={22} />
|
|
)
|
|
: (
|
|
<SunFilledIcon size={22} />
|
|
)}
|
|
</div>
|
|
</Component>
|
|
);
|
|
};
|