mirror of
https://github.com/temetro/temetro.git
synced 2026-07-26 11:58:14 +00:00
929bec8f31
Stop blocking AI imports/proposals on missing non-critical fields. Records the chat agent drafts now save with safe placeholders, auto-generated file numbers, and a source="ai" marker that surfaces an "Added by AI" badge so a clinician can review/edit them later. Backend: - add `source` (manual|ai) column to patients/appointments/prescriptions (migration 0014) + canonical types, services, validation schemas - relax patient/appointment validation: empty file number allowed, demographic + type/provider/initials fall back to placeholders (initials derived from name) - patients.generateFileNumber() auto-assigns an MRN when one is missing - proposeAppointment accepts a name when no file number resolves; AI commits + /api/ai/import stamp source="ai" Frontend: - `source` on Appointment/Patient/Prescription types; AI commits send source="ai" - reusable <AiBadge> shown on the Patients table/detail and prescriptions list Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
503 lines
15 KiB
TypeScript
503 lines
15 KiB
TypeScript
"use client";
|
|
|
|
import type { AttachmentData } from "@/components/ai-elements/attachments";
|
|
import {
|
|
Attachment,
|
|
AttachmentInfo,
|
|
AttachmentPreview,
|
|
AttachmentRemove,
|
|
Attachments,
|
|
} from "@/components/ai-elements/attachments";
|
|
import {
|
|
ModelSelector,
|
|
ModelSelectorContent,
|
|
ModelSelectorEmpty,
|
|
ModelSelectorGroup,
|
|
ModelSelectorInput,
|
|
ModelSelectorItem,
|
|
ModelSelectorList,
|
|
ModelSelectorLogo,
|
|
ModelSelectorLogoGroup,
|
|
ModelSelectorName,
|
|
ModelSelectorTrigger,
|
|
} from "@/components/ai-elements/model-selector";
|
|
import type { PromptInputMessage } from "@/components/ai-elements/prompt-input";
|
|
import {
|
|
PromptInput,
|
|
PromptInputBody,
|
|
PromptInputButton,
|
|
PromptInputCommand,
|
|
PromptInputCommandEmpty,
|
|
PromptInputCommandGroup,
|
|
PromptInputCommandInput,
|
|
PromptInputCommandItem,
|
|
PromptInputCommandList,
|
|
PromptInputCommandSeparator,
|
|
PromptInputFooter,
|
|
PromptInputHeader,
|
|
PromptInputHoverCard,
|
|
PromptInputHoverCardContent,
|
|
PromptInputHoverCardTrigger,
|
|
PromptInputProvider,
|
|
PromptInputSubmit,
|
|
PromptInputTab,
|
|
PromptInputTabBody,
|
|
PromptInputTabItem,
|
|
PromptInputTabLabel,
|
|
PromptInputTextarea,
|
|
PromptInputTools,
|
|
usePromptInputAttachments,
|
|
usePromptInputReferencedSources,
|
|
} from "@/components/ai-elements/prompt-input";
|
|
import { Button } from "@/components/ui/button";
|
|
import type { SourceDocumentUIPart } from "ai";
|
|
import {
|
|
AtSignIcon,
|
|
CheckIcon,
|
|
FilesIcon,
|
|
GlobeIcon,
|
|
ImageIcon,
|
|
RulerIcon,
|
|
} from "lucide-react";
|
|
import { memo, useCallback, useState } from "react";
|
|
|
|
const models = [
|
|
{
|
|
chef: "OpenAI",
|
|
chefSlug: "openai",
|
|
id: "gpt-4o",
|
|
name: "GPT-4o",
|
|
providers: ["openai", "azure"],
|
|
},
|
|
{
|
|
chef: "OpenAI",
|
|
chefSlug: "openai",
|
|
id: "gpt-4o-mini",
|
|
name: "GPT-4o Mini",
|
|
providers: ["openai", "azure"],
|
|
},
|
|
{
|
|
chef: "Anthropic",
|
|
chefSlug: "anthropic",
|
|
id: "claude-opus-4-20250514",
|
|
name: "Claude 4 Opus",
|
|
providers: ["anthropic", "azure", "google", "amazon-bedrock"],
|
|
},
|
|
{
|
|
chef: "Anthropic",
|
|
chefSlug: "anthropic",
|
|
id: "claude-sonnet-4-20250514",
|
|
name: "Claude 4 Sonnet",
|
|
providers: ["anthropic", "azure", "google", "amazon-bedrock"],
|
|
},
|
|
{
|
|
chef: "Google",
|
|
chefSlug: "google",
|
|
id: "gemini-2.0-flash-exp",
|
|
name: "Gemini 2.0 Flash",
|
|
providers: ["google"],
|
|
},
|
|
];
|
|
|
|
const SUBMITTING_TIMEOUT = 200;
|
|
const STREAMING_TIMEOUT = 2000;
|
|
|
|
interface AttachmentItemProps {
|
|
attachment: AttachmentData;
|
|
onRemove: (id: string) => void;
|
|
}
|
|
|
|
const AttachmentItem = memo(({ attachment, onRemove }: AttachmentItemProps) => {
|
|
const handleRemove = useCallback(
|
|
() => onRemove(attachment.id),
|
|
[onRemove, attachment.id]
|
|
);
|
|
return (
|
|
<Attachment data={attachment} key={attachment.id} onRemove={handleRemove}>
|
|
<AttachmentPreview />
|
|
<AttachmentRemove />
|
|
</Attachment>
|
|
);
|
|
});
|
|
|
|
AttachmentItem.displayName = "AttachmentItem";
|
|
|
|
interface SourceItemProps {
|
|
source: AttachmentData;
|
|
onRemove: (id: string) => void;
|
|
}
|
|
|
|
const SourceItem = memo(({ source, onRemove }: SourceItemProps) => {
|
|
const handleRemove = useCallback(
|
|
() => onRemove(source.id),
|
|
[onRemove, source.id]
|
|
);
|
|
return (
|
|
<Attachment data={source} key={source.id} onRemove={handleRemove}>
|
|
<AttachmentPreview />
|
|
<AttachmentInfo />
|
|
<AttachmentRemove />
|
|
</Attachment>
|
|
);
|
|
});
|
|
|
|
SourceItem.displayName = "SourceItem";
|
|
|
|
interface ModelItemProps {
|
|
m: (typeof models)[0];
|
|
selectedModel: string;
|
|
onSelect: (id: string) => void;
|
|
}
|
|
|
|
const ModelItem = memo(({ m, selectedModel, onSelect }: ModelItemProps) => {
|
|
const handleSelect = useCallback(() => onSelect(m.id), [onSelect, m.id]);
|
|
return (
|
|
<ModelSelectorItem key={m.id} onSelect={handleSelect} value={m.id}>
|
|
<ModelSelectorLogo provider={m.chefSlug} />
|
|
<ModelSelectorName>{m.name}</ModelSelectorName>
|
|
<ModelSelectorLogoGroup>
|
|
{m.providers.map((provider) => (
|
|
<ModelSelectorLogo key={provider} provider={provider} />
|
|
))}
|
|
</ModelSelectorLogoGroup>
|
|
{selectedModel === m.id ? (
|
|
<CheckIcon className="ml-auto size-4" />
|
|
) : (
|
|
<div className="ml-auto size-4" />
|
|
)}
|
|
</ModelSelectorItem>
|
|
);
|
|
});
|
|
|
|
ModelItem.displayName = "ModelItem";
|
|
|
|
interface SourceCommandItemProps {
|
|
source: SourceDocumentUIPart;
|
|
onAdd: (source: SourceDocumentUIPart) => void;
|
|
}
|
|
|
|
const SourceCommandItem = memo(({ source, onAdd }: SourceCommandItemProps) => {
|
|
const handleSelect = useCallback(() => onAdd(source), [onAdd, source]);
|
|
return (
|
|
<PromptInputCommandItem
|
|
key={`${source.filename}-${source.title}`}
|
|
onSelect={handleSelect}
|
|
>
|
|
<GlobeIcon className="text-primary" />
|
|
<div className="flex flex-col">
|
|
<span className="font-medium text-sm">{source.title}</span>
|
|
<span className="text-muted-foreground text-xs">{source.filename}</span>
|
|
</div>
|
|
</PromptInputCommandItem>
|
|
);
|
|
});
|
|
|
|
SourceCommandItem.displayName = "SourceCommandItem";
|
|
|
|
const sampleSources: SourceDocumentUIPart[] = [
|
|
{
|
|
filename: "packages/elements/src",
|
|
mediaType: "text/plain",
|
|
sourceId: "1",
|
|
title: "prompt-input.tsx",
|
|
type: "source-document",
|
|
},
|
|
{
|
|
filename: "apps/test/app/examples",
|
|
mediaType: "text/plain",
|
|
sourceId: "2",
|
|
title: "queue.tsx",
|
|
type: "source-document",
|
|
},
|
|
{
|
|
filename: "packages/elements/src",
|
|
mediaType: "text/plain",
|
|
sourceId: "3",
|
|
title: "queue.tsx",
|
|
type: "source-document",
|
|
},
|
|
];
|
|
|
|
const sampleTabs = {
|
|
active: [{ path: "packages/elements/src/task-queue-panel.tsx" }],
|
|
recents: [
|
|
{ path: "apps/test/app/examples/task-queue-panel.tsx" },
|
|
{ path: "apps/test/app/page.tsx" },
|
|
{ path: "packages/elements/src/task.tsx" },
|
|
{ path: "apps/test/app/examples/prompt-input.tsx" },
|
|
{ path: "packages/elements/src/queue.tsx" },
|
|
{ path: "apps/test/app/examples/queue.tsx" },
|
|
],
|
|
};
|
|
|
|
const PromptInputAttachmentsDisplay = () => {
|
|
const attachments = usePromptInputAttachments();
|
|
|
|
const handleRemove = useCallback(
|
|
(id: string) => attachments.remove(id),
|
|
[attachments]
|
|
);
|
|
|
|
if (attachments.files.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Attachments variant="inline">
|
|
{attachments.files.map((attachment) => (
|
|
<AttachmentItem
|
|
attachment={attachment}
|
|
key={attachment.id}
|
|
onRemove={handleRemove}
|
|
/>
|
|
))}
|
|
</Attachments>
|
|
);
|
|
};
|
|
|
|
const PromptInputReferencedSourcesDisplay = () => {
|
|
const refs = usePromptInputReferencedSources();
|
|
|
|
const handleRemove = useCallback((id: string) => refs.remove(id), [refs]);
|
|
|
|
if (refs.sources.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Attachments variant="inline">
|
|
{refs.sources.map((source) => (
|
|
<SourceItem
|
|
key={source.id}
|
|
onRemove={handleRemove}
|
|
source={source as AttachmentData}
|
|
/>
|
|
))}
|
|
</Attachments>
|
|
);
|
|
};
|
|
|
|
const SampleFilesMenu = () => {
|
|
const refs = usePromptInputReferencedSources();
|
|
|
|
const handleAdd = useCallback(
|
|
(source: SourceDocumentUIPart) => refs.add(source),
|
|
[refs]
|
|
);
|
|
|
|
return (
|
|
<PromptInputCommand>
|
|
<PromptInputCommandInput
|
|
className="border-none focus-visible:ring-0"
|
|
placeholder="Add files, folders, docs..."
|
|
/>
|
|
<PromptInputCommandList>
|
|
<PromptInputCommandEmpty className="p-3 text-muted-foreground text-sm">
|
|
No results found.
|
|
</PromptInputCommandEmpty>
|
|
<PromptInputCommandGroup heading="Added">
|
|
<PromptInputCommandItem>
|
|
<GlobeIcon />
|
|
<span>Active Tabs</span>
|
|
<span className="ml-auto text-muted-foreground">✓</span>
|
|
</PromptInputCommandItem>
|
|
</PromptInputCommandGroup>
|
|
<PromptInputCommandSeparator />
|
|
<PromptInputCommandGroup heading="Other Files">
|
|
{sampleSources
|
|
.filter(
|
|
(source) =>
|
|
!refs.sources.some(
|
|
(s) =>
|
|
s.title === source.title && s.filename === source.filename
|
|
)
|
|
)
|
|
.map((source) => (
|
|
<SourceCommandItem
|
|
key={`${source.filename}-${source.title}`}
|
|
onAdd={handleAdd}
|
|
source={source}
|
|
/>
|
|
))}
|
|
</PromptInputCommandGroup>
|
|
</PromptInputCommandList>
|
|
</PromptInputCommand>
|
|
);
|
|
};
|
|
|
|
const Example = () => {
|
|
const [model, setModel] = useState<string>(models[0].id);
|
|
const [modelSelectorOpen, setModelSelectorOpen] = useState(false);
|
|
const [status, setStatus] = useState<
|
|
"submitted" | "streaming" | "ready" | "error"
|
|
>("ready");
|
|
|
|
const selectedModelData = models.find((m) => m.id === model);
|
|
|
|
const handleModelSelect = useCallback((id: string) => {
|
|
setModel(id);
|
|
setModelSelectorOpen(false);
|
|
}, []);
|
|
|
|
const handleSubmit = useCallback((message: PromptInputMessage) => {
|
|
const hasText = Boolean(message.text);
|
|
const hasAttachments = Boolean(message.files?.length);
|
|
|
|
if (!(hasText || hasAttachments)) {
|
|
return;
|
|
}
|
|
|
|
setStatus("submitted");
|
|
|
|
setTimeout(() => {
|
|
setStatus("streaming");
|
|
}, SUBMITTING_TIMEOUT);
|
|
|
|
setTimeout(() => {
|
|
setStatus("ready");
|
|
}, STREAMING_TIMEOUT);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="flex size-full flex-col justify-end">
|
|
<PromptInputProvider>
|
|
<PromptInput globalDrop multiple onSubmit={handleSubmit}>
|
|
<PromptInputHeader>
|
|
<PromptInputHoverCard>
|
|
<PromptInputHoverCardTrigger>
|
|
<PromptInputButton
|
|
className="h-8!"
|
|
size="icon-sm"
|
|
variant="outline"
|
|
>
|
|
<AtSignIcon className="text-muted-foreground" size={12} />
|
|
</PromptInputButton>
|
|
</PromptInputHoverCardTrigger>
|
|
<PromptInputHoverCardContent className="w-[400px] p-0">
|
|
<SampleFilesMenu />
|
|
</PromptInputHoverCardContent>
|
|
</PromptInputHoverCard>
|
|
<PromptInputHoverCard>
|
|
<PromptInputHoverCardTrigger>
|
|
<PromptInputButton size="sm" variant="outline">
|
|
<RulerIcon className="text-muted-foreground" size={12} />
|
|
<span>1</span>
|
|
</PromptInputButton>
|
|
</PromptInputHoverCardTrigger>
|
|
<PromptInputHoverCardContent className="divide-y overflow-hidden p-0">
|
|
<div className="space-y-2 p-3">
|
|
<p className="font-medium text-muted-foreground text-sm">
|
|
Attached Project Rules
|
|
</p>
|
|
<p className="ml-4 text-muted-foreground text-sm">
|
|
Always Apply:
|
|
</p>
|
|
<p className="ml-8 text-sm">ultracite.mdc</p>
|
|
</div>
|
|
<p className="bg-sidebar px-4 py-3 text-muted-foreground text-sm">
|
|
Click to manage
|
|
</p>
|
|
</PromptInputHoverCardContent>
|
|
</PromptInputHoverCard>
|
|
<PromptInputHoverCard>
|
|
<PromptInputHoverCardTrigger>
|
|
<PromptInputButton size="sm" variant="outline">
|
|
<FilesIcon className="text-muted-foreground" size={12} />
|
|
<span>1 Tab</span>
|
|
</PromptInputButton>
|
|
</PromptInputHoverCardTrigger>
|
|
<PromptInputHoverCardContent className="w-[300px] space-y-4 px-0 py-3">
|
|
<PromptInputTab>
|
|
<PromptInputTabLabel>Active Tabs</PromptInputTabLabel>
|
|
<PromptInputTabBody>
|
|
{sampleTabs.active.map((tab) => (
|
|
<PromptInputTabItem key={tab.path}>
|
|
<GlobeIcon className="text-primary" size={16} />
|
|
<span className="truncate" dir="rtl">
|
|
{tab.path}
|
|
</span>
|
|
</PromptInputTabItem>
|
|
))}
|
|
</PromptInputTabBody>
|
|
</PromptInputTab>
|
|
<PromptInputTab>
|
|
<PromptInputTabLabel>Recents</PromptInputTabLabel>
|
|
<PromptInputTabBody>
|
|
{sampleTabs.recents.map((tab) => (
|
|
<PromptInputTabItem key={tab.path}>
|
|
<GlobeIcon className="text-primary" size={16} />
|
|
<span className="truncate" dir="rtl">
|
|
{tab.path}
|
|
</span>
|
|
</PromptInputTabItem>
|
|
))}
|
|
</PromptInputTabBody>
|
|
</PromptInputTab>
|
|
<div className="border-t px-3 pt-2 text-muted-foreground text-xs">
|
|
Only file paths are included
|
|
</div>
|
|
</PromptInputHoverCardContent>
|
|
</PromptInputHoverCard>
|
|
<PromptInputAttachmentsDisplay />
|
|
<PromptInputReferencedSourcesDisplay />
|
|
</PromptInputHeader>
|
|
<PromptInputBody>
|
|
<PromptInputTextarea placeholder="Plan, search, build anything" />
|
|
</PromptInputBody>
|
|
<PromptInputFooter>
|
|
<PromptInputTools>
|
|
<ModelSelector
|
|
onOpenChange={setModelSelectorOpen}
|
|
open={modelSelectorOpen}
|
|
>
|
|
<ModelSelectorTrigger asChild>
|
|
<PromptInputButton>
|
|
{selectedModelData?.chefSlug && (
|
|
<ModelSelectorLogo
|
|
provider={selectedModelData.chefSlug}
|
|
/>
|
|
)}
|
|
{selectedModelData?.name && (
|
|
<ModelSelectorName>
|
|
{selectedModelData.name}
|
|
</ModelSelectorName>
|
|
)}
|
|
</PromptInputButton>
|
|
</ModelSelectorTrigger>
|
|
<ModelSelectorContent>
|
|
<ModelSelectorInput placeholder="Search models..." />
|
|
<ModelSelectorList>
|
|
<ModelSelectorEmpty>No models found.</ModelSelectorEmpty>
|
|
{["OpenAI", "Anthropic", "Google"].map((chef) => (
|
|
<ModelSelectorGroup heading={chef} key={chef}>
|
|
{models
|
|
.filter((m) => m.chef === chef)
|
|
.map((m) => (
|
|
<ModelItem
|
|
key={m.id}
|
|
m={m}
|
|
onSelect={handleModelSelect}
|
|
selectedModel={model}
|
|
/>
|
|
))}
|
|
</ModelSelectorGroup>
|
|
))}
|
|
</ModelSelectorList>
|
|
</ModelSelectorContent>
|
|
</ModelSelector>
|
|
</PromptInputTools>
|
|
<div className="flex items-center gap-2">
|
|
<Button size="icon-sm" variant="ghost">
|
|
<ImageIcon className="text-muted-foreground" size={16} />
|
|
</Button>
|
|
<PromptInputSubmit className="!h-8" status={status} />
|
|
</div>
|
|
</PromptInputFooter>
|
|
</PromptInput>
|
|
</PromptInputProvider>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Example;
|