f63d3e3100
* fix(enable-banking): pin Mobile BankID (decoupled) auth_method so Handelsbanken corporate connects We never sent auth_method to Enable Banking, so it fell back to the ASPSP's visible default — REDIRECT for Handelsbanken. For Handelsbanken *corporate* PSUs the redirect flow does not support Mobile BankID, so authorization failed right after the user approved in the BankID app. Mobile BankID at Handelsbanken is a DECOUPLED method flagged hidden_method=true, which Enable Banking only uses when requested explicitly. Resolve the bank's preferred auth method before /auth: query the ASPSP's auth_methods and pick the DECOUPLED (Mobile BankID) method when present, otherwise leave auth_method unset so banks that already work are untouched. The method name is read dynamically per psu_type, so it is robust across sandbox/production naming. - api-client: add approach/hidden_method to AuthMethod, fix ASPSP.auth_methods field name (was available_auth_methods, never populated), add getPreferredAuthMethod(), thread optional authMethod through startAuthorization - index: resolve authMethod in /connect and pass it on both fresh + reconnect - tests: cover method selection and request-body shaping Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * refactor(invoice-inbox): clean up bulk-selection toolbar UI Redesign the selection toolbar shown when inbox items are checked: one solid primary "Bokför valda" button with outlined secondary actions ("Fråga assistenten", "Ta bort") and a plain selection count. Removes the redundant "Avmarkera" button (users uncheck the still-visible box), fixes label clipping, and gives the toolbar more breathing room. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * chore(entitlements): bypass paywall in local development Add isPaywallBypassed() so all gated capabilities are testable locally without a subscription. Fires only on NODE_ENV=development (npm run dev) or an explicit DISABLE_PAYWALL=true escape hatch — production builds run under NODE_ENV=production and the entitlement suite runs under 'test', so both keep exercising the real gate. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(tic): resolve enskild firma bolagsuppgifter via 12-digit personnummer TIC's Lens search is fuzzy and only resolves an enskild firma from the 12-digit (century-prefixed) personnummer; a 10-digit form fuzzy-matched an unrelated entity. Expand personnummer to 12 digits before querying and reject hits whose registration number is unrelated to the request. Add a "Hämta" action to the settings Bolagsuppgifter panel to (re)fetch on demand. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(transactions): implement categorize core for bank transaction categorization - Added `categorize-core.ts` to handle categorization of bank transactions, supporting single and bulk operations. - Introduced `categorizeMatchedTransaction` and `bulkBookMatchedInboxItems` functions for transaction processing. - Implemented fiscal period validation and duplicate booking detection. - Enhanced logging and error handling for transaction categorization. feat(scripts): add diagnostic script for Handelsbanken ASPSP metadata - Created `check-handelsbanken-aspsp.mjs` to fetch and display available authentication methods for Handelsbanken. - Outputs metadata for business and personal PSU types, including default authentication methods. fix(migrations): increase statement timeout for SIE bulk delete operations - Updated `20260629160000_sie_bulk_delete_statement_timeout.sql` to set a longer statement timeout for bulk delete RPCs to prevent cancellations during large imports. feat(migrations): add bulk book inbox items to pending operations - Expanded `pending_operations` table to include `bulk_book_inbox_items` operation type in `20260630120000_pending_operations_add_bulk_book_inbox_items.sql`. - Supports bulk booking of matched inbox items against bank transactions. test(pg): add tests for replace_period_opening_balance_link RPC - Implemented tests in `replace-period-opening-balance-link.pg.test.ts` to validate the functionality of the opening-balance correction flow. - Ensured immutability of opening balance links and proper handling of posted vs. non-posted entries. * fix(sie-export): update journal entries and lines handling in SIE export tests * fix(migrations): resolve version collision on 20260629160000 The SIE bulk-delete statement_timeout migration shared version 20260629160000 with journal_entries_list_series_filter (merged from main via #798/#823), causing a schema_migrations_pkey duplicate key error on apply. Rename the branch's migration to 20260629160100. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(compliance): resolve compliance-swarm + review findings - opening-balance/correct: compensating rollback for the non-atomic storno+rebook so a mid-sequence failure never leaves two posted OB entries (ASVS V2.3); durable audit event on every failure path (V16); reference the original verifikationsnummer in the corrected entry per BFL 5 kap 5§; document that requireWrite already enforces write-role + membership (V8.2.1 was a false positive) - reports sources routes: validate the cursor date component as ISO (/^\d{4}-\d{2}-\d{2}$/) before use, 400 on malformed (ASVS V1.2), applied to both the VAT-declaration and trial-balance routes - AgentSessionList: await the rename PATCH, revert the optimistic title and toast on failure (ASVS V4.5) - bank booking: exclude same-batch siblings from the booking-time duplicate guard so bulk-booking distinct same-(date,amount) transactions no longer false-positives; pre-existing duplicate detection is preserved - BulkBookInboxDialog: drop the unsafe currency-based reverse_charge default, add an omvänd skattskyldighet advisory, and type VAT options to the backend VatTreatment union - OpeningBalanceRowEditor: hold onChange in a ref (synced in effect, not during render) so an unstable callback can't cause a render loop Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
333 lines
14 KiB
TypeScript
333 lines
14 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useMemo, useRef, useState, useTransition } from 'react'
|
|
import Link from 'next/link'
|
|
import { usePathname, useRouter } from 'next/navigation'
|
|
import { Pin, PinOff, Archive, Pencil, Search, X, PanelLeftOpen, PanelLeftClose } from 'lucide-react'
|
|
import { cn } from '@/lib/utils'
|
|
import { useAgentSheet } from './AgentSheetProvider'
|
|
import AgentAvatar from './AgentAvatar'
|
|
import {
|
|
type ConversationRow,
|
|
BUCKET_LABELS,
|
|
relativeTime,
|
|
intentLabel,
|
|
groupConversations,
|
|
} from './conversation-display'
|
|
|
|
interface Props {
|
|
initialConversations: ConversationRow[]
|
|
}
|
|
|
|
export default function ChatSidebar({ initialConversations }: Props) {
|
|
const router = useRouter()
|
|
const pathname = usePathname()
|
|
const { openAgentSheet, identity } = useAgentSheet()
|
|
const agentName = identity.displayName?.trim() || null
|
|
const [conversations, setConversations] = useState<ConversationRow[]>(initialConversations)
|
|
const [query, setQuery] = useState('')
|
|
const [, startTransition] = useTransition()
|
|
// Collapsed by default; persisted across reloads so power users keep
|
|
// their preference. Hidden behind a thin rail when collapsed so the
|
|
// conversation pane runs nearly edge-to-edge.
|
|
const [collapsed, setCollapsed] = useState(true)
|
|
useEffect(() => {
|
|
const stored = localStorage.getItem('Accounted:chat-sidebar-collapsed')
|
|
if (stored === 'false') setCollapsed(false)
|
|
}, [])
|
|
const toggleCollapsed = () => {
|
|
setCollapsed(c => {
|
|
const next = !c
|
|
try { localStorage.setItem('Accounted:chat-sidebar-collapsed', next ? 'true' : 'false') } catch {}
|
|
return next
|
|
})
|
|
}
|
|
|
|
const activeId = pathname?.startsWith('/chat/') ? pathname.split('/')[2] : null
|
|
const isConversationOpen = !!activeId
|
|
|
|
const filtered = useMemo(() => {
|
|
const q = query.trim().toLowerCase()
|
|
if (!q) return conversations
|
|
return conversations.filter((c) => {
|
|
return (
|
|
(c.title ?? '').toLowerCase().includes(q) ||
|
|
(c.last_message_preview ?? '').toLowerCase().includes(q) ||
|
|
(c.context_ref ?? '').toLowerCase().includes(q) ||
|
|
c.intent_id.toLowerCase().includes(q)
|
|
)
|
|
})
|
|
}, [conversations, query])
|
|
|
|
// Group filtered into ordered buckets, preserving the sort order already
|
|
// applied server-side (pinned first, then last_message_at desc).
|
|
const grouped = useMemo(() => groupConversations(filtered), [filtered])
|
|
|
|
async function togglePin(id: string, current: boolean) {
|
|
setConversations((prev) =>
|
|
prev.map((c) => (c.id === id ? { ...c, pinned: !current } : c)),
|
|
)
|
|
await fetch(`/api/agent/conversations/${id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ pinned: !current }),
|
|
})
|
|
}
|
|
|
|
async function archive(id: string) {
|
|
setConversations((prev) => prev.filter((c) => c.id !== id))
|
|
await fetch(`/api/agent/conversations/${id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ archived: true }),
|
|
})
|
|
if (activeId === id) startTransition(() => router.push('/chat'))
|
|
}
|
|
|
|
// Inline rename of a conversation's title (PATCH /api/agent/conversations/[id]).
|
|
const [editingId, setEditingId] = useState<string | null>(null)
|
|
const [editValue, setEditValue] = useState('')
|
|
// Set by Esc so the blur that fires when the input unmounts doesn't save.
|
|
const cancelRef = useRef(false)
|
|
|
|
function startEdit(c: ConversationRow) {
|
|
setEditingId(c.id)
|
|
setEditValue(c.title ?? '')
|
|
cancelRef.current = false
|
|
}
|
|
function cancelEdit() {
|
|
cancelRef.current = true
|
|
setEditingId(null)
|
|
}
|
|
async function commitEdit(id: string) {
|
|
if (cancelRef.current) {
|
|
cancelRef.current = false
|
|
return
|
|
}
|
|
setEditingId(null)
|
|
const title = editValue.trim()
|
|
const current = conversations.find((c) => c.id === id)
|
|
if (!title || title === current?.title) return
|
|
setConversations((prev) => prev.map((c) => (c.id === id ? { ...c, title } : c)))
|
|
await fetch(`/api/agent/conversations/${id}`, {
|
|
method: 'PATCH',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ title }),
|
|
})
|
|
}
|
|
|
|
// Collapsed rail (desktop only). Mobile keeps the existing behavior where
|
|
// the sidebar IS the page when no conversation is open, so the rail is
|
|
// hidden below md. On desktop the rail keeps a thin column with toggle
|
|
// + new-chat buttons so the conversation pane runs near-edge-to-edge.
|
|
const railAside = collapsed ? (
|
|
<aside
|
|
className="hidden md:flex md:w-12 flex-col items-center border-r border-border bg-card/40 shrink-0 py-3 gap-2"
|
|
aria-label="Konversationer (hopfälld)"
|
|
>
|
|
<button
|
|
type="button"
|
|
onClick={toggleCollapsed}
|
|
aria-label="Visa konversationer"
|
|
title="Visa konversationer"
|
|
className="inline-flex h-9 w-9 items-center justify-center rounded-md text-muted-foreground hover:text-foreground hover:bg-secondary/60 transition-colors"
|
|
>
|
|
<PanelLeftOpen className="h-4 w-4" />
|
|
</button>
|
|
<div className="h-px w-6 bg-border" />
|
|
<button
|
|
type="button"
|
|
onClick={() => openAgentSheet({ intentId: 'general.help' })}
|
|
aria-label="Ny konversation"
|
|
title="Ny konversation"
|
|
className="inline-flex h-9 w-9 items-center justify-center rounded-md text-muted-foreground hover:text-foreground hover:bg-secondary/60 transition-colors text-lg"
|
|
>
|
|
+
|
|
</button>
|
|
</aside>
|
|
) : null
|
|
|
|
return (
|
|
<>
|
|
{railAside}
|
|
<aside
|
|
className={cn(
|
|
'flex-col border-r border-border bg-card/40 shrink-0',
|
|
// Mobile: sidebar IS the page when no conversation; hidden otherwise.
|
|
isConversationOpen ? 'hidden' : 'flex w-full',
|
|
// Desktop: hidden if collapsed (rail takes its place); else 320px.
|
|
collapsed ? 'md:hidden' : 'md:flex md:w-80',
|
|
)}
|
|
>
|
|
<div className="border-b border-border px-5 py-4 space-y-3">
|
|
<div className="flex items-center gap-2">
|
|
<AgentAvatar avatarId={identity.avatarId} size="sm" alt={agentName ?? 'Assistent'} />
|
|
<div className="flex-1 min-w-0">
|
|
<h2 className="font-display text-base tracking-tight truncate">
|
|
{agentName ?? 'Din assistent'}
|
|
</h2>
|
|
<p className="text-[11px] text-muted-foreground">Konversationer</p>
|
|
</div>
|
|
<button
|
|
onClick={toggleCollapsed}
|
|
aria-label="Dölj konversationer"
|
|
title="Dölj konversationer"
|
|
className="hidden md:inline-flex h-8 w-8 items-center justify-center rounded text-muted-foreground hover:text-foreground hover:bg-secondary/60 transition-colors"
|
|
>
|
|
<PanelLeftClose className="h-4 w-4" />
|
|
</button>
|
|
<button
|
|
onClick={() => openAgentSheet({ intentId: 'general.help' })}
|
|
className="text-xs uppercase tracking-wider text-muted-foreground hover:text-foreground transition-colors"
|
|
>
|
|
+ Ny
|
|
</button>
|
|
</div>
|
|
<div className="relative">
|
|
<Search className="absolute left-2.5 top-1/2 -translate-y-1/2 h-3.5 w-3.5 text-muted-foreground" />
|
|
<input
|
|
type="text"
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
placeholder="Sök…"
|
|
className="w-full rounded-md border border-border bg-background pl-8 pr-7 py-1.5 text-sm focus:outline-none focus:ring-2 focus:ring-ring"
|
|
/>
|
|
{query.length > 0 && (
|
|
<button
|
|
type="button"
|
|
onClick={() => setQuery('')}
|
|
aria-label="Rensa sökning"
|
|
className="absolute right-1 top-1/2 -translate-y-1/2 inline-flex h-8 w-8 items-center justify-center rounded text-muted-foreground hover:bg-secondary hover:text-foreground"
|
|
>
|
|
<X className="h-3 w-3" />
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex-1 overflow-y-auto">
|
|
{grouped.length === 0 ? (
|
|
<div className="p-6 text-sm text-muted-foreground">
|
|
{conversations.length === 0
|
|
? 'Inga konversationer ännu. Klicka på + Ny för att börja.'
|
|
: 'Inga träffar.'}
|
|
</div>
|
|
) : (
|
|
grouped.map(({ bucket, rows }) => (
|
|
<section key={bucket} className="py-2">
|
|
<p className="px-4 pb-1 text-[10px] uppercase tracking-wider text-muted-foreground">
|
|
{BUCKET_LABELS[bucket]}
|
|
</p>
|
|
<ul className="space-y-1">
|
|
{rows.map((c) => (
|
|
<li key={c.id}>
|
|
{editingId === c.id ? (
|
|
<div className="px-4 py-2">
|
|
<input
|
|
autoFocus
|
|
value={editValue}
|
|
onChange={(e) => setEditValue(e.target.value)}
|
|
onBlur={() => void commitEdit(c.id)}
|
|
onKeyDown={(e) => {
|
|
if (e.key === 'Enter') {
|
|
e.preventDefault()
|
|
;(e.target as HTMLInputElement).blur()
|
|
} else if (e.key === 'Escape') {
|
|
e.preventDefault()
|
|
cancelEdit()
|
|
}
|
|
}}
|
|
placeholder="Namnge konversationen…"
|
|
maxLength={200}
|
|
aria-label="Nytt namn på konversationen"
|
|
className="w-full rounded-md border border-border bg-background px-2 py-1 text-sm focus:outline-none focus:ring-2 focus:ring-ring"
|
|
/>
|
|
</div>
|
|
) : (
|
|
<Link
|
|
href={`/chat/${c.id}`}
|
|
className={cn(
|
|
'group flex items-start gap-2 px-4 py-2 hover:bg-secondary/60 transition-colors border-l-2',
|
|
activeId === c.id
|
|
? 'bg-secondary/50 border-foreground'
|
|
: 'border-transparent',
|
|
)}
|
|
>
|
|
<div className="flex-1 min-w-0">
|
|
<div className="flex items-center gap-1.5">
|
|
<p className="text-sm font-medium truncate flex-1 min-w-0">
|
|
{c.title ?? intentLabel(c.intent_id)}
|
|
</p>
|
|
<p className="text-[11px] text-muted-foreground tabular-nums shrink-0">
|
|
{relativeTime(c.last_message_at ?? c.created_at)}
|
|
</p>
|
|
</div>
|
|
<p className="text-xs text-muted-foreground line-clamp-1 mt-0.5">
|
|
{c.last_message_preview ?? intentLabel(c.intent_id)}
|
|
</p>
|
|
</div>
|
|
{/* Always-visible action icons. Touch-friendly, no
|
|
hover-only invisibility on mobile. Laid out
|
|
horizontally so three icons don't stack and inflate
|
|
the row height. */}
|
|
<div className="flex items-center gap-1 shrink-0 -mr-1">
|
|
<button
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
startEdit(c)
|
|
}}
|
|
title="Byt namn"
|
|
aria-label="Byt namn på konversation"
|
|
className="inline-flex h-8 w-8 items-center justify-center rounded text-muted-foreground/50 hover:text-foreground hover:bg-secondary transition-colors"
|
|
>
|
|
<Pencil className="h-3 w-3" />
|
|
</button>
|
|
<button
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
void togglePin(c.id, c.pinned)
|
|
}}
|
|
title={c.pinned ? 'Avfäst' : 'Fäst'}
|
|
aria-label={c.pinned ? 'Avfäst konversation' : 'Fäst konversation'}
|
|
className={cn(
|
|
'inline-flex h-8 w-8 items-center justify-center rounded transition-colors',
|
|
c.pinned
|
|
? 'text-foreground'
|
|
: 'text-muted-foreground/50 hover:text-foreground hover:bg-secondary',
|
|
)}
|
|
>
|
|
{c.pinned ? (
|
|
<Pin className="h-3 w-3" fill="currentColor" />
|
|
) : (
|
|
<PinOff className="h-3 w-3" />
|
|
)}
|
|
</button>
|
|
<button
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
void archive(c.id)
|
|
}}
|
|
title="Arkivera"
|
|
aria-label="Arkivera konversation"
|
|
className="inline-flex h-8 w-8 items-center justify-center rounded text-muted-foreground/50 hover:text-foreground hover:bg-secondary transition-colors"
|
|
>
|
|
<Archive className="h-3 w-3" />
|
|
</button>
|
|
</div>
|
|
</Link>
|
|
)}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</section>
|
|
))
|
|
)}
|
|
</div>
|
|
</aside>
|
|
</>
|
|
)
|
|
}
|