39 lines
1.7 KiB
TypeScript
39 lines
1.7 KiB
TypeScript
import { ReplyIcon } from "@lume/icons";
|
|
import * as Tooltip from "@radix-ui/react-tooltip";
|
|
import { useRouteContext } from "@tanstack/react-router";
|
|
import { useNoteContext } from "../provider";
|
|
import { cn } from "@lume/utils";
|
|
|
|
export function NoteReply({ large = false }: { large?: boolean }) {
|
|
const event = useNoteContext();
|
|
const { ark } = useRouteContext({ strict: false });
|
|
|
|
return (
|
|
<Tooltip.Provider>
|
|
<Tooltip.Root delayDuration={150}>
|
|
<Tooltip.Trigger asChild>
|
|
<button
|
|
type="button"
|
|
onClick={() => ark.open_editor(event.id)}
|
|
className={cn(
|
|
"inline-flex items-center justify-center text-neutral-800 dark:text-neutral-200",
|
|
large
|
|
? "rounded-full bg-neutral-100 dark:bg-white/10 h-7 gap-1.5 w-24 text-sm font-medium hover:text-blue-500 hover:bg-neutral-200 dark:hover:bg-white/20"
|
|
: "size-7",
|
|
)}
|
|
>
|
|
<ReplyIcon className="shrink-0 size-4" />
|
|
{large ? "Reply" : null}
|
|
</button>
|
|
</Tooltip.Trigger>
|
|
<Tooltip.Portal>
|
|
<Tooltip.Content className="inline-flex h-7 select-none items-center justify-center rounded-md bg-neutral-950 px-3.5 text-sm text-neutral-50 will-change-[transform,opacity] data-[state=delayed-open]:data-[side=bottom]:animate-slideUpAndFade data-[state=delayed-open]:data-[side=left]:animate-slideRightAndFade data-[state=delayed-open]:data-[side=right]:animate-slideLeftAndFade data-[state=delayed-open]:data-[side=top]:animate-slideDownAndFade dark:bg-neutral-50 dark:text-neutral-950">
|
|
Reply
|
|
<Tooltip.Arrow className="fill-neutral-950 dark:fill-neutral-50" />
|
|
</Tooltip.Content>
|
|
</Tooltip.Portal>
|
|
</Tooltip.Root>
|
|
</Tooltip.Provider>
|
|
);
|
|
}
|