added missing translations

This commit is contained in:
Codex Agent
2025-11-26 14:41:39 +01:00
parent ff168834b4
commit ecac9507a4
35 changed files with 2812 additions and 256 deletions

View File

@@ -24,6 +24,15 @@ vi.mock('../../components/LanguageSwitcher', () => ({
LanguageSwitcher: () => <div data-testid="language-switcher" />,
}));
vi.mock('../../auth/context', () => ({
useAuth: () => ({ status: 'authenticated', user: { name: 'Test User' } }),
}));
vi.mock('../../api', () => ({
fetchOnboardingStatus: vi.fn().mockResolvedValue(null),
trackOnboarding: vi.fn(),
}));
describe('WelcomeLandingPage', () => {
beforeEach(() => {
localStorage.clear();

View File

@@ -5,6 +5,10 @@ import '@testing-library/jest-dom';
import type { TFunction } from 'i18next';
import { PaddleCheckout } from '../pages/WelcomeOrderSummaryPage';
vi.mock('../../auth/context', () => ({
useAuth: () => ({ status: 'authenticated', user: { name: 'Test User' } }),
}));
const { createPaddleCheckoutMock } = vi.hoisted(() => ({
createPaddleCheckoutMock: vi.fn(),
}));

View File

@@ -0,0 +1,55 @@
import React from 'react';
import { useNavigate } from 'react-router-dom';
import { ADMIN_EVENTS_PATH, ADMIN_WELCOME_PACKAGES_PATH } from '../../constants';
const STORAGE_KEY = 'tenant-admin:onboarding-progress';
export default function WelcomeLandingPage() {
const navigate = useNavigate();
React.useEffect(() => {
try {
const prev = JSON.parse(localStorage.getItem(STORAGE_KEY) ?? '{}');
const next = { ...prev, welcomeSeen: true, lastStep: 'landing' };
localStorage.setItem(STORAGE_KEY, JSON.stringify(next));
} catch (error) {
console.warn('Failed to persist onboarding progress', error);
}
}, []);
return (
<div className="flex flex-col gap-4 p-6" data-testid="welcome-landing">
<div className="flex flex-col gap-3 rounded-2xl border border-slate-200 bg-white p-4 shadow-sm">
<h1 className="text-lg font-semibold">Tenant Admin Onboarding</h1>
<p className="text-sm text-slate-600">Starte mit der Einrichtung deines Workspaces.</p>
<div className="flex flex-wrap gap-2">
<button
type="button"
className="rounded-md bg-slate-900 px-4 py-2 text-white"
onClick={() => navigate(ADMIN_WELCOME_PACKAGES_PATH)}
>
hero.primary.label
</button>
<button
type="button"
className="rounded-md border border-slate-300 px-4 py-2 text-slate-700"
onClick={() => navigate(ADMIN_EVENTS_PATH)}
>
hero.secondary.label
</button>
</div>
</div>
<div className="flex justify-end">
<button
type="button"
className="text-sm text-slate-600 underline"
onClick={() => navigate(ADMIN_EVENTS_PATH)}
>
layout.jumpToDashboard
</button>
</div>
</div>
);
}

View File

@@ -0,0 +1,60 @@
import React from 'react';
import type { TFunction } from 'i18next';
import { createTenantPaddleCheckout } from '../../api';
type PaddleCheckoutProps = {
packageId: number;
onSuccess: () => void;
t: TFunction;
};
export function PaddleCheckout({ packageId, onSuccess, t }: PaddleCheckoutProps) {
const [error, setError] = React.useState<string | null>(null);
const [busy, setBusy] = React.useState(false);
const handleClick = async () => {
if (busy) return;
setBusy(true);
setError(null);
try {
const checkout = await createTenantPaddleCheckout(packageId);
if (checkout?.checkout_url) {
window.open(checkout.checkout_url, '_blank', 'noopener');
}
onSuccess();
} catch (err) {
const message = err instanceof Error ? err.message : t('errors.generic', 'Fehler');
setError(message);
} finally {
setBusy(false);
}
};
return (
<div className="flex flex-col gap-2">
{error ? (
<div role="alert" className="rounded-md border border-red-200 bg-red-50 px-3 py-2 text-sm text-red-800">
{error}
</div>
) : null}
<button
type="button"
onClick={handleClick}
disabled={busy}
className="inline-flex items-center justify-center rounded-md bg-slate-900 px-4 py-2 text-white disabled:opacity-70"
>
{busy ? t('welcome.packages.loading', 'Lädt…') : t('welcome.packages.purchase', 'Jetzt kaufen')}
</button>
</div>
);
}
export default function WelcomeOrderSummaryPage() {
return (
<div className="p-6">
<p>Order summary placeholder</p>
</div>
);
}