d54b43f80f
* fix(invoices): anchor the PDF logo to the top-left of its header cell The logo box is always the full 240x80pt reserved area (any larger logo is clamped to exactly that), so objectFit: 'contain' placed the image inside it with the default 50% 50% centering. A wide banner logo fills the width and lands on the left margin, but a near-square logo scaled down to the 80pt height cap is only ~117pt wide and got pushed ~60pt in from the margin, which reads as a misaligned logo and forced companies to reshape their artwork. Anchor the image top-left so every aspect ratio starts at the margin. Covered by a test that renders the real PDF and reads the image placement matrix out of the content stream, for both a wide and a near-square logo. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * feat(invoices): show the real delivery outcome in the send history "Skickad" only meant the email provider accepted the message, so a bounced invoice looked identical to one that arrived. Resend reports the outcome asynchronously; that report now lands on the delivery row and drives the history: green is reserved for a confirmed delivery, bounce/blocked reads red, delayed and spam-marked read amber, and an accepted-but-unconfirmed send is neutral instead of falsely green. The report arrives on a signed webhook and may only touch the three new provider status columns of an already sent, unredacted row: the WORM trigger proves nothing else changed, and a lower ranked or older report can never downgrade an observed failure. The provider reason text can quote the failing address, so it is masked on read and cleared by the daily PII redaction job. Timestamps also formatted in Europe/Stockholm instead of falling back to the runtime zone, which rendered a 14:05 send as 12:05 on Vercel. Delivery reports are per message, never per recipient: Resend sends one event for the whole message, so splitting a send per recipient would be the only way to get finer granularity, at the cost of CC. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * feat(stripe): make the integration feed-only Stripe sync now only imports balance transactions into the transactions inbox, like any bank feed; nothing auto-books. The event/settlement sync (lib/sync.ts, lib/payouts.ts) stays in the repo but is no longer wired to any route or cron: the 15-min sync cron is removed from vercel.json. Payment links on invoice send are unchanged; their payments arrive as feed rows and are matched manually. - /sync runs only syncStripeBalanceTransactions; response is { success, transactions } - connecting via OAuth enables the nightly feed by default (toggle stays as opt-out) - panel: needs-review section and plumbing removed, copy rewritten to transactions-first (sv + en), toast reports fetched/imported/linked and calls out an empty result instead of silent all-zeros Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): return the article currency from the v1 article list The dashboard, importer, export and MCP article surfaces all learned to carry a non-SEK article price (#1166, #1183, #1184), but the v1 projection still omitted currency. An API or agent caller therefore read price_excl_vat with nothing marking it as EUR and would copy the number straight onto a SEK invoice line, at a nine-to-one error. Adds currency to the projection, the response shape and the example, plus a pitfall stating the price is not always SEK and that this endpoint does no FX conversion. Additive field only; no migration (articles.currency already exists). Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * feat(settings): replace the settings modal with a routed panel sheet Settings now renders as a sheet that fills the main panel, sliding up over the page the user came from and back down on close, with the sidebar and frame left visible and usable. Behind it sits one shared master-detail surface: underline search across every section and subsection, the grouped section rail, and the active section as a direct-editing accordion. All 11 sections are decomposed into subsections, and the legacy *SettingsContent components compose the same pieces so the stacked and accordion layouts cannot drift. The sheet is the only presentation, on every entry path. The intercepting route handles in-app navigation and closes by popping the history entry, landing back on the page underneath. @settingsModal/default.tsx handles cold loads (refresh, deep link, new tab), where interception never fires; nothing is mounted underneath there, so it closes to the dashboard. Both branch on one shared predicate, isSheetSection, together with the settings layout, which must render nothing for those sections or the surface would stack twice behind the sheet and run every section's fetches twice. Closing is deliberate rather than incidental: the X, Esc, or navigating away. The dialog is non-modal so the sidebar's account popover and company switcher keep working with settings up, and an outside click no longer dismisses it. Sections land fully collapsed, and the scroll position of the page behind survives opening and closing the sheet. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * feat: enhance article management and settings UI - Add PATCH test for toggling article active state without other fields. - Remove unused MessageCircle icon from DashboardContent. - Refactor AccountingFrameworkForm to use SettingsFieldRow for better help text display. - Update CompanyInfoForm, DimensionsToggle, and various settings forms to replace description with help text. - Remove redundant headings and intros in several settings components to streamline UI. - Improve help text for various settings in English and Swedish translations. - Update structured error messages for better clarity on article deletion. * refactor(ArticleDetailPage): remove unused imports and duplicate state variable * fix(settings): own deep-linked settings routes by route list, not nav visibility Review fixes from the settings panel sheet work: * isSheetSection reads the full settings route list so a hidden-but-deep-linked section (assistant before BankID, banking in sandbox, api without MCP) is claimed by the sheet instead of rendering the legacy shell around an empty panel * keep 503 on the Resend delivery webhook when the signing secret is unset, with a test pinning the behaviour * stripe callback route test coverage Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * refactor: update salary, tax, and templates settings components - Refactored SalarySettingsContent to use a form wrapper and improved payment settings UI. - Enhanced TaxSettingsContent with new signals for EU sales, KU obligations, and ROT/RUT deductions. - Updated TemplatesSettingsContent to remove legacy comments and improve readability. - Simplified navigation items by removing unnecessary constants and directly using hrefs. - Cleaned up translation files by removing deprecated keys and adding new descriptions for clarity. --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
419 lines
15 KiB
TypeScript
419 lines
15 KiB
TypeScript
'use client'
|
|
|
|
import { useCallback, useEffect, useMemo, useState } from 'react'
|
|
import { Brain, Loader2, Pin, PinOff, Pencil, Plus, RotateCcw, Trash2, X } from 'lucide-react'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Badge } from '@/components/ui/badge'
|
|
import { Switch } from '@/components/ui/switch'
|
|
import { EmptyState } from '@/components/ui/empty-state'
|
|
import { Skeleton } from '@/components/ui/skeleton'
|
|
import { useToast } from '@/components/ui/use-toast'
|
|
import {
|
|
SettingsGroup,
|
|
SettingsReveal,
|
|
SettingsRow,
|
|
SettingsRowEnd,
|
|
SettingsRowNote,
|
|
SettingsSeg,
|
|
SettingsSelect,
|
|
SettingsTextarea,
|
|
} from '@/components/settings/SettingsRows'
|
|
import { useCanWrite } from '@/lib/hooks/use-can-write'
|
|
import { cn, formatDateLong } from '@/lib/utils'
|
|
|
|
type Kind = 'fact' | 'preference' | 'pattern' | 'correction'
|
|
type Source = 'composer' | 'user_taught' | 'agent_learned' | 'derived'
|
|
|
|
interface AgentMemoryRow {
|
|
id: string
|
|
kind: Kind
|
|
content: string
|
|
source: Source
|
|
source_ref: string | null
|
|
relevance_score: number
|
|
is_pinned: boolean
|
|
is_active: boolean
|
|
last_accessed_at: string | null
|
|
created_at: string
|
|
updated_at: string
|
|
}
|
|
|
|
const KIND_LABEL: Record<Kind, string> = {
|
|
fact: 'Fakta',
|
|
preference: 'Preferens',
|
|
pattern: 'Mönster',
|
|
correction: 'Korrigering',
|
|
}
|
|
|
|
const SOURCE_LABEL: Record<Source, string> = {
|
|
composer: 'Inläst vid uppstart',
|
|
user_taught: 'Du lärde mig',
|
|
agent_learned: 'Jag noterade',
|
|
derived: 'Härlett',
|
|
}
|
|
|
|
const KIND_FILTER: { value: 'all' | Kind; label: string }[] = [
|
|
{ value: 'all', label: 'Alla' },
|
|
{ value: 'fact', label: 'Fakta' },
|
|
{ value: 'preference', label: 'Preferenser' },
|
|
{ value: 'pattern', label: 'Mönster' },
|
|
{ value: 'correction', label: 'Korrigeringar' },
|
|
]
|
|
|
|
// The API returns errors either as a plain string (legacy/validation) or as
|
|
// the canonical { code, message } envelope; extract something renderable.
|
|
function apiErrorText(error: unknown): string | undefined {
|
|
if (typeof error === 'string') return error
|
|
if (error && typeof error === 'object' && 'message' in error) {
|
|
const m = (error as { message?: unknown }).message
|
|
return typeof m === 'string' ? m : undefined
|
|
}
|
|
return undefined
|
|
}
|
|
|
|
export function AgentMemoryPanel() {
|
|
const { toast } = useToast()
|
|
const { canWrite } = useCanWrite()
|
|
|
|
const [rows, setRows] = useState<AgentMemoryRow[] | null>(null)
|
|
const [includeDismissed, setIncludeDismissed] = useState(false)
|
|
const [kindFilter, setKindFilter] = useState<'all' | Kind>('all')
|
|
const [busyId, setBusyId] = useState<string | null>(null)
|
|
const [editingId, setEditingId] = useState<string | null>(null)
|
|
const [editDraft, setEditDraft] = useState('')
|
|
const [showAdd, setShowAdd] = useState(false)
|
|
const [newContent, setNewContent] = useState('')
|
|
const [newKind, setNewKind] = useState<Kind>('fact')
|
|
const [adding, setAdding] = useState(false)
|
|
|
|
const load = useCallback(async () => {
|
|
const params = new URLSearchParams()
|
|
if (includeDismissed) params.set('include_dismissed', 'true')
|
|
if (kindFilter !== 'all') params.set('kind', kindFilter)
|
|
const res = await fetch(`/api/agent/memory?${params.toString()}`)
|
|
const json = await res.json()
|
|
if (!res.ok) {
|
|
toast({ title: 'Kunde inte hämta minne', description: apiErrorText(json.error), variant: 'destructive' })
|
|
setRows([])
|
|
return
|
|
}
|
|
setRows(json.data as AgentMemoryRow[])
|
|
}, [includeDismissed, kindFilter, toast])
|
|
|
|
useEffect(() => { void load() }, [load])
|
|
|
|
const counts = useMemo(() => {
|
|
const active = rows?.filter((r) => r.is_active).length ?? 0
|
|
const pinned = rows?.filter((r) => r.is_active && r.is_pinned).length ?? 0
|
|
const dismissed = rows?.filter((r) => !r.is_active).length ?? 0
|
|
return { active, pinned, dismissed }
|
|
}, [rows])
|
|
|
|
async function patch(id: string, body: Partial<Pick<AgentMemoryRow, 'content' | 'is_pinned' | 'is_active'>>) {
|
|
setBusyId(id)
|
|
try {
|
|
const res = await fetch(`/api/agent/memory/${id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(body),
|
|
})
|
|
const json = await res.json()
|
|
if (!res.ok) {
|
|
toast({ title: 'Kunde inte uppdatera', description: apiErrorText(json.error), variant: 'destructive' })
|
|
return
|
|
}
|
|
setRows((prev) => prev?.map((r) => (r.id === id ? (json.data as AgentMemoryRow) : r)) ?? null)
|
|
} finally {
|
|
setBusyId(null)
|
|
}
|
|
}
|
|
|
|
async function addMemory() {
|
|
if (newContent.trim().length < 2) return
|
|
setAdding(true)
|
|
try {
|
|
const res = await fetch('/api/agent/memory', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ content: newContent.trim(), kind: newKind }),
|
|
})
|
|
const json = await res.json()
|
|
if (!res.ok) {
|
|
toast({ title: 'Kunde inte spara minne', description: apiErrorText(json.error), variant: 'destructive' })
|
|
return
|
|
}
|
|
setRows((prev) => [json.data as AgentMemoryRow, ...(prev ?? [])])
|
|
setNewContent('')
|
|
setNewKind('fact')
|
|
setShowAdd(false)
|
|
toast({ title: 'Minne sparat' })
|
|
} finally {
|
|
setAdding(false)
|
|
}
|
|
}
|
|
|
|
function startEdit(row: AgentMemoryRow) {
|
|
setEditingId(row.id)
|
|
setEditDraft(row.content)
|
|
}
|
|
|
|
async function saveEdit(row: AgentMemoryRow) {
|
|
const next = editDraft.trim()
|
|
if (next.length < 2 || next === row.content) {
|
|
setEditingId(null)
|
|
return
|
|
}
|
|
await patch(row.id, { content: next })
|
|
setEditingId(null)
|
|
}
|
|
|
|
// The view wrapper in AssistantSettingsContent already provides the gap
|
|
// under the segmented control, so the group starts flush (pt-0).
|
|
return (
|
|
<SettingsGroup
|
|
label="Vad min assistent kommer ihåg"
|
|
help={
|
|
<>
|
|
Bokföringsassistenten använder dessa anteckningar för att ge dig rätt råd. Fäst det som
|
|
alltid ska vara med, redigera fel, eller dölj det som inte längre stämmer. Upp till 30
|
|
minnen ingår i samtal per tur.
|
|
</>
|
|
}
|
|
className="pt-0 first:pt-0"
|
|
>
|
|
{/* Toolbar row: kind filter + the add-memory entry point. */}
|
|
<div className="flex flex-wrap items-center justify-between gap-3 border-b border-border px-1 py-3">
|
|
<SettingsSeg
|
|
value={kindFilter}
|
|
onChange={setKindFilter}
|
|
options={KIND_FILTER}
|
|
aria-label="Filtrera minnen"
|
|
/>
|
|
{canWrite && (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => setShowAdd((v) => !v)}
|
|
disabled={adding}
|
|
>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
Lägg till minne
|
|
</Button>
|
|
)}
|
|
</div>
|
|
|
|
{canWrite && (
|
|
<SettingsReveal open={showAdd}>
|
|
<div className="space-y-3 py-3">
|
|
<SettingsTextarea
|
|
value={newContent}
|
|
onChange={(e) => setNewContent(e.target.value)}
|
|
placeholder="T.ex. Vi använder Stripe för B2C-betalningar; utbetalningar landar på 1930 var måndag."
|
|
rows={3}
|
|
maxLength={2000}
|
|
aria-label="Nytt minne"
|
|
className="w-full border-border"
|
|
/>
|
|
<div className="flex flex-wrap items-center justify-between gap-3">
|
|
<div className="flex items-center gap-2">
|
|
<span className="text-xs text-muted-foreground">Typ</span>
|
|
<SettingsSelect
|
|
value={newKind}
|
|
onChange={(e) => setNewKind(e.target.value as Kind)}
|
|
aria-label="Typ"
|
|
>
|
|
{(Object.keys(KIND_LABEL) as Kind[]).map((k) => (
|
|
<option key={k} value={k}>{KIND_LABEL[k]}</option>
|
|
))}
|
|
</SettingsSelect>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="ghost" size="sm" onClick={() => { setShowAdd(false); setNewContent('') }}>
|
|
Avbryt
|
|
</Button>
|
|
<Button size="sm" onClick={addMemory} disabled={adding || newContent.trim().length < 2}>
|
|
{adding ? <Loader2 className="mr-2 h-4 w-4 animate-spin" /> : null}
|
|
Spara
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</SettingsReveal>
|
|
)}
|
|
|
|
<SettingsRow label="Visa dolda">
|
|
<SettingsRowEnd>
|
|
<Switch
|
|
checked={includeDismissed}
|
|
onCheckedChange={setIncludeDismissed}
|
|
aria-label="Visa dolda"
|
|
/>
|
|
</SettingsRowEnd>
|
|
</SettingsRow>
|
|
|
|
{/* Dynamic status stays visible; the static "how it's used" copy lives
|
|
in the group help above. */}
|
|
{rows && (
|
|
<p className="px-1 pt-3">
|
|
<SettingsRowNote className="tabular-nums">
|
|
{counts.active} aktiva · {counts.pinned} fästa
|
|
{includeDismissed && counts.dismissed > 0 ? ` · ${counts.dismissed} dolda` : ''}
|
|
</SettingsRowNote>
|
|
</p>
|
|
)}
|
|
|
|
{rows === null && (
|
|
<div className="space-y-3 pt-3">
|
|
{[0, 1, 2].map((i) => (
|
|
<Skeleton key={i} className="h-16 w-full" />
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{rows && rows.length === 0 && (
|
|
<EmptyState
|
|
icon={Brain}
|
|
title="Inga minnen ännu"
|
|
description="När du lär assistenten saker (eller när den noterar saker själv med ditt godkännande) dyker de upp här."
|
|
/>
|
|
)}
|
|
|
|
{rows && rows.length > 0 && (
|
|
<ul>
|
|
{rows.map((row) => {
|
|
const isEditing = editingId === row.id
|
|
const isBusy = busyId === row.id
|
|
const dimmed = !row.is_active
|
|
return (
|
|
<li
|
|
key={row.id}
|
|
className={cn(
|
|
'border-b border-border px-1 py-3 transition-colors',
|
|
dimmed && 'opacity-70',
|
|
)}
|
|
>
|
|
<div className="flex items-start gap-3">
|
|
{canWrite && row.is_active ? (
|
|
<button
|
|
onClick={() => patch(row.id, { is_pinned: !row.is_pinned })}
|
|
disabled={isBusy}
|
|
className={cn(
|
|
'mt-0.5 shrink-0 rounded-md p-1.5 transition-colors duration-150',
|
|
row.is_pinned
|
|
? 'bg-secondary text-foreground'
|
|
: 'text-muted-foreground hover:bg-secondary/60 hover:text-foreground',
|
|
)}
|
|
aria-label={row.is_pinned ? 'Lossa' : 'Fäst'}
|
|
title={row.is_pinned ? 'Lossa' : 'Fäst: säkerställer att minnet alltid skickas med'}
|
|
>
|
|
{row.is_pinned ? <Pin className="h-4 w-4 fill-current" /> : <PinOff className="h-4 w-4" />}
|
|
</button>
|
|
) : (
|
|
<div className="mt-0.5 shrink-0 p-1.5">
|
|
{row.is_pinned && <Pin className="h-4 w-4 fill-current text-foreground" />}
|
|
</div>
|
|
)}
|
|
|
|
<div className="min-w-0 flex-1 space-y-2">
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<span className="text-[11px] text-muted-foreground">
|
|
{KIND_LABEL[row.kind]} · {SOURCE_LABEL[row.source]}
|
|
</span>
|
|
{dimmed && <Badge variant="secondary">Dold</Badge>}
|
|
</div>
|
|
|
|
{isEditing ? (
|
|
<SettingsTextarea
|
|
value={editDraft}
|
|
onChange={(e) => setEditDraft(e.target.value)}
|
|
rows={3}
|
|
maxLength={2000}
|
|
autoFocus
|
|
aria-label="Redigera minne"
|
|
className="w-full border-border"
|
|
/>
|
|
) : (
|
|
<p className="whitespace-pre-wrap break-words text-sm text-foreground">{row.content}</p>
|
|
)}
|
|
|
|
<div className="flex flex-wrap items-center justify-between gap-2 pt-1">
|
|
<p className="text-[11px] text-muted-foreground tabular-nums">
|
|
Skapad {formatDateLong(row.created_at)}
|
|
{row.updated_at !== row.created_at && ` · uppdaterad ${formatDateLong(row.updated_at)}`}
|
|
</p>
|
|
|
|
{canWrite && (
|
|
<div className="flex items-center gap-1">
|
|
{isEditing ? (
|
|
<>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => setEditingId(null)}
|
|
disabled={isBusy}
|
|
>
|
|
<X className="h-4 w-4" />
|
|
<span className="sr-only">Avbryt</span>
|
|
</Button>
|
|
<Button
|
|
size="sm"
|
|
onClick={() => saveEdit(row)}
|
|
disabled={isBusy || editDraft.trim().length < 2}
|
|
>
|
|
{isBusy ? <Loader2 className="h-4 w-4 animate-spin" /> : 'Spara'}
|
|
</Button>
|
|
</>
|
|
) : row.is_active ? (
|
|
<>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => startEdit(row)}
|
|
disabled={isBusy}
|
|
>
|
|
<Pencil className="mr-1 h-3.5 w-3.5" />
|
|
Redigera
|
|
</Button>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => patch(row.id, { is_active: false })}
|
|
disabled={isBusy}
|
|
>
|
|
{isBusy ? (
|
|
<Loader2 className="mr-1 h-3.5 w-3.5 animate-spin" />
|
|
) : (
|
|
<Trash2 className="mr-1 h-3.5 w-3.5" />
|
|
)}
|
|
Dölj
|
|
</Button>
|
|
</>
|
|
) : (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => patch(row.id, { is_active: true })}
|
|
disabled={isBusy}
|
|
>
|
|
{isBusy ? (
|
|
<Loader2 className="mr-1 h-3.5 w-3.5 animate-spin" />
|
|
) : (
|
|
<RotateCcw className="mr-1 h-3.5 w-3.5" />
|
|
)}
|
|
Återställ
|
|
</Button>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
)
|
|
})}
|
|
</ul>
|
|
)}
|
|
</SettingsGroup>
|
|
)
|
|
}
|