UX全体にテーマと言語設定を追加。 - lib/db/migrations/004_user_prefs.sql: users に theme/locale 列を追加(既定 dark/en) - lib/i18n/: dictionary(en/ja) + I18nProvider(クライアントcontext: locale/theme/t/setLocale/setTheme) + server.ts(SSR用 getLocale/getTheme/translate) + constants.ts - app/layout.tsx: theme/locale Cookie を読み <html class/lang> をSSR、I18nProvider でラップ(フラッシュなし) - tailwind darkMode:'class' + 全画面に dark: バリアントを一括付与(Nodeスクリプト lookbehind で安全に変換) - components/layout/ThemeToggle: 即時クラス切替+Cookie+永続化 - app/profile: テーマ/言語セレクタ、chrome翻訳(Header/ProjectNav/login/dashboard/profile) - PATCH /api/users/me: theme/locale を受理(バリデーション→400)、Cookieを設定 - E2E: locale=ja storageState で既存JAアサーションを維持、theme-i18n.spec で既定en/darkと切替を検証
189 lines
6.3 KiB
TypeScript
189 lines
6.3 KiB
TypeScript
'use client';
|
|
|
|
import { useEffect, useState, type FormEvent } from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import type { PublicUser } from '@/lib/auth/getCurrentUser';
|
|
import { useI18n } from '@/lib/i18n/I18nProvider';
|
|
|
|
export default function ProfilePage() {
|
|
const router = useRouter();
|
|
const { t, locale, theme, setLocale, setTheme } = useI18n();
|
|
const [user, setUser] = useState<PublicUser | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [name, setName] = useState('');
|
|
const [email, setEmail] = useState('');
|
|
const [avatarUrl, setAvatarUrl] = useState('');
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [saved, setSaved] = useState(false);
|
|
|
|
useEffect(() => {
|
|
fetch('/api/auth/me')
|
|
.then((res) => (res.ok ? res.json() : Promise.reject(res)))
|
|
.then((data: { user: PublicUser }) => {
|
|
setUser(data.user);
|
|
setName(data.user.name);
|
|
setEmail(data.user.email);
|
|
setAvatarUrl(data.user.avatarUrl ?? '');
|
|
})
|
|
.catch(() => router.push('/login'))
|
|
.finally(() => setLoading(false));
|
|
}, [router]);
|
|
|
|
async function onSubmit(event: FormEvent<HTMLFormElement>) {
|
|
event.preventDefault();
|
|
setError(null);
|
|
setSaved(false);
|
|
const res = await fetch('/api/users/me', {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ name, email, avatarUrl }),
|
|
});
|
|
if (res.ok) {
|
|
const data = (await res.json()) as { user: PublicUser };
|
|
setUser(data.user);
|
|
setSaved(true);
|
|
} else {
|
|
const data = (await res.json().catch(() => null)) as {
|
|
error?: { message?: string };
|
|
} | null;
|
|
setError(data?.error?.message ?? t('auth.failed'));
|
|
}
|
|
}
|
|
|
|
async function onLogout() {
|
|
await fetch('/api/auth/logout', { method: 'POST' });
|
|
router.push('/login');
|
|
}
|
|
|
|
if (loading) {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center bg-gray-50 dark:bg-gray-900">
|
|
<p className="text-gray-500 dark:text-gray-400">
|
|
{t('common.loading')}
|
|
</p>
|
|
</main>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<main className="min-h-screen bg-gray-50 p-8 dark:bg-gray-900">
|
|
<div className="mx-auto max-w-md rounded-lg border bg-white p-8 shadow-sm dark:border-gray-700 dark:bg-gray-800">
|
|
<div className="flex items-center justify-between">
|
|
<h1 className="text-2xl font-bold">{t('profile.title')}</h1>
|
|
<button
|
|
type="button"
|
|
onClick={onLogout}
|
|
className="text-sm text-blue-600 hover:underline dark:text-blue-400"
|
|
>
|
|
{t('header.logout')}
|
|
</button>
|
|
</div>
|
|
|
|
<form className="mt-6 space-y-4" onSubmit={onSubmit}>
|
|
<div>
|
|
<label htmlFor="name" className="block text-sm font-medium">
|
|
{t('profile.displayName')}
|
|
</label>
|
|
<input
|
|
id="name"
|
|
type="text"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
className="mt-1 w-full rounded border px-3 py-2 dark:border-gray-600 dark:bg-gray-700"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="email" className="block text-sm font-medium">
|
|
{t('profile.email')}
|
|
</label>
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="mt-1 w-full rounded border px-3 py-2 dark:border-gray-600 dark:bg-gray-700"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="avatarUrl" className="block text-sm font-medium">
|
|
{t('profile.avatarUrl')}
|
|
</label>
|
|
<input
|
|
id="avatarUrl"
|
|
type="url"
|
|
value={avatarUrl}
|
|
onChange={(e) => setAvatarUrl(e.target.value)}
|
|
className="mt-1 w-full rounded border px-3 py-2 dark:border-gray-600 dark:bg-gray-700"
|
|
/>
|
|
</div>
|
|
|
|
{error && (
|
|
<p className="text-sm text-red-600" role="alert">
|
|
{error}
|
|
</p>
|
|
)}
|
|
{saved && (
|
|
<p className="text-sm text-green-600">{t('profile.saved')}</p>
|
|
)}
|
|
|
|
<button
|
|
type="submit"
|
|
className="w-full rounded bg-blue-600 px-4 py-2 font-medium text-white hover:bg-blue-700"
|
|
>
|
|
{t('common.save')}
|
|
</button>
|
|
</form>
|
|
|
|
<div className="mt-6 space-y-3 border-t pt-4 dark:border-gray-700">
|
|
<div>
|
|
<label htmlFor="theme-select" className="block text-sm font-medium">
|
|
{t('profile.theme')}
|
|
</label>
|
|
<select
|
|
id="theme-select"
|
|
value={theme}
|
|
onChange={(e) =>
|
|
void setTheme(e.target.value as 'dark' | 'light')
|
|
}
|
|
className="mt-1 w-full rounded border px-3 py-2 dark:border-gray-600 dark:bg-gray-700"
|
|
data-testid="profile-theme-select"
|
|
>
|
|
<option value="dark">{t('theme.dark')}</option>
|
|
<option value="light">{t('theme.light')}</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label
|
|
htmlFor="locale-select"
|
|
className="block text-sm font-medium"
|
|
>
|
|
{t('profile.language')}
|
|
</label>
|
|
<select
|
|
id="locale-select"
|
|
value={locale}
|
|
onChange={(e) => setLocale(e.target.value as 'en' | 'ja')}
|
|
className="mt-1 w-full rounded border px-3 py-2 dark:border-gray-600 dark:bg-gray-700"
|
|
data-testid="profile-locale-select"
|
|
>
|
|
<option value="en">{t('language.english')}</option>
|
|
<option value="ja">{t('language.japanese')}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<button
|
|
type="button"
|
|
onClick={() => router.push('/dashboard')}
|
|
className="mt-4 w-full text-center text-sm text-blue-600 hover:underline dark:text-blue-400"
|
|
>
|
|
{t('profile.backToDashboard')}
|
|
</button>
|
|
<p className="mt-2 text-center text-xs text-gray-500 dark:text-gray-400">
|
|
{t('profile.role')}: {user?.role}
|
|
</p>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|