2025-10-28 07:59:26 +00:00
|
|
|
import { atom } from 'jotai';
|
|
|
|
|
|
|
|
|
|
// 是否打开两侧的设置
|
2025-11-03 11:32:52 +00:00
|
|
|
export const settingOpenAtom = atom(true);
|
2025-10-28 07:59:26 +00:00
|
|
|
|
|
|
|
|
// 是否是立绘模式
|
|
|
|
|
export const isPortraitModeAtom = atom(false);
|
|
|
|
|
|
2025-11-05 11:32:23 +00:00
|
|
|
// 是否是通话模式
|
|
|
|
|
export const isPhoneCallModeAtom = atom(false);
|
|
|
|
|
|
2025-10-28 07:59:26 +00:00
|
|
|
// 左侧 tab active key
|
|
|
|
|
export const leftTabActiveKeyAtom = atom<'info' | 'history'>('info');
|
|
|
|
|
|
|
|
|
|
// 左侧 角色历史列表
|
|
|
|
|
export const historyListOpenAtom = atom<boolean>(false);
|