Implement tasks 40, 41, 42: web push, notification bus, reminders engine

Task 40 — Web Push (VAPID):
- Add web-push package + @types/web-push
- pnpm vapid:generate script prints VAPID_PUBLIC_KEY, VAPID_PRIVATE_KEY, NEXT_PUBLIC_VAPID_PUBLIC_KEY
- push_subscriptions schema + migration 0013
- _core/push.ts: sendPush() iterates subscriptions, prunes 404/410 stale entries
- SW push/notificationclick event handlers added to generated sw.js template
- PushOptIn client component on /settings (opt-in, disable, send test)

Task 42 — Notification bus + ntfy adapter:
- notifications table + notif_push/notif_inapp/notif_ntfy user columns (migration 0013)
- _core/notify.ts: notify() fans out to push, in-app DB, and optional ntfy POST
- NotificationBell server component in AppNav: unread badge, dropdown inbox, mark-read
- NotifyChannelToggles client component in /settings

Task 41 — Reminders engine:
- fired_at + created_by added to reminders; default channel changed to 'auto'
- _core/reminders.ts: scheduleReminder (upsert), cancelReminder, listReminders, tickReminders
- tickReminders uses pg_try_advisory_xact_lock for horizontal-scale safety
- src/instrumentation.ts starts reminder worker (30s tick) on Node.js boot
- Notes actions use scheduleReminder/cancelReminder instead of raw SQL
- Calendar createEvent: optional remindMinutesBefore, deleteEvent: cancelReminder
- Calendar-shell: "Remind me 30 min before" checkbox on new event form

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ginnoir
2026-05-06 16:55:02 -05:00
co-authored by Claude Sonnet 4.6
parent ec20f1bc87
commit b6abe052c9
25 changed files with 986 additions and 85 deletions
+40
View File
@@ -0,0 +1,40 @@
"use server";
import { and, eq, isNull } from "drizzle-orm";
import { revalidatePath } from "next/cache";
import { db } from "@/lib/db";
import { notifications, users } from "@/modules/_core/schema";
import { getCurrentSession } from "@/lib/session";
export async function markNotificationRead(id: string): Promise<void> {
const { user } = await getCurrentSession();
await db
.update(notifications)
.set({ readAt: new Date() })
.where(and(eq(notifications.id, id), eq(notifications.userId, user.id)));
revalidatePath("/");
}
export async function markAllNotificationsRead(): Promise<void> {
const { user } = await getCurrentSession();
await db
.update(notifications)
.set({ readAt: new Date() })
.where(and(eq(notifications.userId, user.id), isNull(notifications.readAt)));
revalidatePath("/");
}
export async function setNotifChannel(
channel: "push" | "inapp" | "ntfy",
enabled: boolean,
): Promise<void> {
const { user } = await getCurrentSession();
const col =
channel === "push"
? { notifPush: enabled }
: channel === "inapp"
? { notifInApp: enabled }
: { notifNtfy: enabled };
await db.update(users).set(col).where(eq(users.id, user.id));
revalidatePath("/settings");
}
+26
View File
@@ -5,12 +5,15 @@ import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { ThemePicker } from "@/components/theme-picker";
import { CompletionDelaySetting } from "@/components/completion-delay-setting";
import { PushOptIn } from "@/components/push-opt-in";
import { NotifyChannelToggles } from "@/components/notify-channel-toggles";
import { revokeShareLinkAction } from "./actions";
import Link from "next/link";
export default async function SettingsPage() {
const { user } = await getCurrentSession();
const shareLinks = await getActiveShareLinks();
const ntfyConfigured = !!(process.env["NTFY_URL"] && process.env["NTFY_TOPIC"]);
return (
<div className="container max-w-2xl py-8 space-y-6">
@@ -38,6 +41,29 @@ export default async function SettingsPage() {
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Push Notifications</CardTitle>
</CardHeader>
<CardContent>
<PushOptIn />
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Notification Channels</CardTitle>
</CardHeader>
<CardContent>
<NotifyChannelToggles
push={user.notifPush}
inapp={user.notifInApp}
ntfy={user.notifNtfy}
ntfyConfigured={ntfyConfigured}
/>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Active Share Links</CardTitle>
+50
View File
@@ -0,0 +1,50 @@
"use server";
import { and, eq } from "drizzle-orm";
import { db } from "@/lib/db";
import { pushSubscriptions } from "@/modules/_core/schema";
import { getCurrentSession } from "@/lib/session";
import { sendPush } from "@/modules/_core/push";
type PushSubscriptionJSON = {
endpoint: string;
keys: { p256dh: string; auth: string };
};
export async function subscribeToPush(
sub: PushSubscriptionJSON,
userAgent: string,
): Promise<void> {
const { user } = await getCurrentSession();
await db
.insert(pushSubscriptions)
.values({
userId: user.id,
endpoint: sub.endpoint,
p256dh: sub.keys.p256dh,
auth: sub.keys.auth,
userAgent: userAgent.slice(0, 512),
})
.onConflictDoUpdate({
target: pushSubscriptions.endpoint,
set: { p256dh: sub.keys.p256dh, auth: sub.keys.auth },
});
}
export async function unsubscribeFromPush(endpoint: string): Promise<void> {
const { user } = await getCurrentSession();
await db
.delete(pushSubscriptions)
.where(
and(eq(pushSubscriptions.userId, user.id), eq(pushSubscriptions.endpoint, endpoint)),
);
}
export async function sendTestNotification(): Promise<void> {
const { user } = await getCurrentSession();
await sendPush(user.id, {
title: "famapp test",
body: "Push notifications are working!",
url: "/settings",
});
}