PWA対応とモバイルUX改善。 - app/manifest.ts: Nextファイルベースでマニフェスト生成(name/short_name/display:standalone/icons 192+512 any+maskable + svg) - public/icon.svg + 生成PNG(192/512): scripts/generate-icons.mjs で sharp を用いてSVGをラスタライズ - public/sw.js: アプリシェルのプリキャッシュ、ナビゲーションはネットワーク優先(オフラインはキャッシュ/'/'にフォールバック)、静的アセットはキャッシュ優先。API/非GET/クロスオリジンはキャッシュせず、res.ok&&basic でエラー/リダイレクト結果を弾く - components/pwa/ServiceWorkerRegister: 本番のみ /sw.js を登録(開発HMRとの衝突回避) - app/layout.tsx: export const viewport(device-width, cover, themeColor) + metadata.icons/appleWebApp - middleware: sw.js/manifest/icon を認証ガードから除外(ログイン前でも取得可能) - ProjectNav: 横スクロールStrip(折り返さない)、Header: モバイルでダッシュボードテキストリンクを非表示
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
'use client';
|
|
|
|
import { useRouter } from 'next/navigation';
|
|
import type { PublicUser } from '@/lib/auth/getCurrentUser';
|
|
import { NotificationBadge } from '@/components/notifications/NotificationBadge';
|
|
import { ThemeToggle } from '@/components/layout/ThemeToggle';
|
|
import { useI18n } from '@/lib/i18n/I18nProvider';
|
|
|
|
export function Header({ user }: { user: PublicUser }) {
|
|
const router = useRouter();
|
|
const { t } = useI18n();
|
|
|
|
async function handleLogout() {
|
|
await fetch('/api/auth/logout', { method: 'POST' });
|
|
router.push('/login');
|
|
router.refresh();
|
|
}
|
|
|
|
return (
|
|
<header className="flex items-center justify-between border-b bg-white px-6 py-3 dark:border-gray-700 dark:bg-gray-800">
|
|
<a
|
|
href="/dashboard"
|
|
className="font-bold text-gray-800 dark:text-gray-100"
|
|
>
|
|
{t('app.name')}
|
|
</a>
|
|
<nav className="flex items-center gap-3 text-sm sm:gap-4">
|
|
<a
|
|
href="/dashboard"
|
|
className="hidden text-gray-600 hover:underline sm:inline dark:text-gray-300"
|
|
>
|
|
{t('nav.dashboard')}
|
|
</a>
|
|
<ThemeToggle />
|
|
<NotificationBadge />
|
|
<a
|
|
href="/profile"
|
|
className="text-gray-600 hover:underline dark:text-gray-300"
|
|
>
|
|
{user.name}
|
|
</a>
|
|
<button
|
|
type="button"
|
|
onClick={handleLogout}
|
|
className="text-blue-600 hover:underline dark:text-blue-400"
|
|
>
|
|
{t('header.logout')}
|
|
</button>
|
|
</nav>
|
|
</header>
|
|
);
|
|
}
|