73 lines
1.6 KiB
TypeScript
73 lines
1.6 KiB
TypeScript
import { mergeProps } from "@base-ui/react/merge-props"
|
|
import { useRender } from "@base-ui/react/use-render"
|
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
import { cn } from "@/lib/tiptap-utils"
|
|
import { Separator } from "@/components/tiptap-ui-primitive/separator"
|
|
import "./button-group.scss"
|
|
|
|
const buttonGroupVariants = cva("tiptap-button-group", {
|
|
variants: {
|
|
orientation: {
|
|
horizontal: "tiptap-button-group-horizontal",
|
|
vertical: "tiptap-button-group-vertical",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
orientation: "horizontal",
|
|
},
|
|
})
|
|
|
|
function ButtonGroup({
|
|
className,
|
|
orientation,
|
|
...props
|
|
}: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>) {
|
|
return (
|
|
<div
|
|
role="group"
|
|
data-slot="tiptap-button-group"
|
|
data-orientation={orientation}
|
|
className={cn(buttonGroupVariants({ orientation }), className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function ButtonGroupText({
|
|
className,
|
|
render,
|
|
...props
|
|
}: useRender.ComponentProps<"div">) {
|
|
return useRender({
|
|
defaultTagName: "div",
|
|
props: mergeProps<"div">(
|
|
{ className: cn("tiptap-button-group-text", className) },
|
|
props
|
|
),
|
|
render,
|
|
state: { slot: "tiptap-button-group-text" },
|
|
})
|
|
}
|
|
|
|
function ButtonGroupSeparator({
|
|
className,
|
|
orientation = "vertical",
|
|
...props
|
|
}: React.ComponentProps<typeof Separator>) {
|
|
return (
|
|
<Separator
|
|
data-slot="tiptap-button-group-separator"
|
|
orientation={orientation}
|
|
className={cn("tiptap-button-group-separator", className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export {
|
|
ButtonGroup,
|
|
ButtonGroupSeparator,
|
|
ButtonGroupText,
|
|
buttonGroupVariants,
|
|
}
|