Files
wehub-resource-sync e30e75b5d4
Changesets / Create Version PR (push) Has been cancelled
Deploy Shadcn Registry / Deploy Production (push) Has been cancelled
Template Metrics / LOC + Bundle Size (push) Has been cancelled
Code Quality / Oxlint + Oxfmt (push) Has been cancelled
Code Quality / Template Sync (push) Has been cancelled
Code Quality / Build Changed Packages (push) Has been cancelled
Code Quality / Test Changed Packages (push) Has been cancelled
Deploy Expo Example / Deploy Production (push) Has been cancelled
Deploy Ink Example / Deploy Production (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.12) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:40:13 +08:00

99 lines
3.1 KiB
TypeScript

"use client";
import { useEffect, useRef, useState } from "react";
import { ArrowUpIcon, PlusIcon } from "lucide-react";
import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
type Props = {
value?: string | undefined;
onValueChange?: (value: string) => void;
onSubmit?: (value: string) => void;
placeholder?: string | undefined;
};
export function PromptInput({
value: controlled,
onValueChange,
onSubmit,
placeholder,
}: Props) {
const [internal, setInternal] = useState("");
const value = controlled ?? internal;
const textareaRef = useRef<HTMLTextAreaElement>(null);
const setValue = (nextValue: string) => {
if (onValueChange) onValueChange(nextValue);
else setInternal(nextValue);
};
useEffect(() => {
void value;
const el = textareaRef.current;
if (!el) return;
el.style.height = "auto";
el.style.height = `${Math.min(el.scrollHeight, 128)}px`;
}, [value]);
const handleSubmit = () => {
const trimmed = value.trim();
if (!trimmed) return;
onSubmit?.(trimmed);
};
return (
<div className="aui-composer-root relative flex w-full flex-col">
<div
data-slot="aui_composer-shell"
className={cn(
"bg-background border-border/60 dark:border-muted-foreground/15 dark:bg-muted/30",
"flex w-full flex-col gap-2 rounded-3xl border p-2",
"shadow-[0_4px_16px_-8px_rgba(0,0,0,0.08),0_1px_2px_rgba(0,0,0,0.04)]",
"transition-[border-color,box-shadow]",
"focus-within:border-border dark:focus-within:border-muted-foreground/30",
"focus-within:shadow-[0_6px_24px_-8px_rgba(0,0,0,0.12),0_1px_2px_rgba(0,0,0,0.05)]",
"dark:shadow-none",
)}
>
<textarea
ref={textareaRef}
value={value}
onChange={(event) => setValue(event.target.value)}
onKeyDown={(event) => {
if (event.nativeEvent.isComposing) return;
if (event.key === "Enter" && !event.shiftKey) {
event.preventDefault();
handleSubmit();
}
}}
placeholder={placeholder}
rows={1}
className="aui-composer-input text-foreground placeholder:text-muted-foreground/80 relative max-h-32 min-h-10 w-full resize-none bg-transparent px-2.5 py-1 text-base outline-none"
/>
<div className="aui-composer-action-wrapper relative flex items-center justify-between px-0.5 pb-0.5">
<Button
type="button"
variant="ghost"
size="icon"
className="text-muted-foreground size-7 rounded-full"
aria-label="Attach file"
disabled
>
<PlusIcon className="size-4" />
</Button>
<Button
type="button"
size="icon"
className="aui-composer-send size-7 rounded-full"
onClick={handleSubmit}
disabled={!value.trim()}
aria-label="Send prompt"
>
<ArrowUpIcon className="size-4.5" />
</Button>
</div>
</div>
</div>
);
}