✅ E2.S1: Tailwind config update - Teal-700 (#0F766E) als PRIMARY brand color (5.47:1 contrast) - Amber-600→700 gradient voor AI features - Updated ring color naar teal-700 voor WCAG AA ✅ E2.S2: Global CSS variables - --color-brand → teal-700 (was blue-600) - --color-info → teal-700 (was blue-500) - --color-input-focus → teal-700 (was blue-500) - --color-ai toegevoegd → amber-600 ✅ E2.S3: Component color updates - components/ui/sign-in.tsx: Alle blue → teal - components/ui/timeline.tsx: Gradient blue → teal - components/ui/reading-progress.tsx: Progress bar blue → teal - components/ui/modern-side-bar.tsx: Logo, active states blue → teal ✅ E2.S4: AIButton component - Nieuw component: components/ui/ai-button.tsx - Amber-600→700 gradient voor WCAG compliance - 3 variants: default, outline, ghost - Loading state + Sparkles icon - Fully accessible (WCAG AA focus states) ✅ E2.S5: Contrast testing - scripts/test-contrast.ts: Automated WCAG testing - docs/design/wcag-compliance.md: Compliance documentatie - Resultaten: 7/11 AA Normal (4.5:1), 11/11 AA Large (3:1) ✅ WCAG AA Compliance: ✅ PASS - Teal-700 op wit: 5.47:1 (AA Normal) - White op teal-700: 5.47:1 (AA Normal) - White op amber-600: 3.19:1 (AA Large - OK voor buttons) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
119 lines
2.6 KiB
TypeScript
119 lines
2.6 KiB
TypeScript
/**
|
|
* Supabase Auth Server Utilities
|
|
*
|
|
* Server-side auth helpers for API routes, middleware, and server components
|
|
*/
|
|
|
|
import { createServerClient } from '@supabase/ssr'
|
|
import { cookies } from 'next/headers'
|
|
import type { Database } from '@/lib/database.types'
|
|
|
|
/**
|
|
* Create Supabase client for server-side use
|
|
* Handles cookies for session management
|
|
*/
|
|
export async function createClient() {
|
|
const cookieStore = await cookies()
|
|
|
|
return createServerClient<Database>(
|
|
process.env.NEXT_PUBLIC_SUPABASE_URL!,
|
|
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!,
|
|
{
|
|
cookies: {
|
|
getAll() {
|
|
return cookieStore.getAll()
|
|
},
|
|
setAll(cookiesToSet) {
|
|
try {
|
|
cookiesToSet.forEach(({ name, value, options }) =>
|
|
cookieStore.set(name, value, options)
|
|
)
|
|
} catch {
|
|
// The `setAll` method was called from a Server Component.
|
|
// This can be ignored if you have middleware refreshing
|
|
// user sessions.
|
|
}
|
|
},
|
|
},
|
|
}
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Get current session (server-side)
|
|
*/
|
|
export async function getSession() {
|
|
const supabase = await createClient()
|
|
const { data: { session }, error } = await supabase.auth.getSession()
|
|
|
|
if (error) throw error
|
|
|
|
return session
|
|
}
|
|
|
|
/**
|
|
* Get current user (server-side)
|
|
*/
|
|
export async function getUser() {
|
|
const supabase = await createClient()
|
|
const { data: { user }, error } = await supabase.auth.getUser()
|
|
|
|
if (error) throw error
|
|
|
|
return user
|
|
}
|
|
|
|
/**
|
|
* Require authentication - throws if not authenticated
|
|
* Use in API routes and server actions
|
|
*/
|
|
export async function requireAuth() {
|
|
const session = await getSession()
|
|
|
|
if (!session) {
|
|
throw new Error('Authentication required')
|
|
}
|
|
|
|
return session
|
|
}
|
|
|
|
/**
|
|
* Check if user is authenticated (server-side)
|
|
*/
|
|
export async function isAuthenticated() {
|
|
const session = await getSession()
|
|
return !!session
|
|
}
|
|
|
|
/**
|
|
* Check if current user is a demo user (server-side)
|
|
* @deprecated Demo users are no longer supported
|
|
*/
|
|
export async function isDemoUser(): Promise<boolean> {
|
|
return false
|
|
}
|
|
|
|
/**
|
|
* Get demo user info (server-side)
|
|
* @deprecated Demo users are no longer supported
|
|
*/
|
|
export async function getDemoUserInfo() {
|
|
return null
|
|
}
|
|
|
|
/**
|
|
* Check if demo user has write access
|
|
* @deprecated All authenticated users can write
|
|
*/
|
|
export async function canWrite(): Promise<boolean> {
|
|
return true
|
|
}
|
|
|
|
/**
|
|
* Track demo user login
|
|
* @deprecated Demo users are no longer supported
|
|
*/
|
|
export async function trackDemoLogin(_userId: string) {
|
|
// No-op
|
|
}
|