mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-14 23:07:01 +10:00
116 lines
4.0 KiB
TypeScript
116 lines
4.0 KiB
TypeScript
import type { VariantProps } from "class-variance-authority";
|
|
import type * as React from "react";
|
|
import { mergeProps } from "@base-ui/react/merge-props";
|
|
import { useRender } from "@base-ui/react/use-render";
|
|
import { cva } from "class-variance-authority";
|
|
import { cn } from "@reactive-resume/utils/style";
|
|
|
|
function BubbleGroup({ className, ...props }: React.ComponentProps<"div">) {
|
|
return <div data-slot="bubble-group" className={cn("flex min-w-0 flex-col gap-2", className)} {...props} />;
|
|
}
|
|
|
|
const bubbleVariants = cva(
|
|
"group/bubble relative flex w-fit min-w-0 max-w-[80%] flex-col gap-1 data-[variant=ghost]:max-w-full data-[align=end]:self-end group-data-[align=end]/message:self-end",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default:
|
|
"*:data-[slot=bubble-content]:bg-primary *:data-[slot=bubble-content]:text-primary-foreground [&>[data-slot=bubble-content]:is(button,a):hover]:bg-primary/80",
|
|
secondary:
|
|
"*:data-[slot=bubble-content]:bg-secondary *:data-[slot=bubble-content]:text-secondary-foreground [&>[data-slot=bubble-content]:is(button,a):hover]:bg-secondary/80",
|
|
muted: "*:data-[slot=bubble-content]:bg-muted [&>[data-slot=bubble-content]:is(button,a):hover]:bg-muted/80",
|
|
tinted:
|
|
"*:data-[slot=bubble-content]:bg-[oklch(from_var(--primary)_0.93_calc(c*0.4)_h)] *:data-[slot=bubble-content]:text-foreground dark:*:data-[slot=bubble-content]:bg-[oklch(from_var(--primary)_0.3_calc(c*0.4)_h)]",
|
|
outline:
|
|
"*:data-[slot=bubble-content]:border-border *:data-[slot=bubble-content]:bg-background [&>[data-slot=bubble-content]:is(button,a):hover]:bg-muted [&>[data-slot=bubble-content]:is(button,a):hover]:text-foreground",
|
|
ghost:
|
|
"border-none *:data-[slot=bubble-content]:rounded-none *:data-[slot=bubble-content]:bg-transparent *:data-[slot=bubble-content]:p-0 [&>[data-slot=bubble-content]:is(button,a):hover]:bg-muted [&>[data-slot=bubble-content]:is(button,a):hover]:text-foreground",
|
|
destructive:
|
|
"*:data-[slot=bubble-content]:bg-destructive/10 *:data-[slot=bubble-content]:text-destructive [&>[data-slot=bubble-content]:is(button,a):hover]:bg-destructive/20",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
},
|
|
},
|
|
);
|
|
|
|
function Bubble({
|
|
variant = "default",
|
|
align = "start",
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div"> &
|
|
VariantProps<typeof bubbleVariants> & {
|
|
align?: "start" | "end";
|
|
}) {
|
|
return (
|
|
<div
|
|
data-slot="bubble"
|
|
data-variant={variant}
|
|
data-align={align}
|
|
className={cn(bubbleVariants({ variant }), className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function BubbleContent({ className, render, ...props }: useRender.ComponentProps<"div">) {
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(
|
|
{
|
|
className: cn(
|
|
"w-fit min-w-0 max-w-full overflow-hidden break-words rounded-xl border border-transparent px-3 py-2 text-sm leading-relaxed group-data-[align=end]/bubble:self-end [button,a]:outline-none [button,a]:transition-colors [button,a]:focus-visible:border-ring [button,a]:focus-visible:ring-3 [button,a]:focus-visible:ring-ring/50 [button]:text-left",
|
|
className,
|
|
),
|
|
},
|
|
props,
|
|
),
|
|
render,
|
|
state: { slot: "bubble-content" },
|
|
});
|
|
}
|
|
|
|
const bubbleReactionsVariants = cva(
|
|
"absolute z-10 flex w-fit shrink-0 items-center justify-center gap-1 rounded-full bg-muted px-1.5 py-0.5 text-sm ring-3 ring-card has-[button]:p-0",
|
|
{
|
|
variants: {
|
|
side: {
|
|
top: "top-0 -translate-y-3/4",
|
|
bottom: "bottom-0 translate-y-3/4",
|
|
},
|
|
align: {
|
|
start: "left-3",
|
|
end: "right-3",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
side: "bottom",
|
|
align: "end",
|
|
},
|
|
},
|
|
);
|
|
|
|
function BubbleReactions({
|
|
side = "bottom",
|
|
align = "end",
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div"> & {
|
|
align?: "start" | "end";
|
|
side?: "top" | "bottom";
|
|
}) {
|
|
return (
|
|
<div
|
|
data-slot="bubble-reactions"
|
|
data-align={align}
|
|
data-side={side}
|
|
className={cn(bubbleReactionsVariants({ side, align }), className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export { Bubble, BubbleContent, BubbleGroup, BubbleReactions };
|