66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { atom } from 'jotai'
|
|
|
|
import { atomWithStorage } from 'jotai/utils'
|
|
|
|
import { SettingScreen } from '@/screens/Settings'
|
|
|
|
export const selectedSettingAtom = atom<SettingScreen | string>('My Models')
|
|
|
|
export const janSettingScreenAtom = atom<SettingScreen[]>([])
|
|
|
|
export const THEME = 'themeAppearance'
|
|
export const REDUCE_TRANSPARENT = 'reduceTransparent'
|
|
export const SPELL_CHECKING = 'spellChecking'
|
|
export const PRODUCT_ANALYTIC = 'productAnalytic'
|
|
export const PRODUCT_ANALYTIC_PROMPT = 'productAnalyticPrompt'
|
|
export const THEME_DATA = 'themeData'
|
|
export const THEME_OPTIONS = 'themeOptions'
|
|
export const THEME_PATH = 'themePath'
|
|
export const CHAT_WIDTH = 'chatWidth'
|
|
export const themesOptionsAtom = atomWithStorage<
|
|
{ name: string; value: string }[]
|
|
>(THEME_OPTIONS, [], undefined, { getOnInit: true })
|
|
|
|
export const selectedThemeIdAtom = atomWithStorage<string>(
|
|
THEME,
|
|
'',
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|
|
export const themeDataAtom = atomWithStorage<Theme | undefined>(
|
|
THEME_DATA,
|
|
undefined,
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|
|
export const reduceTransparentAtom = atomWithStorage<boolean>(
|
|
REDUCE_TRANSPARENT,
|
|
false,
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|
|
export const spellCheckAtom = atomWithStorage<boolean>(
|
|
SPELL_CHECKING,
|
|
false,
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|
|
export const productAnalyticAtom = atomWithStorage<boolean>(
|
|
PRODUCT_ANALYTIC,
|
|
false,
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|
|
export const productAnalyticPromptAtom = atomWithStorage<boolean>(
|
|
PRODUCT_ANALYTIC_PROMPT,
|
|
true,
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|
|
export const chatWidthAtom = atomWithStorage<string>(
|
|
CHAT_WIDTH,
|
|
'full',
|
|
undefined,
|
|
{ getOnInit: true }
|
|
)
|