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.
tailchat/client/shared/redux/hooks/useUserInfo.ts

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;
}