优化
This commit is contained in:
16
client/shared/redux/hooks/useUserInfo.ts
Normal file
16
client/shared/redux/hooks/useUserInfo.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user