All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 12s
- Sidebar: dynamic brand-accent colors, brainstorm section restyled - AI chat general: popup panel with expand/collapse, hides when contextual AI open - AI chat contextual: tabs reordered (Actions first), X close button, height fix - Settings: all tabs restyled, 6 new color presets (sage, terracotta, iron, etc.) - Global color cleanup: emerald/orange hardcoded → brand-accent dynamic - Brainstorm page: orange → brand-accent throughout - PageEntry animation component added to key pages - Floating AI button: bg-brand-accent instead of hardcoded black - i18n: all 15 locales updated with new AI/billing keys - Billing: freemium quota tracking, BYOK, stripe subscription scaffolding - Admin: integrated into new design - AGENTS.md + CLAUDE.md project rules added
90 lines
2.4 KiB
TypeScript
90 lines
2.4 KiB
TypeScript
'use server'
|
|
|
|
import { auth } from '@/auth'
|
|
import { prisma } from '@/lib/prisma'
|
|
import { revalidatePath, updateTag } from 'next/cache'
|
|
import { unstable_cache } from 'next/cache'
|
|
import { normalizeThemeId, type ThemeId } from '@/lib/apply-document-theme'
|
|
|
|
export type UserSettingsData = {
|
|
theme?: ThemeId
|
|
cardSizeMode?: 'variable' | 'uniform'
|
|
accentColor?: string
|
|
}
|
|
|
|
/**
|
|
* Update user settings (theme, etc.)
|
|
*/
|
|
export async function updateUserSettings(settings: UserSettingsData) {
|
|
const session = await auth()
|
|
|
|
if (!session?.user?.id) {
|
|
console.error('[updateUserSettings] Unauthorized')
|
|
throw new Error('Unauthorized')
|
|
}
|
|
|
|
try {
|
|
const data: { theme?: string; cardSizeMode?: 'variable' | 'uniform'; accentColor?: string } = {}
|
|
if (settings.theme !== undefined) data.theme = normalizeThemeId(settings.theme)
|
|
if (settings.cardSizeMode !== undefined) data.cardSizeMode = settings.cardSizeMode
|
|
if (settings.accentColor !== undefined) data.accentColor = settings.accentColor
|
|
|
|
await prisma.user.update({
|
|
where: { id: session.user.id },
|
|
data,
|
|
})
|
|
|
|
revalidatePath('/', 'layout')
|
|
updateTag('user-settings')
|
|
|
|
return { success: true }
|
|
} catch (error) {
|
|
console.error('Error updating user settings:', error)
|
|
throw new Error('Failed to update user settings: ' + (error instanceof Error ? error.message : String(error)))
|
|
}
|
|
}
|
|
|
|
const getCachedUserSettings = unstable_cache(
|
|
async (userId: string) => {
|
|
try {
|
|
const user = await prisma.user.findUnique({
|
|
where: { id: userId },
|
|
select: { theme: true, cardSizeMode: true, accentColor: true },
|
|
})
|
|
|
|
return {
|
|
theme: normalizeThemeId(user?.theme || 'light'),
|
|
cardSizeMode: (user?.cardSizeMode || 'variable') as 'variable' | 'uniform',
|
|
accentColor: user?.accentColor || '#A47148',
|
|
}
|
|
} catch (error) {
|
|
console.error('Error getting user settings:', error)
|
|
return {
|
|
theme: 'light' as const satisfies ThemeId,
|
|
cardSizeMode: 'variable' as const,
|
|
}
|
|
}
|
|
},
|
|
['user-settings'],
|
|
{ tags: ['user-settings'] }
|
|
)
|
|
|
|
export async function getUserSettings(userId?: string) {
|
|
let id = userId
|
|
|
|
if (!id) {
|
|
const session = await auth()
|
|
id = session?.user?.id
|
|
}
|
|
|
|
if (!id) {
|
|
return {
|
|
theme: 'light' as const satisfies ThemeId,
|
|
cardSizeMode: 'variable' as const,
|
|
accentColor: '#A47148',
|
|
}
|
|
}
|
|
|
|
return getCachedUserSettings(id)
|
|
}
|