- Move authenticated home page from /[locale] to /[locale]/home - Move login page from /[locale]/login to /[locale] (new landing page) - Move all restricted pages (bill, location, year-month, print, account) under /[locale]/home - Simplify middleware to protect all routes under /home instead of using publicPages array - Update auth config: change signIn page from /login to / - Update SignInButton callback URL to redirect to /home after login - Update all internal links throughout the application to reflect new structure - Update server action redirects in navigationActions.ts - Public share routes (/share/*) remain unchanged 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
"use client";
|
|
|
|
import { PrinterIcon } from '@heroicons/react/24/outline';
|
|
import { useTranslations } from 'next-intl';
|
|
import { YearMonth } from '../lib/db-types';
|
|
|
|
export interface PrintButtonProps {
|
|
yearMonth: YearMonth;
|
|
}
|
|
|
|
export const PrintButton: React.FC<PrintButtonProps> = ({ yearMonth }) => {
|
|
const t = useTranslations("home-page.month-card");
|
|
|
|
const handlePrintClick = () => {
|
|
window.open(`/home/print/${yearMonth.year}/${yearMonth.month}`, '_blank');
|
|
};
|
|
|
|
return (
|
|
<div className="card card-compact card-bordered bg-base-100 shadow-s my-1">
|
|
<button
|
|
className="card-body tooltip self-center cursor-pointer"
|
|
onClick={handlePrintClick}
|
|
data-tip={t("print-codes-tooltip")}
|
|
>
|
|
<span className='flex self-center'>
|
|
<PrinterIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
|
<span className="ml-1 self-center text-xs text-left leading-[1.2em] w-[4em]">{t("print-codes-label")}</span>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
);
|
|
}; |