Files
chat/client/shared/redux/hooks/useGroupMemberMute.ts
2026-04-25 16:36:34 +08:00

25 lines
621 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { useAppSelector } from './useAppSelector';
/**
* 获取用户禁言状态
* @param groupId 群组ID
* @param userId 用户ID
* @returns 如果没有禁言状态或者有禁言但是已过期则返回false否则返回禁言到的时间
*/
export function useGroupMemberMute(
groupId: string,
userId: string
): string | false {
const muteUntil = useAppSelector(
(state) =>
state.group.groups[groupId]?.members.find((m) => m.userId === userId)
?.muteUntil
);
if (!muteUntil || new Date(muteUntil).valueOf() < new Date().valueOf()) {
return false;
}
return muteUntil;
}