feat(notifications): add real-time notification system

Add database tables for notifications and WebSocket tickets
Implement REST API and WebSocket server for real-time delivery
Add NotificationBell component with dropdown and unread badge
Trigger alerts for comments, reactions, and AI moderation results
This commit is contained in:
2026-05-04 10:40:14 +08:00
parent 579d092020
commit a25f1661b5
12 changed files with 1811 additions and 0 deletions

View File

@@ -1,6 +1,10 @@
import type { FastifyBaseLogger } from 'fastify';
import { createHash } from 'node:crypto';
import { pool, query, queryOne } from './db.ts';
import {
createApprovedCommentNotification,
createModerationResultNotification
} from './notifications.ts';
export type AiModerationStatus = 'unreviewed' | 'reviewing' | 'approved' | 'rejected' | 'failed';
export type AiModerationTargetType = 'life-post' | 'life-comment' | 'discussion-comment';
@@ -643,6 +647,26 @@ async function updateTargetStatus(
languageCode: string | null
): Promise<void> {
await pool.query(targetQueries[target.type].updateStatus, [target.id, status, languageCode]);
if (status !== 'approved' && status !== 'rejected' && status !== 'failed') {
return;
}
try {
await createModerationResultNotification(target, status);
if (status === 'approved') {
await createApprovedCommentNotification(target);
}
} catch (error) {
logger?.warn(
{
err: moderationLogError(error),
targetType: target.type,
targetId: target.id
},
'Notification dispatch failed'
);
}
}
async function waitForRequestSlot(requestsPerMinute: number): Promise<void> {