86 lines
2.1 KiB
TypeScript
86 lines
2.1 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'
|
|
}
|
|
|
|
/**
|
|
* 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' } = {}
|
|
if (settings.theme !== undefined) data.theme = normalizeThemeId(settings.theme)
|
|
if (settings.cardSizeMode !== undefined) data.cardSizeMode = settings.cardSizeMode
|
|
|
|
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')
|
|
}
|
|
}
|
|
|
|
const getCachedUserSettings = unstable_cache(
|
|
async (userId: string) => {
|
|
try {
|
|
const user = await prisma.user.findUnique({
|
|
where: { id: userId },
|
|
select: { theme: true, cardSizeMode: true },
|
|
})
|
|
|
|
return {
|
|
theme: normalizeThemeId(user?.theme || 'light'),
|
|
cardSizeMode: (user?.cardSizeMode || 'variable') as 'variable' | 'uniform',
|
|
}
|
|
} 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,
|
|
}
|
|
}
|
|
|
|
return getCachedUserSettings(id)
|
|
}
|