feat: implement routines feature for child and parent modes
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m23s

- Added backend models for routines, routine items, and schedules.
- Created API endpoints for managing routines and their items.
- Implemented frontend components for routine creation, detail view, and assignment.
- Integrated routines into child view with a scrolling list and approval workflow.
- Added push notifications for routine confirmations and pending approvals.
- Refactored existing components to accommodate new routines functionality.
- Updated tests to cover new routines feature and ensure proper functionality.
This commit is contained in:
2026-04-28 23:30:52 -04:00
parent c840825549
commit 6bf10fda2f
19 changed files with 422 additions and 126 deletions

View File

@@ -36,6 +36,31 @@ function urlBase64ToUint8Array(base64String: string): Uint8Array {
return Uint8Array.from([...rawData].map((c) => c.charCodeAt(0)))
}
function uint8ArraysEqual(a: Uint8Array, b: Uint8Array): boolean {
if (a.length !== b.length) return false
for (let i = 0; i < a.length; i += 1) {
if (a[i] !== b[i]) return false
}
return true
}
async function postSubscriptionToBackend(subscription: PushSubscription): Promise<boolean> {
const subJson = subscription.toJSON()
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
const res = await fetch('/api/push-subscription', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
endpoint: subJson.endpoint,
keys: subJson.keys,
timezone,
}),
})
return res.ok
}
/**
* Request notification permission and subscribe to push notifications.
* Posts the subscription to the backend, including the user's timezone.
@@ -105,32 +130,79 @@ export async function subscribeToPushWithResult(): Promise<PushSubscribeResult>
}
}
const subJson = subscription.toJSON()
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
let res: Response
try {
res = await fetch('/api/push-subscription', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
endpoint: subJson.endpoint,
keys: subJson.keys,
timezone,
}),
})
const ok = await postSubscriptionToBackend(subscription)
if (!ok) {
return { ok: false, reason: 'backend_error', detail: 'HTTP error posting subscription' }
}
} catch (fetchErr) {
console.warn('[Push] Network error posting subscription:', fetchErr)
return { ok: false, reason: 'backend_error', detail: String(fetchErr) }
}
if (!res.ok) {
const body = await res.text().catch(() => '')
console.warn(`[Push] Backend rejected subscription: HTTP ${res.status}`, body)
return { ok: false, reason: 'backend_error', detail: `HTTP ${res.status}: ${body}` }
return { ok: true }
}
/**
* Silent self-heal path used on app startup/login.
* - Never prompts for permission.
* - If already subscribed with a stale VAPID key, rotates the browser subscription.
* - Ensures backend has the current endpoint/keys.
*/
export async function ensurePushSubscriptionSynced(): Promise<boolean> {
if (!('serviceWorker' in navigator) || !('PushManager' in window)) return false
if (Notification.permission !== 'granted') return false
const vapidKey = await fetchVapidPublicKey()
if (!vapidKey) return false
let registration: ServiceWorkerRegistration
try {
await navigator.serviceWorker.register('/sw.js')
registration = await Promise.race([
navigator.serviceWorker.ready,
new Promise<never>((_, reject) =>
setTimeout(() => reject(new Error('SW ready timeout')), 10_000),
),
])
} catch (err) {
console.warn('[Push] Service worker not ready for self-heal:', err)
return false
}
return { ok: true }
const desiredServerKey = urlBase64ToUint8Array(vapidKey)
let subscription = await registration.pushManager.getSubscription()
if (subscription) {
const existingServerKeyBuffer = subscription.options?.applicationServerKey
if (existingServerKeyBuffer) {
const existingServerKey = new Uint8Array(existingServerKeyBuffer)
const keyMatches = uint8ArraysEqual(existingServerKey, desiredServerKey)
if (!keyMatches) {
await subscription.unsubscribe()
subscription = null
}
}
}
if (!subscription) {
try {
subscription = await registration.pushManager.subscribe({
userVisibleOnly: true,
applicationServerKey: desiredServerKey,
})
} catch (err) {
console.warn('[Push] Failed to create subscription in self-heal:', err)
return false
}
}
try {
return await postSubscriptionToBackend(subscription)
} catch (err) {
console.warn('[Push] Failed to sync subscription in self-heal:', err)
return false
}
}
/**