|
|
|
import { Option, Select } from "@mui/joy";
|
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { globalService, userService } from "../services";
|
|
|
|
import { useAppSelector } from "../store";
|
|
|
|
import Icon from "./Icon";
|
|
|
|
|
|
|
|
const appearanceList = ["light", "dark"];
|
|
|
|
|
|
|
|
const AppearanceSelect = () => {
|
|
|
|
const user = useAppSelector((state) => state.user.user);
|
|
|
|
const appearance = useAppSelector((state) => state.global.appearance);
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
const getPrefixIcon = (apperance: Appearance) => {
|
|
|
|
const className = "w-4 h-auto";
|
|
|
|
if (apperance === "light") {
|
|
|
|
return <Icon.Sun className={className} />;
|
|
|
|
} else if (apperance === "dark") {
|
|
|
|
return <Icon.Moon className={className} />;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleSelectChange = async (appearance: Appearance) => {
|
|
|
|
if (user) {
|
|
|
|
await userService.upsertUserSetting("appearance", appearance);
|
|
|
|
}
|
|
|
|
globalService.setAppearance(appearance);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Select
|
|
|
|
className="!min-w-[10rem] w-auto text-sm"
|
|
|
|
value={appearance}
|
|
|
|
onChange={(_, appearance) => {
|
|
|
|
if (appearance) {
|
|
|
|
handleSelectChange(appearance);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
startDecorator={getPrefixIcon(appearance)}
|
|
|
|
>
|
|
|
|
{appearanceList.map((item) => (
|
|
|
|
<Option key={item} value={item} className="whitespace-nowrap">
|
|
|
|
{t(`setting.apperance-option.${item}`)}
|
|
|
|
</Option>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AppearanceSelect;
|