@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
14 lines (11 loc) • 562 B
text/typescript
import { useGlobalStore } from '@/store/global';
import { systemStatusSelectors } from '@/store/global/selectors';
import { useSessionStore } from '@/store/session';
import { useUserStore } from '@/store/user';
import { authSelectors } from '@/store/user/slices/auth/selectors';
export const useFetchSessions = () => {
const isDBInited = useGlobalStore(systemStatusSelectors.isDBInited);
const isLogin = useUserStore(authSelectors.isLogin);
const useFetchSessions = useSessionStore((s) => s.useFetchSessions);
useFetchSessions(isDBInited, isLogin);
};