Spaces:
Build error
Build error
| import { ss } from '@/utils/storage' | |
| const LOCAL_NAME = 'userStorage' | |
| export interface UserInfo { | |
| avatar: string | |
| name: string | |
| description: string | |
| } | |
| export interface UserState { | |
| userInfo: UserInfo | |
| } | |
| export function defaultSetting(): UserState { | |
| return { | |
| userInfo: { | |
| avatar: 'https://pnghive.com/core/images/full/chat-gpt-logo-png-1680406057.png', | |
| name: 'ChatGPT', | |
| description: 'AI assistant', | |
| }, | |
| } | |
| } | |
| export function getLocalState(): UserState { | |
| const localSetting: UserState | undefined = ss.get(LOCAL_NAME) | |
| return { ...defaultSetting(), ...localSetting } | |
| } | |
| export function setLocalState(setting: UserState): void { | |
| ss.set(LOCAL_NAME, setting) | |
| } | |