ff01640f60
* feat(reports,settings): report library + focused report routes, settings modal Reports - Replace the monolithic /reports tab-switcher with a calm, grouped report library landing (ReportLibrary + RecentReportsShelf) driven by a new lib/reports/catalog.ts. - Each report opens a focused /reports/[slug] route (FocusedReport) with a shared fiscal-year selector, optional date-range, and URL-based account drill-down into the general ledger. - Extract every report view into components/reports/views, add a reusable ReportExportMenu, and remove the old ReportsNav. Settings - Add an intercepting @settingsModal parallel route so in-app navigation to /settings opens as a modal over the current page; hard loads still resolve to the full page. - Share one SettingsShell (rail + content) between page and modal, extract each section into components/settings/sections/*Content, add a settings hotkey and command-palette entry, and remove the old SettingsSidebar. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(reports,settings): remove dead salary-journal entry, fix border token Addresses PR review feedback (#629): - Remove the unreachable `salary-journal` report from the catalog. It had needsEmployees + no route + no FocusedView handler and `hasEmployees` was never plumbed through, so it never appeared in the library and a direct /reports/salary-journal URL rendered a blank frame. The report was never on the old page and has no view component; the API + generator stay in place for a proper follow-up. Drops its two now-unused i18n keys. - Replace opacity-suffixed `border-border/8` section dividers with full-opacity `border-border` across the extracted settings section components, per the design system (no opacity-suffixed border tokens on surfaces). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * ci: re-trigger checks (pg-real hit a Docker Hub registry timeout) --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
'use client'
|
|
|
|
import { useSearchParams, useRouter } from 'next/navigation'
|
|
import { Tabs, TabsList, TabsTrigger, TabsContent } from '@/components/ui/tabs'
|
|
import { AgentMemoryPanel } from '@/components/settings/AgentMemoryPanel'
|
|
import { AgentSkillsPanel } from '@/components/settings/AgentSkillsPanel'
|
|
|
|
// "Assistenten" — what the assistant remembers about this company (Minne,
|
|
// editable) and the domain knowledge it ships with (Kompetens, read-only).
|
|
// A toggle keeps both one click away instead of stacked, so the competence
|
|
// view isn't buried below the memory list.
|
|
type View = 'memory' | 'skills'
|
|
|
|
export function AssistantSettingsContent() {
|
|
const searchParams = useSearchParams()
|
|
const router = useRouter()
|
|
const view: View = searchParams.get('view') === 'skills' ? 'skills' : 'memory'
|
|
|
|
function setView(next: string) {
|
|
// 'memory' is the default — keep its URL clean (no query string).
|
|
router.replace(next === 'skills' ? '/settings/assistant?view=skills' : '/settings/assistant', {
|
|
scroll: false,
|
|
})
|
|
}
|
|
|
|
return (
|
|
<Tabs value={view} onValueChange={setView} className="space-y-6">
|
|
<TabsList>
|
|
<TabsTrigger value="memory">Minne</TabsTrigger>
|
|
<TabsTrigger value="skills">Kompetens</TabsTrigger>
|
|
</TabsList>
|
|
|
|
{/* Radix unmounts the inactive panel, so each panel's data is fetched
|
|
lazily the first time its tab is opened. */}
|
|
<TabsContent value="memory">
|
|
<AgentMemoryPanel />
|
|
</TabsContent>
|
|
<TabsContent value="skills">
|
|
<AgentSkillsPanel />
|
|
</TabsContent>
|
|
</Tabs>
|
|
)
|
|
}
|