feat: Phase 4-5 — demo mode, polish, deploy, and bug fixes

Add demo mode with mock data provider, Docker deployment, Playwright
tests, PostHog analytics, error boundaries, and SEO metadata. Fix
residences API response unwrapping, kanban drag-and-drop with optimistic
updates, trailing slash proxy redirects, and column name mismatches with
Go API.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-03-03 11:37:41 -06:00
parent 5a50d77515
commit 7884ebbfd4
133 changed files with 3904 additions and 300 deletions
+11 -4
View File
@@ -1,13 +1,14 @@
"use client";
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import * as authApi from '@/lib/api/auth';
import { useDataProvider } from '@/lib/demo/data-provider-context';
import { useRouter } from 'next/navigation';
export function useCurrentUser() {
const { auth } = useDataProvider();
return useQuery({
queryKey: ['auth', 'user'],
queryFn: () => authApi.getCurrentUser(),
queryFn: () => auth.getCurrentUser(),
retry: false,
staleTime: 5 * 60 * 1000, // 5 minutes
});
@@ -16,12 +17,18 @@ export function useCurrentUser() {
export function useLogout() {
const queryClient = useQueryClient();
const router = useRouter();
const { auth, basePath } = useDataProvider();
return useMutation({
mutationFn: () => authApi.logout(),
mutationFn: () => auth.logout(),
onSuccess: () => {
queryClient.clear();
router.push('/login');
// In demo mode, redirect to /demo; in real mode, redirect to /login
if (basePath.startsWith('/demo')) {
router.push('/demo');
} else {
router.push('/login');
}
},
});
}