1a7152a7af
The Abonnemang tab gets a quiet decorative masthead: the marketing site's halftone Stockholm skyline as a wide banner strip on the frame tint, waterline pinned to the strip's bottom edge (same physics as the onboarding backdrop). Shown in every billing state; purely decorative. The API tab's "Anslut MCP-klient" group gets a works-with strip using the site's monochrome halftone Claude and OpenAI marks (copied into public/illustrations and registered in the shared manifest), with a bilingual caption. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
362 lines
13 KiB
TypeScript
362 lines
13 KiB
TypeScript
'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 (
|
|
<div
|
|
aria-hidden
|
|
className="relative mt-6 h-40 overflow-hidden rounded-lg border border-border bg-frame"
|
|
>
|
|
{/* 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 */}
|
|
<img
|
|
src={illustrationSrc('about-stockholm')}
|
|
width={art.w}
|
|
height={art.h}
|
|
alt=""
|
|
loading="lazy"
|
|
decoding="async"
|
|
className="absolute bottom-0 left-1/2 w-full min-w-[640px] -translate-x-1/2 translate-y-[51%] opacity-70 dark:opacity-40 dark:invert"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function FeatureList({ heading, items }: { heading: string; items: string[] }) {
|
|
return (
|
|
<div>
|
|
<p className="text-xs font-medium text-muted-foreground">{heading}</p>
|
|
<ul className="mt-2 space-y-2">
|
|
{items.map((item) => (
|
|
<li key={item} className="flex items-start gap-2 text-sm">
|
|
<Check aria-hidden="true" className="mt-1 h-3.5 w-3.5 shrink-0 text-foreground" />
|
|
<span>{item}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
/**
|
|
* 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<BillingView | null>(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 = (
|
|
<>
|
|
<SettingsSectionHeader title={tNav('billing')} intro={tIntro('billing')} />
|
|
<BillingHero />
|
|
</>
|
|
)
|
|
|
|
if (!view) {
|
|
return (
|
|
<div>
|
|
{header}
|
|
{/* Live region always mounted so the failure is announced when it
|
|
appears, not merely inserted. */}
|
|
<div role="status" aria-live="polite" className="mt-3">
|
|
{loadError && (
|
|
<AttnLine
|
|
action={
|
|
loadError.detail
|
|
? undefined
|
|
: { label: tBilling('load_retry'), onClick: () => setReloadKey((k) => k + 1) }
|
|
}
|
|
>
|
|
{loadError.detail
|
|
? `${tBilling('load_failed')} ${loadError.detail}`
|
|
: tBilling('load_failed')}
|
|
</AttnLine>
|
|
)}
|
|
</div>
|
|
{!loadError && (
|
|
<div className="mt-6 space-y-4">
|
|
<Skeleton className="h-12 w-full" />
|
|
<Skeleton className="h-64 w-full" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// 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 (
|
|
<div>
|
|
{header}
|
|
<SettingsGroup label="Ditt abonnemang">
|
|
<SettingsRow label="Status" borderless>
|
|
<span>Demo</span>
|
|
<SettingsRowNote>
|
|
Du provkör Accounted i en demo. Skapa ett riktigt konto för att aktivera
|
|
abonnemang, AI-assistent, bankkoppling och inlämning till Skatteverket.
|
|
</SettingsRowNote>
|
|
</SettingsRow>
|
|
</SettingsGroup>
|
|
<SettingsGroup label="I abonnemanget">
|
|
<ul className="space-y-2 px-1 pt-3">
|
|
{INCLUDED.map((item) => (
|
|
<li key={item} className="flex items-start gap-2 text-sm">
|
|
<Check aria-hidden="true" className="mt-1 h-3.5 w-3.5 shrink-0 text-foreground" />
|
|
<span>{item}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</SettingsGroup>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// Paying company → manage view.
|
|
if (view.isPaying) {
|
|
return (
|
|
<div>
|
|
{header}
|
|
<SettingsGroup label="Ditt abonnemang">
|
|
<SettingsRow label="Status">
|
|
<span className="font-medium">Aktivt</span>
|
|
<SettingsRowNote>Du kan hantera eller avsluta det när som helst.</SettingsRowNote>
|
|
</SettingsRow>
|
|
<SettingsRow label="Hantera" borderless>
|
|
<SettingsRowNote>Byt kort, ändra plan eller säg upp via Stripes kundportal.</SettingsRowNote>
|
|
<SettingsRowEnd>
|
|
<BillingActions isPaying configured={view.configured} />
|
|
</SettingsRowEnd>
|
|
</SettingsRow>
|
|
</SettingsGroup>
|
|
<SettingsGroup label="I abonnemanget">
|
|
<ul className="space-y-2 px-1 pt-3">
|
|
{INCLUDED.map((item) => (
|
|
<li key={item} className="flex items-start gap-2 text-sm">
|
|
<Check aria-hidden="true" className="mt-1 h-3.5 w-3.5 shrink-0 text-foreground" />
|
|
<span>{item}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</SettingsGroup>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// 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 (
|
|
<div>
|
|
{header}
|
|
<SettingsGroup label="Ditt abonnemang">
|
|
<SettingsRow label="Status" borderless>
|
|
<span className="flex items-start gap-2">
|
|
<Check aria-hidden="true" className="mt-1 h-3.5 w-3.5 shrink-0 text-foreground" />
|
|
<span>Klart! Ditt abonnemang är aktiverat och alla funktioner låses upp inom någon minut.</span>
|
|
</span>
|
|
<SettingsRowNote>Ladda om sidan om du inte ser ändringen.</SettingsRowNote>
|
|
</SettingsRow>
|
|
</SettingsGroup>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// Trialing / expired → sell view.
|
|
const { trialEndsAt, daysLeft } = view
|
|
const deferredTo = view.chargeDeferred ? trialEndsAt : null
|
|
|
|
return (
|
|
<div>
|
|
{header}
|
|
|
|
{/* Consequential trial countdown: one attn-tone sentence, not a banner. */}
|
|
{daysLeft !== null && (
|
|
<AttnLine className="mt-3">
|
|
{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.'}
|
|
</AttnLine>
|
|
)}
|
|
|
|
<SettingsGroup
|
|
label="Allt du behöver för att sköta bokföringen själv"
|
|
help="Ingen bindningstid · Avsluta när du vill · Säker betalning via Stripe"
|
|
>
|
|
<div className="px-1 pt-3">
|
|
<BillingActions isPaying={false} configured={view.configured} firstChargeAt={deferredTo} />
|
|
</div>
|
|
</SettingsGroup>
|
|
|
|
{deferredTo && (
|
|
<SettingsGroup label="Så funkar det">
|
|
<SettingsRow label="Idag">
|
|
<span>Du lägger till ditt kort. Inget dras nu.</span>
|
|
</SettingsRow>
|
|
<SettingsRow label={<span className="tabular-nums">{formatDateLong(deferredTo)}</span>}>
|
|
<span>Provperioden slutar och den första debiteringen sker.</span>
|
|
</SettingsRow>
|
|
<SettingsRow label="När som helst" borderless>
|
|
<span>
|
|
Avsluta direkt via Stripe. Före {formatDateLong(deferredTo)} kostar det ingenting.
|
|
</span>
|
|
</SettingsRow>
|
|
</SettingsGroup>
|
|
)}
|
|
|
|
<SettingsGroup
|
|
label="Funktioner"
|
|
// The 7-year retention reassurance moved behind the "?": long legal
|
|
// copy stays out of the page flow.
|
|
help="Utan abonnemang behåller du bokföringen, fakturorna, rapporterna och all din data utan kostnad. Ingenting raderas: räkenskapsinformation bevaras i sju år enligt bokföringslagen, oavsett abonnemang."
|
|
>
|
|
<div className="grid gap-6 px-1 pt-3 sm:grid-cols-2">
|
|
<FeatureList heading="I abonnemanget" items={INCLUDED} />
|
|
<FeatureList heading="Alltid gratis" items={ALWAYS_FREE} />
|
|
</div>
|
|
</SettingsGroup>
|
|
</div>
|
|
)
|
|
}
|