feat(swift): implementeer artifact lifecycle management (E4.S2)
Epic 4 Story 2 compleet: Meerdere artifacts met open/close/switch werken!
E4.S2 - Artifact Lifecycle Management (3 SP)
- Store state: openArtifacts[], activeArtifactId
- Store actions met max 3 artifacts logica
- ArtifactArea refactor naar ArtifactContainer
- CommandCenter integration met nieuwe artifact system
Store Updates (stores/swift-store.ts):
- openArtifacts: Artifact[] — Array van open artifacts
- activeArtifactId: string | null — Currently active artifact
- Initial state: [], null
Store Actions:
```typescript
openArtifact(artifact: Omit<Artifact, 'id' | 'createdAt'>) {
// Auto-generate ID + timestamp
// Max 3 artifacts: remove oldest if at capacity
// Set new artifact as active
}
closeArtifact(id: string) {
// Filter out artifact
// Auto-switch to last remaining if closing active
}
switchArtifact(id: string) {
// Verify artifact exists
// Set activeArtifactId
}
closeAllArtifacts() {
// Clear all artifacts + active ID
}
```
Features:
- Max 3 artifacts enforced (oldest removed at capacity)
- Auto-switch when closing active artifact
- Console logging voor debugging
- ID generation met crypto.randomUUID()
- Timestamp tracking met createdAt
Components Updated:
- components/swift/artifacts/artifact-area.tsx (30 regels)
- Simplified: alleen ArtifactContainer rendering
- Props: openArtifacts, activeArtifactId, switchArtifact, closeArtifact
- components/swift/command-center/command-center.tsx
- openArtifact() i.p.v. openBlock()
- getArtifactTitle() voor dynamic titles
- Escape: closeAllArtifacts() i.p.v. closeBlock()
- Artifact opening met title generation
Integration Flow:
1. Chat: AI genereert action met artifact data
2. ChatPanel: setPendingAction(action)
3. CommandCenter: useEffect detecteert pendingAction
4. CommandCenter: getArtifactTitle(type, prefill)
5. CommandCenter: openArtifact({ type, prefill, title })
6. Store: Auto-generate ID, check max 3, add to array
7. ArtifactArea: Renders ArtifactContainer met artifacts
8. ArtifactContainer: Shows tabs (if >1), renders active block
Console Logging:
- "[Store] Max 3 artifacts reached, removing oldest"
- "[Store] Opening artifact: dagnotitie Dagnotitie - Jan"
- "[Store] Closing artifact: [id] New active: [id]"
- "[Store] Switching to artifact: [id]"
- "[Store] Cannot switch to artifact: [id] (not found)"
Build Status:
- ✅ pnpm build succesvol (geen type errors)
- Alleen bekende warnings (Supabase realtime, useCallback)
Voortgang: 56 SP / 85 SP (66%) - 18/31 stories compleet, 2 geskipt
Next: E4.S3 (Slide-in animatie) - 200ms ease-out transitions
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,85 +1,30 @@
|
||||
'use client';
|
||||
|
||||
/**
|
||||
* Artifact Area (v3.0)
|
||||
* Artifact Area (v3.0 + E4)
|
||||
*
|
||||
* Displays active blocks based on activeBlock state.
|
||||
* Shows placeholder when no block is active.
|
||||
* Displays artifacts using ArtifactContainer with tab support.
|
||||
* Manages multiple artifacts with lifecycle actions.
|
||||
*
|
||||
* Epic: E1 (Foundation), E3 (Chat API & Medical Scribe)
|
||||
* Stories: E1.S3 (Placeholder componenten), E3.S6 (Artifact opening from chat)
|
||||
* Epic: E1 (Foundation), E3 (Chat API), E4 (Artifact Area & Tabs)
|
||||
* Stories: E1.S3, E3.S6, E4.S1, E4.S2
|
||||
*/
|
||||
|
||||
import { useSwiftStore } from '@/stores/swift-store';
|
||||
import { DagnotatieBlock } from '../blocks/dagnotitie-block';
|
||||
import { ZoekenBlock } from '../blocks/zoeken-block';
|
||||
import { OverdrachtBlock } from '../blocks/overdracht-block';
|
||||
import { FallbackPicker } from '../blocks/fallback-picker';
|
||||
import { ArtifactContainer } from './artifact-container';
|
||||
|
||||
export function ArtifactArea() {
|
||||
const activeBlock = useSwiftStore((s) => s.activeBlock);
|
||||
const prefillData = useSwiftStore((s) => s.prefillData);
|
||||
const openArtifacts = useSwiftStore((s) => s.openArtifacts);
|
||||
const activeArtifactId = useSwiftStore((s) => s.activeArtifactId);
|
||||
const switchArtifact = useSwiftStore((s) => s.switchArtifact);
|
||||
const closeArtifact = useSwiftStore((s) => s.closeArtifact);
|
||||
|
||||
// Render active block
|
||||
if (activeBlock) {
|
||||
return (
|
||||
<div className="h-full flex items-center justify-center bg-slate-50 p-6 overflow-y-auto">
|
||||
{activeBlock === 'dagnotitie' && <DagnotatieBlock />}
|
||||
{activeBlock === 'zoeken' && <ZoekenBlock />}
|
||||
{activeBlock === 'overdracht' && <OverdrachtBlock />}
|
||||
{activeBlock === 'fallback' && <FallbackPicker />}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// Placeholder when no block is active
|
||||
return (
|
||||
<div className="h-full flex items-center justify-center bg-slate-50 p-6">
|
||||
<div className="max-w-lg text-center text-slate-500">
|
||||
<div className="text-5xl mb-4">📋</div>
|
||||
<h3 className="text-xl font-medium text-slate-700 mb-3">
|
||||
Artifacts verschijnen hier
|
||||
</h3>
|
||||
<p className="text-sm mb-6">
|
||||
Wanneer je een actie vraagt in de chat, verschijnt het bijbehorende formulier of overzicht hier.
|
||||
</p>
|
||||
|
||||
<div className="bg-white rounded-lg border border-slate-200 p-4 text-left space-y-3">
|
||||
<div className="flex items-start gap-3">
|
||||
<div className="w-8 h-8 rounded bg-blue-100 flex items-center justify-center text-sm">
|
||||
📝
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<p className="font-medium text-slate-700 text-sm">Dagnotitie</p>
|
||||
<p className="text-xs text-slate-500">Voor snelle notities tijdens de dienst</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-start gap-3">
|
||||
<div className="w-8 h-8 rounded bg-green-100 flex items-center justify-center text-sm">
|
||||
🔍
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<p className="font-medium text-slate-700 text-sm">Patiënt Zoeken</p>
|
||||
<p className="text-xs text-slate-500">Zoek en selecteer patiënten</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-start gap-3">
|
||||
<div className="w-8 h-8 rounded bg-purple-100 flex items-center justify-center text-sm">
|
||||
🔄
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<p className="font-medium text-slate-700 text-sm">Overdracht</p>
|
||||
<p className="text-xs text-slate-500">Dienst overdracht met AI-samenvatting</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p className="text-xs text-slate-400 mt-6">
|
||||
Vraag me iets in de chat om te beginnen!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<ArtifactContainer
|
||||
artifacts={openArtifacts}
|
||||
activeArtifactId={activeArtifactId}
|
||||
onSelectArtifact={switchArtifact}
|
||||
onCloseArtifact={closeArtifact}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -22,18 +22,19 @@ import { ContextBar } from './context-bar';
|
||||
import { OfflineBanner } from './offline-banner';
|
||||
import { ChatPanel } from '../chat/chat-panel';
|
||||
import { ArtifactArea } from '../artifacts/artifact-area';
|
||||
import { getArtifactTitle } from '../artifacts/artifact-container';
|
||||
|
||||
export function CommandCenter() {
|
||||
const { closeBlock, activeBlock, openBlock, pendingAction, setPendingAction } = useSwiftStore();
|
||||
const { closeAllArtifacts, openArtifacts, openArtifact, pendingAction, setPendingAction } = useSwiftStore();
|
||||
const inputRef = useRef<HTMLInputElement>(null);
|
||||
|
||||
// Global keyboard shortcuts
|
||||
const handleKeyDown = useCallback(
|
||||
(e: KeyboardEvent) => {
|
||||
// Escape: close active block
|
||||
if (e.key === 'Escape' && activeBlock) {
|
||||
// Escape: close all artifacts
|
||||
if (e.key === 'Escape' && openArtifacts.length > 0) {
|
||||
e.preventDefault();
|
||||
closeBlock();
|
||||
closeAllArtifacts();
|
||||
}
|
||||
|
||||
// Cmd/Ctrl + K: focus input (chat input in v3.0)
|
||||
@@ -42,7 +43,7 @@ export function CommandCenter() {
|
||||
inputRef.current?.focus();
|
||||
}
|
||||
},
|
||||
[activeBlock, closeBlock]
|
||||
[openArtifacts, closeAllArtifacts]
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
@@ -50,7 +51,7 @@ export function CommandCenter() {
|
||||
return () => window.removeEventListener('keydown', handleKeyDown);
|
||||
}, [handleKeyDown]);
|
||||
|
||||
// E3.S6: Handle pending actions from chat (artifact opening)
|
||||
// E3.S6 + E4.S2: Handle pending actions from chat (artifact opening)
|
||||
useEffect(() => {
|
||||
if (!pendingAction) return;
|
||||
|
||||
@@ -60,10 +61,17 @@ export function CommandCenter() {
|
||||
if (pendingAction.artifact) {
|
||||
const { type, prefill } = pendingAction.artifact;
|
||||
|
||||
console.log('[CommandCenter] Opening artifact:', type, 'with prefill:', prefill);
|
||||
// Generate title for the artifact
|
||||
const title = getArtifactTitle(type, prefill);
|
||||
|
||||
// Open the block with prefill data
|
||||
openBlock(type, prefill);
|
||||
console.log('[CommandCenter] Opening artifact:', type, title);
|
||||
|
||||
// Open the artifact (E4.S2 - new artifact system)
|
||||
openArtifact({
|
||||
type,
|
||||
prefill,
|
||||
title,
|
||||
});
|
||||
|
||||
// Clear pending action after processing
|
||||
setPendingAction(null);
|
||||
@@ -71,7 +79,7 @@ export function CommandCenter() {
|
||||
console.log('[CommandCenter] Action has no artifact, skipping');
|
||||
setPendingAction(null);
|
||||
}
|
||||
}, [pendingAction, openBlock, setPendingAction]);
|
||||
}, [pendingAction, openArtifact, setPendingAction]);
|
||||
|
||||
return (
|
||||
<div className="flex flex-col h-screen overflow-hidden">
|
||||
|
||||
Reference in New Issue
Block a user