'use client' import { useEffect, useState } from 'react' import { useLocale, useTranslations } from 'next-intl' import { Check } from 'lucide-react' import { AttnLine } from '@/components/ui/attn-line' import { Skeleton } from '@/components/ui/skeleton' import { getErrorMessage, type ErrorLocale } from '@/lib/errors/get-error-message' import { SettingsGroup, SettingsRow, SettingsRowEnd, SettingsRowNote, SettingsSectionHeader, } from '@/components/settings/SettingsRows' import { formatDateLong } from '@/lib/utils' import { BillingActions } from '@/components/settings/BillingActions' import { ILLUSTRATIONS, illustrationSrc } from '@/components/onboarding/onboarding-illustrations' // What the paid tier unlocks (mirrors lib/entitlements PAID_CAPABILITIES). const INCLUDED = [ 'AI-assistent: chatt, kategorisering och dokumenttolkning', 'Bankkoppling och automatisk synk (PSD2)', 'Skatteverket: moms- och AGI-inlämning', 'E-postutskick av fakturor, påminnelser och lönebesked', ] // What stays free forever (freeze-and-retain, nothing is taken away). Shown // as the second column of the flat feature list so the paid tier reads // strongest right next to it. Mirrors the old ALWAYS_FREE copy. const ALWAYS_FREE = [ 'Bokföring och rapporter', 'Fakturering', 'SIE-export', 'Org.nr-uppslag och momsnummerkontroll', ] // Mirrors the checkout route's deferred-first-charge condition (Stripe's 48h // trial_end floor plus clock margin). Above this, checkout collects the card // but the first charge lands when the trial ends. const DEFER_THRESHOLD_MS = 49 * 3600 * 1000 interface BillingView { isPaying: boolean configured: boolean trialEndsAt: string | null daysLeft: number | null chargeDeferred: boolean paidJustNow: boolean isDemo: boolean } /** * Decorative masthead: the marketing site's halftone Stockholm skyline as a * quiet wide banner, echoing the onboarding backdrop so the paid surface * feels like the same product. Purely decorative (aria-hidden, empty alt), * no text, one gesture. */ function BillingHero() { const art = ILLUSTRATIONS['about-stockholm'] return (
{/* Anchored so the skyline's waterline sits on the strip's bottom edge (the water reflection falls below it), spires reaching up into the strip: same physics as the onboarding backdrop. */} {/* eslint-disable-next-line @next/next/no-img-element */}
) } function FeatureList({ heading, items }: { heading: string; items: string[] }) { return (

{heading}

) } /** * Settings → Abonnemang. Rendered both as the full page (thin wrapper) and * inside the settings modal (via SETTINGS_SECTIONS), so it's a client component * that reads its state from GET /api/billing/status. */ export function BillingSettingsContent() { const tNav = useTranslations('settings_nav') const tIntro = useTranslations('settings_intro') const tBilling = useTranslations('settings_billing') const errorLocale = useLocale() as ErrorLocale // null = the billing state is not known: still loading, or the read failed // (loadError). A failed GET must never render a fabricated non-paying, // unconfigured panel to a paying customer. const [view, setView] = useState(null) // detail === null: transient, so the line carries a retry. A detail sentence // means the user has to act (an expired session) and a retry cannot help. const [loadError, setLoadError] = useState<{ detail: string | null } | null>(null) const [reloadKey, setReloadKey] = useState(0) useEffect(() => { let active = true async function load() { setLoadError(null) try { const res = await fetch('/api/billing/status') if (!res.ok) { // Not-JSON bodies (an HTML error page, an empty 502) leave null, and // getErrorMessage falls back to the status map. const body = await res.json().catch(() => null) if (!active) return const sessionGone = res.status === 401 || res.status === 403 setView(null) setLoadError({ detail: sessionGone ? getErrorMessage(body, { statusCode: res.status, locale: errorLocale }) : null, }) return } // A 200 whose body will not parse throws into the catch below; a 200 // without the expected booleans is a failed read too. Neither may // become a fabricated view. const d = (await res.json()) as { isPaying?: unknown configured?: unknown trialEndsAt?: unknown isDemo?: unknown } if (!active) return if (typeof d?.isPaying !== 'boolean' || typeof d?.configured !== 'boolean') { setView(null) setLoadError({ detail: null }) return } const trialEndsAt = typeof d.trialEndsAt === 'string' ? d.trialEndsAt : null // Compute time-derived state here (effect), not during render, to keep render pure. const msLeft = trialEndsAt ? new Date(trialEndsAt).getTime() - Date.now() : null const daysLeft = msLeft !== null ? Math.max(0, Math.ceil(msLeft / 86_400_000)) : null const chargeDeferred = msLeft !== null && msLeft > DEFER_THRESHOLD_MS // Set by the checkout success redirect. Provisioning happens via the // Stripe webhook, so isPaying can lag the redirect by a few seconds. const paidJustNow = new URLSearchParams(window.location.search).get('success') === '1' setView({ isPaying: d.isPaying, configured: d.configured, trialEndsAt, daysLeft, chargeDeferred, paidJustNow, isDemo: d.isDemo === true, }) } catch { if (active) { setView(null) setLoadError({ detail: null }) } } } void load() return () => { active = false } }, [reloadKey, errorLocale]) const header = ( <> ) if (!view) { return (
{header} {/* Live region always mounted so the failure is announced when it appears, not merely inserted. */}
{loadError && ( setReloadKey((k) => k + 1) } } > {loadError.detail ? `${tBilling('load_failed')} ${loadError.detail}` : tBilling('load_failed')} )}
{!loadError && (
)}
) } // Demo / sandbox account → can't check out. Show the value prop but point // them to creating a real account instead of a pay button that would 403. if (view.isDemo) { return (
{header} Demo Du provkör Accounted i en demo. Skapa ett riktigt konto för att aktivera abonnemang, AI-assistent, bankkoppling och inlämning till Skatteverket.
    {INCLUDED.map((item) => (
  • ))}
) } // Paying company → manage view. if (view.isPaying) { return (
{header} Aktivt Du kan hantera eller avsluta det när som helst. Byt kort, ändra plan eller säg upp via Stripes kundportal.
    {INCLUDED.map((item) => (
  • ))}
) } // Just returned from checkout but the webhook hasn't flipped isPaying yet → // confirm instead of re-showing the sell pitch to someone who already paid. if (view.paidJustNow) { return (
{header} Ladda om sidan om du inte ser ändringen.
) } // Trialing / expired → sell view. const { trialEndsAt, daysLeft } = view const deferredTo = view.chargeDeferred ? trialEndsAt : null return (
{header} {/* Consequential trial countdown: one attn-tone sentence, not a banner. */} {daysLeft !== null && ( {daysLeft > 0 ? `Din provperiod löper ut om ${daysLeft} ${daysLeft === 1 ? 'dag' : 'dagar'}${ trialEndsAt ? ` (${formatDateLong(trialEndsAt)})` : '' }. ${ deferredTo ? 'Lägg till ditt kort nu: inget dras förrän provperioden är slut.' : 'Lägg till betalning nu så fortsätter allt utan avbrott.' }` : 'Din provperiod har löpt ut. Aktivera abonnemanget för att få tillbaka AI, bankkoppling och inlämning.'} )}
{deferredTo && ( Du lägger till ditt kort. Inget dras nu. {formatDateLong(deferredTo)}}> Provperioden slutar och den första debiteringen sker. Avsluta direkt via Stripe. Före {formatDateLong(deferredTo)} kostar det ingenting. )}
) }