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
4 years ago
|
import type { UserLoginInfo } from '../../model/user';
|
||
4 years ago
|
import { useAppSelector } from './useAppSelector';
|
||
|
|
||
4 years ago
|
/**
|
||
|
* 获取当前用户基本信息
|
||
|
*/
|
||
|
export function useUserInfo(): UserLoginInfo | null {
|
||
|
return useAppSelector((state) => state.user.info);
|
||
|
}
|
||
|
|
||
4 years ago
|
/**
|
||
|
* 用户基本Id
|
||
|
*/
|
||
|
export function useUserId(): string | undefined {
|
||
4 years ago
|
return useUserInfo()?._id;
|
||
4 years ago
|
}
|