mirror of https://github.com/msgbyte/tailchat
17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import type { UserLoginInfo } from '../../model/user';
|
|
import { useAppSelector } from './useAppSelector';
|
|
|
|
/**
|
|
* 获取当前用户基本信息
|
|
*/
|
|
export function useUserInfo(): UserLoginInfo | null {
|
|
return useAppSelector((state) => state.user.info);
|
|
}
|
|
|
|
/**
|
|
* 用户基本Id
|
|
*/
|
|
export function useUserId(): string | undefined {
|
|
return useUserInfo()?._id;
|
|
}
|