2026-04-20 22:11:36 +07:00
|
|
|
import type { Comment } from '@bitsocial/bitsocial-react-hooks';
|
2026-04-19 13:45:24 +07:00
|
|
|
import { getCommentCommunityAddress } from './comment-utils';
|
|
|
|
|
import { getThreadTopNavigationState } from './thread-scroll-utils';
|
|
|
|
|
|
|
|
|
|
type ModQueueCommentLike = {
|
|
|
|
|
approved?: boolean;
|
|
|
|
|
author?: Comment['author'];
|
|
|
|
|
cid?: string;
|
|
|
|
|
commentModeration?: Comment['commentModeration'];
|
|
|
|
|
communityAddress?: string;
|
|
|
|
|
content?: Comment['content'];
|
|
|
|
|
deleted?: Comment['deleted'];
|
|
|
|
|
link?: Comment['link'];
|
|
|
|
|
linkHeight?: Comment['linkHeight'];
|
|
|
|
|
linkWidth?: Comment['linkWidth'];
|
|
|
|
|
number?: Comment['number'];
|
|
|
|
|
parentCid?: Comment['parentCid'];
|
|
|
|
|
pendingApproval?: boolean;
|
|
|
|
|
postCid?: Comment['postCid'];
|
|
|
|
|
reason?: Comment['reason'];
|
|
|
|
|
removed?: boolean;
|
|
|
|
|
replyCount?: Comment['replyCount'];
|
|
|
|
|
threadCid?: Comment['threadCid'];
|
|
|
|
|
thumbnailUrl?: Comment['thumbnailUrl'];
|
|
|
|
|
timestamp?: Comment['timestamp'];
|
|
|
|
|
title?: Comment['title'];
|
|
|
|
|
};
|
|
|
|
|
|
2026-04-19 15:02:36 +07:00
|
|
|
const emptyDismissedCommentCids = new Set<string>();
|
|
|
|
|
|
2026-04-19 13:45:24 +07:00
|
|
|
export type QueuedCommentRouteState = {
|
|
|
|
|
scrollThreadContainerCid?: string;
|
2026-04-19 15:02:36 +07:00
|
|
|
queuedComment?: QueuedCommentSnapshot;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type QueuedCommentSnapshot = {
|
|
|
|
|
approved?: Comment['approved'];
|
|
|
|
|
author?: Comment['author'];
|
|
|
|
|
cid?: Comment['cid'];
|
|
|
|
|
commentModeration?: Comment['commentModeration'];
|
|
|
|
|
communityAddress?: string;
|
|
|
|
|
content?: Comment['content'];
|
|
|
|
|
deleted?: Comment['deleted'];
|
|
|
|
|
link?: Comment['link'];
|
|
|
|
|
linkHeight?: Comment['linkHeight'];
|
|
|
|
|
linkWidth?: Comment['linkWidth'];
|
|
|
|
|
number?: Comment['number'];
|
|
|
|
|
parentCid?: Comment['parentCid'];
|
|
|
|
|
pendingApproval?: Comment['pendingApproval'];
|
|
|
|
|
postCid?: Comment['postCid'];
|
|
|
|
|
reason?: Comment['reason'];
|
|
|
|
|
removed?: Comment['removed'];
|
|
|
|
|
replyCount?: Comment['replyCount'];
|
|
|
|
|
threadCid?: Comment['threadCid'];
|
|
|
|
|
thumbnailUrl?: Comment['thumbnailUrl'];
|
|
|
|
|
timestamp?: Comment['timestamp'];
|
|
|
|
|
title?: Comment['title'];
|
2026-04-19 13:45:24 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getModQueueCommentRoute = (boardPath: string | undefined, commentCid: string | undefined): string | undefined =>
|
|
|
|
|
boardPath && commentCid ? `/${boardPath}/thread/${commentCid}` : undefined;
|
|
|
|
|
|
2026-04-19 15:02:36 +07:00
|
|
|
export const getQueuedCommentSnapshot = (comment: ModQueueCommentLike | undefined): QueuedCommentSnapshot | undefined => {
|
2026-04-19 13:45:24 +07:00
|
|
|
if (!comment?.cid) {
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
2026-04-19 15:02:36 +07:00
|
|
|
approved: comment.approved,
|
|
|
|
|
author: comment.author,
|
|
|
|
|
cid: comment.cid,
|
|
|
|
|
commentModeration: comment.commentModeration,
|
|
|
|
|
communityAddress: getCommentCommunityAddress(comment),
|
|
|
|
|
content: comment.content,
|
|
|
|
|
deleted: comment.deleted,
|
|
|
|
|
link: comment.link,
|
|
|
|
|
linkHeight: comment.linkHeight,
|
|
|
|
|
linkWidth: comment.linkWidth,
|
|
|
|
|
number: comment.number,
|
|
|
|
|
parentCid: comment.parentCid,
|
|
|
|
|
pendingApproval: comment.pendingApproval,
|
|
|
|
|
postCid: comment.postCid,
|
|
|
|
|
reason: comment.reason,
|
|
|
|
|
removed: comment.removed,
|
|
|
|
|
replyCount: comment.replyCount,
|
|
|
|
|
threadCid: comment.threadCid,
|
|
|
|
|
thumbnailUrl: comment.thumbnailUrl,
|
|
|
|
|
timestamp: comment.timestamp,
|
|
|
|
|
title: comment.title,
|
2026-04-19 13:45:24 +07:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2026-04-19 15:02:36 +07:00
|
|
|
export const getQueuedCommentRouteState = (comment: ModQueueCommentLike | undefined): QueuedCommentRouteState | undefined => {
|
|
|
|
|
const queuedComment = getQueuedCommentSnapshot(comment);
|
|
|
|
|
if (!queuedComment) {
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
...(queuedComment.parentCid ? {} : getThreadTopNavigationState(queuedComment.cid)),
|
|
|
|
|
queuedComment,
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const filterVisibleModQueueFeed = <T extends ModQueueCommentLike>(
|
|
|
|
|
feed: T[],
|
|
|
|
|
selectedBoardFilter: string | null,
|
|
|
|
|
dismissedCommentCids: ReadonlySet<string> = emptyDismissedCommentCids,
|
|
|
|
|
): T[] =>
|
2026-04-19 13:45:24 +07:00
|
|
|
feed.filter((comment) => {
|
2026-04-19 15:02:36 +07:00
|
|
|
if (comment.cid && dismissedCommentCids.has(comment.cid)) {
|
2026-04-19 13:45:24 +07:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!selectedBoardFilter) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return getCommentCommunityAddress(comment) === selectedBoardFilter;
|
|
|
|
|
});
|