mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|
|
}
|