mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-02 22:02:13 +08:00
* fix: use create_chat_model for summarization alias * fix: remove unused radix Icon import from suggestion --------- Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
|
import { cn } from "@/lib/utils";
|
|
import type { LucideIcon } from "lucide-react";
|
|
import { Children, type ComponentProps } from "react";
|
|
|
|
const STAGGER_DELAY_MS = 60;
|
|
const STAGGER_DELAY_MS_OFFSET = 250;
|
|
|
|
export type SuggestionsProps = ComponentProps<typeof ScrollArea>;
|
|
|
|
export const Suggestions = ({
|
|
className,
|
|
children,
|
|
...props
|
|
}: SuggestionsProps) => (
|
|
<ScrollArea className="overflow-x-auto whitespace-nowrap" {...props}>
|
|
<div className={cn("flex w-max flex-nowrap items-center gap-2", className)}>
|
|
{Children.map(children, (child, index) =>
|
|
child != null ? (
|
|
<span
|
|
className="animate-fade-in-up inline-block opacity-0"
|
|
style={{
|
|
animationDelay: `${STAGGER_DELAY_MS_OFFSET + index * STAGGER_DELAY_MS}ms`,
|
|
}}
|
|
>
|
|
{child}
|
|
</span>
|
|
) : (
|
|
child
|
|
),
|
|
)}
|
|
</div>
|
|
<ScrollBar className="hidden" orientation="horizontal" />
|
|
</ScrollArea>
|
|
);
|
|
|
|
export type SuggestionProps = Omit<ComponentProps<typeof Button>, "onClick"> & {
|
|
suggestion: React.ReactNode;
|
|
icon?: LucideIcon;
|
|
onClick?: () => void;
|
|
};
|
|
|
|
export const Suggestion = ({
|
|
suggestion,
|
|
onClick,
|
|
className,
|
|
icon: Icon,
|
|
variant = "outline",
|
|
size = "sm",
|
|
children,
|
|
...props
|
|
}: SuggestionProps) => {
|
|
const handleClick = () => {
|
|
onClick?.();
|
|
};
|
|
|
|
return (
|
|
<Button
|
|
className={cn(
|
|
"text-muted-foreground cursor-pointer rounded-full px-4 text-xs font-normal",
|
|
className,
|
|
)}
|
|
onClick={handleClick}
|
|
size={size}
|
|
type="button"
|
|
variant={variant}
|
|
{...props}
|
|
>
|
|
{Icon && <Icon className="size-4" />}
|
|
{children || suggestion}
|
|
</Button>
|
|
);
|
|
};
|