mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-08-01 03:17:59 +00:00

* feat: Add Traditional Chinese language UI locale * chore: 添加新翻译 --------- Co-authored-by: ChenZhaoYu <790348264@qq.com>
27 lines
635 B
TypeScript
27 lines
635 B
TypeScript
import { ss } from '@/utils/storage'
|
|
|
|
const LOCAL_NAME = 'appSetting'
|
|
|
|
export type Theme = 'light' | 'dark' | 'auto'
|
|
|
|
export type Language = 'zh-CN' | 'zh-TW' | 'en-US'
|
|
|
|
export interface AppState {
|
|
siderCollapsed: boolean
|
|
theme: Theme
|
|
language: Language
|
|
}
|
|
|
|
export function defaultSetting(): AppState {
|
|
return { siderCollapsed: false, theme: 'light', language: 'zh-CN' }
|
|
}
|
|
|
|
export function getLocalSetting(): AppState {
|
|
const localSetting: AppState | undefined = ss.get(LOCAL_NAME)
|
|
return { ...defaultSetting(), ...localSetting }
|
|
}
|
|
|
|
export function setLocalSetting(setting: AppState): void {
|
|
ss.set(LOCAL_NAME, setting)
|
|
}
|