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.
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { useAppDispatch, useAppSelector } from './useAppSelector';
|
|
import { chatActions } from '../slices';
|
|
import { useEvent } from '../../hooks/useEvent';
|
|
import { getCachedAckInfo } from '../../cache/cache';
|
|
|
|
export function useAckInfoChecker() {
|
|
const ack = useAppSelector((state) => state.chat.ack);
|
|
const lastMessageMap = useAppSelector((state) => state.chat.lastMessageMap);
|
|
const dispatch = useAppDispatch();
|
|
|
|
const ensureAckInfo = useEvent((converseId: string) => {
|
|
if (
|
|
ack[converseId] === undefined ||
|
|
lastMessageMap[converseId] === undefined
|
|
) {
|
|
getCachedAckInfo(converseId).then((info) => {
|
|
if (info.ack?.lastMessageId) {
|
|
dispatch(
|
|
chatActions.setConverseAck({
|
|
converseId,
|
|
lastMessageId: info.ack.lastMessageId,
|
|
})
|
|
);
|
|
}
|
|
|
|
if (info.lastMessage?.lastMessageId) {
|
|
dispatch(
|
|
chatActions.setLastMessageMap([
|
|
{
|
|
converseId,
|
|
lastMessageId: info.lastMessage.lastMessageId,
|
|
},
|
|
])
|
|
);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
return { ensureAckInfo };
|
|
}
|