E1.S1 Command Center layout: - 4-zone layout (context, canvas, recent, input) - Keyboard shortcuts (⌘K focus, Escape close) - CanvasArea met empty state + voorbeelden E1.S2 Context Bar: - Shift indicator met icons per dienst - Patient chip met avatar + clear button - Terug naar EPD link E1.S3 Command Input: - Dynamic placeholder op basis van context - Send button (verschijnt bij input) - Focus state met ring E1.S4 Voice Input: - useSwiftVoice hook (wraps Deepgram) - Real-time waveform visualisatie - Streaming transcript naar input E1.S5 Recent Strip: - Intent-based chips met icons + kleuren - Relative time (zojuist, 5m, 2u) - Click-to-repeat functionaliteit - Quick hints bij lege state Bouwplan bijgewerkt: E0+E1 done (21/68 SP, 31%) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
112 lines
4.0 KiB
TypeScript
112 lines
4.0 KiB
TypeScript
'use client';
|
|
|
|
/**
|
|
* Recent Strip
|
|
*
|
|
* Shows last 5 actions as clickable chips for quick repeat.
|
|
* Height: 48px (h-12)
|
|
*/
|
|
|
|
import { useSwiftStore, type SwiftIntent } from '@/stores/swift-store';
|
|
import { FileText, Search, ArrowRightLeft, HelpCircle, Clock } from 'lucide-react';
|
|
|
|
const INTENT_CONFIG: Record<SwiftIntent, { icon: typeof FileText; color: string; label: string }> = {
|
|
dagnotitie: { icon: FileText, color: 'text-blue-400 bg-blue-400/10', label: 'Notitie' },
|
|
zoeken: { icon: Search, color: 'text-emerald-400 bg-emerald-400/10', label: 'Zoeken' },
|
|
overdracht: { icon: ArrowRightLeft, color: 'text-purple-400 bg-purple-400/10', label: 'Overdracht' },
|
|
unknown: { icon: HelpCircle, color: 'text-slate-400 bg-slate-400/10', label: 'Actie' },
|
|
};
|
|
|
|
function formatRelativeTime(date: Date): string {
|
|
const now = new Date();
|
|
const diffMs = now.getTime() - date.getTime();
|
|
const diffMins = Math.floor(diffMs / 60000);
|
|
|
|
if (diffMins < 1) return 'zojuist';
|
|
if (diffMins < 60) return `${diffMins}m`;
|
|
const diffHours = Math.floor(diffMins / 60);
|
|
if (diffHours < 24) return `${diffHours}u`;
|
|
return `${Math.floor(diffHours / 24)}d`;
|
|
}
|
|
|
|
export function RecentStrip() {
|
|
const { recentActions, setInputValue, openBlock } = useSwiftStore();
|
|
|
|
const handleActionClick = (action: typeof recentActions[0]) => {
|
|
// Set the input to repeat the action
|
|
setInputValue(action.label);
|
|
|
|
// If it's a known intent, open the block directly
|
|
if (action.intent !== 'unknown') {
|
|
openBlock(action.intent, {
|
|
patientName: action.patientName,
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="h-12 border-t border-slate-700 flex items-center px-4 gap-3 shrink-0 bg-slate-900/50">
|
|
{/* Label */}
|
|
<div className="flex items-center gap-1.5 text-slate-500 shrink-0">
|
|
<Clock size={12} />
|
|
<span className="text-xs font-medium">Recent</span>
|
|
</div>
|
|
|
|
{/* Divider */}
|
|
<div className="h-4 w-px bg-slate-700" />
|
|
|
|
{/* Actions */}
|
|
{recentActions.length === 0 ? (
|
|
<span className="text-xs text-slate-600 italic">Nog geen acties</span>
|
|
) : (
|
|
<div className="flex gap-2 overflow-x-auto scrollbar-hide">
|
|
{recentActions.map((action) => {
|
|
const config = INTENT_CONFIG[action.intent];
|
|
const Icon = config.icon;
|
|
|
|
return (
|
|
<button
|
|
key={action.id}
|
|
onClick={() => handleActionClick(action)}
|
|
className={`flex items-center gap-1.5 px-2.5 py-1 rounded-lg text-xs font-medium
|
|
whitespace-nowrap transition-all duration-200
|
|
hover:scale-105 active:scale-95
|
|
${config.color} hover:brightness-110`}
|
|
title={`Herhaal: ${action.label}${action.patientName ? ` (${action.patientName})` : ''}`}
|
|
>
|
|
<Icon size={12} />
|
|
<span className="max-w-[120px] truncate">{action.label}</span>
|
|
{action.patientName && (
|
|
<span className="text-[10px] opacity-60">• {action.patientName}</span>
|
|
)}
|
|
<span className="text-[10px] opacity-40 ml-1">
|
|
{formatRelativeTime(action.timestamp)}
|
|
</span>
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
|
|
{/* Quick actions hint (when empty) */}
|
|
{recentActions.length === 0 && (
|
|
<div className="ml-auto flex items-center gap-2 text-xs text-slate-600">
|
|
<span>Probeer:</span>
|
|
<button
|
|
onClick={() => setInputValue('notitie ')}
|
|
className="px-2 py-0.5 rounded bg-slate-800 hover:bg-slate-700 text-slate-400 transition-colors"
|
|
>
|
|
notitie
|
|
</button>
|
|
<button
|
|
onClick={() => setInputValue('zoek ')}
|
|
className="px-2 py-0.5 rounded bg-slate-800 hover:bg-slate-700 text-slate-400 transition-colors"
|
|
>
|
|
zoek
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|