02a5d10538
* refactor(ui): migrate remaining inline pages to the concept design language Catch-up pass for surfaces the 2026-07 UI migration missed: - Bankavstämning: de-boxed toolbar, dry-table sections (preview, omatchade verifikationer, ignorerade, matchade), instructional copy moved behind the page "?" (HelpPopover via FocusedReport, sv+en), AttnLine for the dirty- dates hint, EmptyState for the blank page, space-y-8 rhythm. - Report detail views (trial balance, income statement, balance sheet, resultat-/balansrapport, reskontror, huvudbok, grundbok, dimension-P&L): shared Skeleton/Error/EmptyState shells, border-2 totals bands flattened to hairline cards with font-display tabular-nums headline numbers, ReportSectionTable rebuilt on the group-band idiom, font-mono money -> tabular-nums, house tablist for Förenklad/Detaljerad, GL filter de-boxed onto Input primitives, verdicts follow chips-mark-exceptions. - Extensions browse: PageHeader, locked section headers, rounded-lg secondary icon tiles, flat hover shift on cards, p-6 content. - Återkommande fakturor: page-level list moved off ui/table onto dry-table with hover-revealed quiet row actions; Skeleton loading. - Help: EmptyState for no search hits, flat hover shift on resource links. - Chart of accounts: spinner loading blocks -> Skeleton rows. - Kunskap graph + salary calendar popovers: rounded-lg, Input/Textarea primitives instead of hand-rolled shadow-sm controls. No logic, endpoint, or data changes. Verified via sandbox screenshots; lint 0 errors, 13214 tests green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(ui): review triage: skip empty industry sectors, keyboard path to schedule edit Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
import { getTranslations } from 'next-intl/server'
|
|
import { Card, CardContent } from '@/components/ui/card'
|
|
import { resolveIcon } from '@/lib/extensions/icon-resolver'
|
|
import { extensionNameKey, extensionDescriptionKey } from '@/lib/extensions/i18n'
|
|
import type { ExtensionDefinition } from '@/lib/extensions/types'
|
|
import CategoryBadge from './CategoryBadge'
|
|
import Link from 'next/link'
|
|
|
|
export default async function ExtensionCard({ extension }: { extension: ExtensionDefinition }) {
|
|
const t = await getTranslations('extensions')
|
|
|
|
const nameKey = extensionNameKey(extension.slug)
|
|
const descriptionKey = extensionDescriptionKey(extension.slug)
|
|
const name = nameKey ? t(nameKey) : extension.name
|
|
const description = descriptionKey ? t(descriptionKey) : extension.description
|
|
|
|
const Icon = resolveIcon(extension.icon)
|
|
|
|
return (
|
|
<Card className="group relative">
|
|
<CardContent className="p-6">
|
|
<div className="flex items-start gap-3 min-w-0">
|
|
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-secondary flex-shrink-0">
|
|
<Icon className="h-5 w-5 text-foreground" />
|
|
</div>
|
|
<div className="min-w-0">
|
|
<Link
|
|
href={`/extensions/${extension.sector}/${extension.slug}`}
|
|
className="text-sm font-medium hover:underline"
|
|
>
|
|
{name}
|
|
</Link>
|
|
<p className="text-xs text-muted-foreground mt-0.5 line-clamp-2">
|
|
{description}
|
|
</p>
|
|
<div className="mt-2">
|
|
<CategoryBadge category={extension.category} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|