mirror of https://github.com/buster-so/buster.git
fix toolbar imports
This commit is contained in:
parent
9639eba408
commit
7f30a7c33f
|
@ -24,7 +24,7 @@ import { LinkToolbarButton } from './LinkToolbarButton';
|
||||||
import { MarkToolbarButton } from './MarktoolbarButton';
|
import { MarkToolbarButton } from './MarktoolbarButton';
|
||||||
import { MoreToolbarButton } from './MoreToolbarButton';
|
import { MoreToolbarButton } from './MoreToolbarButton';
|
||||||
import { SuggestionToolbarButton } from './SuggestionToolbarButton';
|
import { SuggestionToolbarButton } from './SuggestionToolbarButton';
|
||||||
import { ToolbarGroup } from './Toolbar';
|
import { ToolbarGroup } from '@/components/ui/toolbar/Toolbar';
|
||||||
import { TurnIntoToolbarButton } from './TurnIntoToolbarButton';
|
import { TurnIntoToolbarButton } from './TurnIntoToolbarButton';
|
||||||
import { UndoToolbarButton, RedoToolbarButton } from './UndoToolbarButton';
|
import { UndoToolbarButton, RedoToolbarButton } from './UndoToolbarButton';
|
||||||
import { ExportToolbarButton } from './ExportToolbarButton';
|
import { ExportToolbarButton } from './ExportToolbarButton';
|
||||||
|
|
|
@ -15,7 +15,7 @@ import { useEditorId, useEventEditorValue, usePluginOption } from 'platejs/react
|
||||||
|
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
|
|
||||||
import { Toolbar } from './Toolbar';
|
import { Toolbar } from '@/components/ui/toolbar/Toolbar';
|
||||||
|
|
||||||
export function FloatingToolbar({
|
export function FloatingToolbar({
|
||||||
children,
|
children,
|
||||||
|
|
|
@ -28,7 +28,7 @@ import { LinkToolbarButton } from './LinkToolbarButton';
|
||||||
import { MarkToolbarButton } from './MarktoolbarButton';
|
import { MarkToolbarButton } from './MarktoolbarButton';
|
||||||
import { MoreToolbarButton } from './MoreToolbarButton';
|
import { MoreToolbarButton } from './MoreToolbarButton';
|
||||||
import { SuggestionToolbarButton } from './SuggestionToolbarButton';
|
import { SuggestionToolbarButton } from './SuggestionToolbarButton';
|
||||||
import { ToolbarGroup } from './Toolbar';
|
import { ToolbarGroup } from '@/components/ui/toolbar/Toolbar';
|
||||||
import { TurnIntoToolbarButton } from './TurnIntoToolbarButton';
|
import { TurnIntoToolbarButton } from './TurnIntoToolbarButton';
|
||||||
|
|
||||||
export function FloatingToolbarButtons() {
|
export function FloatingToolbarButtons() {
|
||||||
|
|
|
@ -38,7 +38,7 @@ import {
|
||||||
} from '@/components/ui/dropdown-menu';
|
} from '@/components/ui/dropdown-menu';
|
||||||
import { insertBlock, insertInlineElement } from './transforms';
|
import { insertBlock, insertInlineElement } from './transforms';
|
||||||
|
|
||||||
import { ToolbarButton, ToolbarMenuGroup } from './Toolbar';
|
import { ToolbarButton, ToolbarMenuGroup } from '@/components/ui/toolbar/Toolbar';
|
||||||
|
|
||||||
type Group = {
|
type Group = {
|
||||||
group: string;
|
group: string;
|
||||||
|
|
|
@ -20,7 +20,7 @@ import {
|
||||||
ToolbarSplitButton,
|
ToolbarSplitButton,
|
||||||
ToolbarSplitButtonPrimary,
|
ToolbarSplitButtonPrimary,
|
||||||
ToolbarSplitButtonSecondary
|
ToolbarSplitButtonSecondary
|
||||||
} from './Toolbar';
|
} from '@/components/ui/toolbar/Toolbar';
|
||||||
|
|
||||||
export function BulletedListToolbarButton() {
|
export function BulletedListToolbarButton() {
|
||||||
const editor = useEditorRef();
|
const editor = useEditorRef();
|
||||||
|
|
|
@ -34,7 +34,7 @@ import {
|
||||||
ToolbarSplitButton,
|
ToolbarSplitButton,
|
||||||
ToolbarSplitButtonPrimary,
|
ToolbarSplitButtonPrimary,
|
||||||
ToolbarSplitButtonSecondary
|
ToolbarSplitButtonSecondary
|
||||||
} from './Toolbar';
|
} from '@/components/ui/toolbar/Toolbar';
|
||||||
|
|
||||||
const MEDIA_CONFIG: Record<
|
const MEDIA_CONFIG: Record<
|
||||||
string,
|
string,
|
||||||
|
|
|
@ -1,332 +0,0 @@
|
||||||
'use client';
|
|
||||||
|
|
||||||
import * as React from 'react';
|
|
||||||
|
|
||||||
import * as ToolbarPrimitive from '@radix-ui/react-toolbar';
|
|
||||||
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
||||||
import { type VariantProps, cva } from 'class-variance-authority';
|
|
||||||
import { ChevronDown } from '@/components/ui/icons';
|
|
||||||
|
|
||||||
import {
|
|
||||||
DropdownMenuLabel,
|
|
||||||
DropdownMenuRadioGroup,
|
|
||||||
DropdownMenuSeparator
|
|
||||||
} from '@/components/ui/dropdown-menu';
|
|
||||||
import { Separator } from '@/components/ui/separator';
|
|
||||||
import { Tooltip } from '@/components/ui/tooltip';
|
|
||||||
import { cn } from '@/lib/utils';
|
|
||||||
|
|
||||||
export const Toolbar = React.forwardRef<
|
|
||||||
HTMLDivElement,
|
|
||||||
React.ComponentProps<typeof ToolbarPrimitive.Root>
|
|
||||||
>(function Toolbar({ className, ...props }, ref) {
|
|
||||||
return (
|
|
||||||
<ToolbarPrimitive.Root
|
|
||||||
ref={ref}
|
|
||||||
className={cn('relative flex items-center select-none', className)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
Toolbar.displayName = 'Toolbar';
|
|
||||||
|
|
||||||
export const ToolbarToggleGroup = React.forwardRef<
|
|
||||||
React.ElementRef<typeof ToolbarPrimitive.ToolbarToggleGroup>,
|
|
||||||
React.ComponentProps<typeof ToolbarPrimitive.ToolbarToggleGroup>
|
|
||||||
>(function ToolbarToggleGroup({ className, ...props }, ref) {
|
|
||||||
return (
|
|
||||||
<ToolbarPrimitive.ToolbarToggleGroup
|
|
||||||
ref={ref}
|
|
||||||
className={cn('flex items-center', className)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
export function ToolbarLink({
|
|
||||||
className,
|
|
||||||
...props
|
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.Link>) {
|
|
||||||
return (
|
|
||||||
<ToolbarPrimitive.Link
|
|
||||||
className={cn('font-medium underline underline-offset-4', className)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function ToolbarSeparator({
|
|
||||||
className,
|
|
||||||
...props
|
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.Separator>) {
|
|
||||||
return (
|
|
||||||
<ToolbarPrimitive.Separator
|
|
||||||
className={cn('bg-border mx-2 my-1 w-px shrink-0', className)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// From toggleVariants
|
|
||||||
const toolbarButtonVariants = cva(
|
|
||||||
"inline-flex cursor-pointer items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-[color,box-shadow] outline-none hover:bg-muted hover:text-muted-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-checked:bg-accent aria-checked:text-accent-foreground aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
||||||
{
|
|
||||||
defaultVariants: {
|
|
||||||
size: 'default',
|
|
||||||
variant: 'default'
|
|
||||||
},
|
|
||||||
variants: {
|
|
||||||
size: {
|
|
||||||
default: 'h-9 min-w-9 px-2',
|
|
||||||
lg: 'h-10 min-w-10 px-2.5',
|
|
||||||
sm: 'h-8 min-w-8 px-1.5'
|
|
||||||
},
|
|
||||||
variant: {
|
|
||||||
default: 'bg-transparent',
|
|
||||||
outline:
|
|
||||||
'border border-input bg-transparent shadow-xs hover:bg-accent hover:text-accent-foreground'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const dropdownArrowVariants = cva(
|
|
||||||
cn(
|
|
||||||
'inline-flex items-center justify-center rounded-r-md text-sm font-medium text-foreground transition-colors disabled:pointer-events-none disabled:opacity-50'
|
|
||||||
),
|
|
||||||
{
|
|
||||||
defaultVariants: {
|
|
||||||
size: 'sm',
|
|
||||||
variant: 'default'
|
|
||||||
},
|
|
||||||
variants: {
|
|
||||||
size: {
|
|
||||||
default: 'h-9 w-6',
|
|
||||||
lg: 'h-10 w-8',
|
|
||||||
sm: 'h-8 w-4'
|
|
||||||
},
|
|
||||||
variant: {
|
|
||||||
default:
|
|
||||||
'bg-transparent hover:bg-muted hover:text-muted-foreground aria-checked:bg-accent aria-checked:text-accent-foreground',
|
|
||||||
outline:
|
|
||||||
'border border-l-0 border-input bg-transparent hover:bg-accent hover:text-accent-foreground'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
type ToolbarButtonProps = {
|
|
||||||
isDropdown?: boolean;
|
|
||||||
pressed?: boolean;
|
|
||||||
} & Omit<React.ComponentPropsWithoutRef<typeof ToolbarToggleItem>, 'asChild' | 'value'> &
|
|
||||||
VariantProps<typeof toolbarButtonVariants>;
|
|
||||||
|
|
||||||
export const ToolbarButton = withTooltip(
|
|
||||||
React.forwardRef<HTMLButtonElement, ToolbarButtonProps>(function ToolbarButton(
|
|
||||||
{ children, className, isDropdown, pressed, size = 'sm', variant, ...props },
|
|
||||||
ref
|
|
||||||
) {
|
|
||||||
return typeof pressed === 'boolean' ? (
|
|
||||||
<ToolbarToggleGroup disabled={props.disabled} value="single" type="single">
|
|
||||||
<ToolbarToggleItem
|
|
||||||
ref={ref}
|
|
||||||
className={cn(
|
|
||||||
toolbarButtonVariants({
|
|
||||||
size,
|
|
||||||
variant
|
|
||||||
}),
|
|
||||||
isDropdown && 'justify-between gap-1 pr-1',
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
value={pressed ? 'single' : ''}
|
|
||||||
{...props}>
|
|
||||||
{isDropdown ? (
|
|
||||||
<>
|
|
||||||
<div className="flex flex-1 items-center gap-2 whitespace-nowrap">{children}</div>
|
|
||||||
<div className="text-muted-foreground size-3.5" data-icon>
|
|
||||||
<ChevronDown />
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
children
|
|
||||||
)}
|
|
||||||
</ToolbarToggleItem>
|
|
||||||
</ToolbarToggleGroup>
|
|
||||||
) : (
|
|
||||||
<ToolbarPrimitive.Button
|
|
||||||
ref={ref}
|
|
||||||
className={cn(
|
|
||||||
toolbarButtonVariants({
|
|
||||||
size,
|
|
||||||
variant
|
|
||||||
}),
|
|
||||||
isDropdown && 'pr-1',
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
{...props}>
|
|
||||||
{children}
|
|
||||||
</ToolbarPrimitive.Button>
|
|
||||||
);
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
export function ToolbarSplitButton({
|
|
||||||
className,
|
|
||||||
...props
|
|
||||||
}: React.ComponentPropsWithoutRef<typeof ToolbarButton>) {
|
|
||||||
return (
|
|
||||||
<ToolbarButton
|
|
||||||
className={cn('group flex gap-0 px-0 hover:bg-transparent', className)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
type ToolbarSplitButtonPrimaryProps = Omit<
|
|
||||||
React.ComponentPropsWithoutRef<typeof ToolbarToggleItem>,
|
|
||||||
'value'
|
|
||||||
> &
|
|
||||||
VariantProps<typeof toolbarButtonVariants>;
|
|
||||||
|
|
||||||
export function ToolbarSplitButtonPrimary({
|
|
||||||
children,
|
|
||||||
className,
|
|
||||||
size = 'sm',
|
|
||||||
variant,
|
|
||||||
...props
|
|
||||||
}: ToolbarSplitButtonPrimaryProps) {
|
|
||||||
return (
|
|
||||||
<span
|
|
||||||
className={cn(
|
|
||||||
toolbarButtonVariants({
|
|
||||||
size,
|
|
||||||
variant
|
|
||||||
}),
|
|
||||||
'rounded-r-none',
|
|
||||||
'group-data-[pressed=true]:bg-accent group-data-[pressed=true]:text-accent-foreground',
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
{...props}>
|
|
||||||
{children}
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function ToolbarSplitButtonSecondary({
|
|
||||||
className,
|
|
||||||
size,
|
|
||||||
variant,
|
|
||||||
...props
|
|
||||||
}: React.ComponentPropsWithoutRef<'span'> & VariantProps<typeof dropdownArrowVariants>) {
|
|
||||||
return (
|
|
||||||
<span
|
|
||||||
className={cn(
|
|
||||||
dropdownArrowVariants({
|
|
||||||
size,
|
|
||||||
variant
|
|
||||||
}),
|
|
||||||
'group-data-[pressed=true]:bg-accent group-data-[pressed=true]:text-accent-foreground',
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
onClick={(e) => e.stopPropagation()}
|
|
||||||
role="button"
|
|
||||||
{...props}>
|
|
||||||
<div className="text-muted-foreground size-3.5" data-icon>
|
|
||||||
<ChevronDown />
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ToolbarToggleItem = React.forwardRef<
|
|
||||||
React.ElementRef<typeof ToolbarPrimitive.ToggleItem>,
|
|
||||||
React.ComponentProps<typeof ToolbarPrimitive.ToggleItem> &
|
|
||||||
VariantProps<typeof toolbarButtonVariants>
|
|
||||||
>(function ToolbarToggleItem({ className, size = 'sm', variant, ...props }, ref) {
|
|
||||||
return (
|
|
||||||
<ToolbarPrimitive.ToggleItem
|
|
||||||
ref={ref}
|
|
||||||
className={cn(toolbarButtonVariants({ size, variant }), className)}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
export function ToolbarGroup({ children, className }: React.ComponentProps<'div'>) {
|
|
||||||
return (
|
|
||||||
<div className={cn('group/toolbar-group', 'relative hidden has-[button]:flex', className)}>
|
|
||||||
<div className="flex items-center">{children}</div>
|
|
||||||
|
|
||||||
<div className="mx-1.5 py-0.5 group-last/toolbar-group:hidden!">
|
|
||||||
<Separator orientation="vertical" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
type TooltipProps<T extends React.ElementType> = {
|
|
||||||
tooltip?: React.ReactNode;
|
|
||||||
} & React.ComponentProps<T>;
|
|
||||||
|
|
||||||
function withTooltip<T extends React.ElementType>(Component: T) {
|
|
||||||
const ExtendComponent = React.forwardRef<HTMLElement, TooltipProps<T>>(
|
|
||||||
({ tooltip, tooltipContentProps, tooltipProps, tooltipTriggerProps, ...props }, ref) => {
|
|
||||||
const [mounted, setMounted] = React.useState(false);
|
|
||||||
|
|
||||||
React.useEffect(() => {
|
|
||||||
setMounted(true);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const componentProps = {
|
|
||||||
...props,
|
|
||||||
ref
|
|
||||||
};
|
|
||||||
|
|
||||||
const component = React.createElement(Component, componentProps);
|
|
||||||
|
|
||||||
if (tooltip && mounted) {
|
|
||||||
return <Tooltip title={tooltip}>{component}</Tooltip>;
|
|
||||||
}
|
|
||||||
|
|
||||||
return component;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
ExtendComponent.displayName = `withTooltip`;
|
|
||||||
|
|
||||||
return ExtendComponent;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function ToolbarMenuGroup({
|
|
||||||
children,
|
|
||||||
className,
|
|
||||||
label,
|
|
||||||
...props
|
|
||||||
}: React.ComponentProps<typeof DropdownMenuRadioGroup> & { label?: string }) {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<DropdownMenuSeparator
|
|
||||||
className={cn(
|
|
||||||
'hidden',
|
|
||||||
'mb-0 shrink-0 peer-has-[[role=menuitem]]/menu-group:block peer-has-[[role=menuitemradio]]/menu-group:block peer-has-[[role=option]]/menu-group:block'
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DropdownMenuRadioGroup
|
|
||||||
{...props}
|
|
||||||
className={cn(
|
|
||||||
'hidden',
|
|
||||||
'peer/menu-group group/menu-group my-1.5 has-[[role=menuitem]]:block has-[[role=menuitemradio]]:block has-[[role=option]]:block',
|
|
||||||
className
|
|
||||||
)}>
|
|
||||||
{label && (
|
|
||||||
<DropdownMenuLabel className="text-muted-foreground text-xs font-semibold select-none">
|
|
||||||
{label}
|
|
||||||
</DropdownMenuLabel>
|
|
||||||
)}
|
|
||||||
{children}
|
|
||||||
</DropdownMenuRadioGroup>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
|
@ -34,7 +34,7 @@ import {
|
||||||
} from '@/components/ui/dropdown-menu';
|
} from '@/components/ui/dropdown-menu';
|
||||||
import { getBlockType, setBlockType } from './transforms';
|
import { getBlockType, setBlockType } from './transforms';
|
||||||
|
|
||||||
import { ToolbarButton, ToolbarMenuGroup } from './Toolbar';
|
import { ToolbarButton, ToolbarMenuGroup } from '@/components/ui/toolbar/Toolbar';
|
||||||
|
|
||||||
const turnIntoItems = [
|
const turnIntoItems = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -16,53 +16,53 @@ import { Separator } from '@/components/ui/separator';
|
||||||
import { Tooltip, TooltipTrigger } from '@/components/ui/tooltip';
|
import { Tooltip, TooltipTrigger } from '@/components/ui/tooltip';
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
|
|
||||||
export function Toolbar({
|
export const Toolbar = ({
|
||||||
className,
|
className,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.Root>) {
|
}: React.ComponentProps<typeof ToolbarPrimitive.Root>) => {
|
||||||
return (
|
return (
|
||||||
<ToolbarPrimitive.Root
|
<ToolbarPrimitive.Root
|
||||||
className={cn('relative flex items-center select-none', className)}
|
className={cn('relative flex items-center select-none', className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export function ToolbarToggleGroup({
|
export const ToolbarToggleGroup = ({
|
||||||
className,
|
className,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.ToolbarToggleGroup>) {
|
}: React.ComponentProps<typeof ToolbarPrimitive.ToolbarToggleGroup>) => {
|
||||||
return (
|
return (
|
||||||
<ToolbarPrimitive.ToolbarToggleGroup
|
<ToolbarPrimitive.ToolbarToggleGroup
|
||||||
className={cn('flex items-center', className)}
|
className={cn('flex items-center', className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export function ToolbarLink({
|
export const ToolbarLink = ({
|
||||||
className,
|
className,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.Link>) {
|
}: React.ComponentProps<typeof ToolbarPrimitive.Link>) => {
|
||||||
return (
|
return (
|
||||||
<ToolbarPrimitive.Link
|
<ToolbarPrimitive.Link
|
||||||
className={cn('font-medium underline underline-offset-4', className)}
|
className={cn('font-medium underline underline-offset-4', className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export function ToolbarSeparator({
|
export const ToolbarSeparator = ({
|
||||||
className,
|
className,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.Separator>) {
|
}: React.ComponentProps<typeof ToolbarPrimitive.Separator>) => {
|
||||||
return (
|
return (
|
||||||
<ToolbarPrimitive.Separator
|
<ToolbarPrimitive.Separator
|
||||||
className={cn('bg-border mx-2 my-1 w-px shrink-0', className)}
|
className={cn('bg-border mx-2 my-1 w-px shrink-0', className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
// From toggleVariants
|
// From toggleVariants
|
||||||
const toolbarButtonVariants = cva(
|
const toolbarButtonVariants = cva(
|
||||||
|
@ -115,21 +115,18 @@ const dropdownArrowVariants = cva(
|
||||||
type ToolbarButtonProps = {
|
type ToolbarButtonProps = {
|
||||||
isDropdown?: boolean;
|
isDropdown?: boolean;
|
||||||
pressed?: boolean;
|
pressed?: boolean;
|
||||||
} & Omit<React.ComponentPropsWithoutRef<typeof ToolbarToggleItem>, 'asChild' | 'value'> &
|
tooltip?: string | React.ReactNode;
|
||||||
|
} & Omit<React.ComponentPropsWithRef<typeof ToolbarToggleItem>, 'asChild' | 'value'> &
|
||||||
VariantProps<typeof toolbarButtonVariants>;
|
VariantProps<typeof toolbarButtonVariants>;
|
||||||
|
|
||||||
export const ToolbarButton = withTooltip(function ToolbarButton({
|
export const ToolbarButton = React.forwardRef<
|
||||||
children,
|
React.ElementRef<typeof ToolbarToggleItem>,
|
||||||
className,
|
ToolbarButtonProps
|
||||||
isDropdown,
|
>(({ children, className, isDropdown, pressed, size = 'sm', variant, tooltip, ...props }, ref) => {
|
||||||
pressed,
|
|
||||||
size = 'sm',
|
|
||||||
variant,
|
|
||||||
...props
|
|
||||||
}: ToolbarButtonProps) {
|
|
||||||
return typeof pressed === 'boolean' ? (
|
return typeof pressed === 'boolean' ? (
|
||||||
<ToolbarToggleGroup disabled={props.disabled} value="single" type="single">
|
<ToolbarToggleGroup disabled={props.disabled} value="single" type="single">
|
||||||
<ToolbarToggleItem
|
<ToolbarToggleItem
|
||||||
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
toolbarButtonVariants({
|
toolbarButtonVariants({
|
||||||
size,
|
size,
|
||||||
|
@ -154,6 +151,7 @@ export const ToolbarButton = withTooltip(function ToolbarButton({
|
||||||
</ToolbarToggleGroup>
|
</ToolbarToggleGroup>
|
||||||
) : (
|
) : (
|
||||||
<ToolbarPrimitive.Button
|
<ToolbarPrimitive.Button
|
||||||
|
ref={ref as React.Ref<React.ElementRef<typeof ToolbarPrimitive.Button>>}
|
||||||
className={cn(
|
className={cn(
|
||||||
toolbarButtonVariants({
|
toolbarButtonVariants({
|
||||||
size,
|
size,
|
||||||
|
@ -168,17 +166,19 @@ export const ToolbarButton = withTooltip(function ToolbarButton({
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
export function ToolbarSplitButton({
|
ToolbarButton.displayName = 'ToolbarButton';
|
||||||
|
|
||||||
|
export const ToolbarSplitButton = ({
|
||||||
className,
|
className,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentPropsWithoutRef<typeof ToolbarButton>) {
|
}: React.ComponentPropsWithoutRef<typeof ToolbarButton>) => {
|
||||||
return (
|
return (
|
||||||
<ToolbarButton
|
<ToolbarButton
|
||||||
className={cn('group flex gap-0 px-0 hover:bg-transparent', className)}
|
className={cn('group flex gap-0 px-0 hover:bg-transparent', className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
type ToolbarSplitButtonPrimaryProps = Omit<
|
type ToolbarSplitButtonPrimaryProps = Omit<
|
||||||
React.ComponentPropsWithoutRef<typeof ToolbarToggleItem>,
|
React.ComponentPropsWithoutRef<typeof ToolbarToggleItem>,
|
||||||
|
@ -186,13 +186,13 @@ type ToolbarSplitButtonPrimaryProps = Omit<
|
||||||
> &
|
> &
|
||||||
VariantProps<typeof toolbarButtonVariants>;
|
VariantProps<typeof toolbarButtonVariants>;
|
||||||
|
|
||||||
export function ToolbarSplitButtonPrimary({
|
export const ToolbarSplitButtonPrimary = ({
|
||||||
children,
|
children,
|
||||||
className,
|
className,
|
||||||
size = 'sm',
|
size = 'sm',
|
||||||
variant,
|
variant,
|
||||||
...props
|
...props
|
||||||
}: ToolbarSplitButtonPrimaryProps) {
|
}: ToolbarSplitButtonPrimaryProps) => {
|
||||||
return (
|
return (
|
||||||
<span
|
<span
|
||||||
className={cn(
|
className={cn(
|
||||||
|
@ -208,16 +208,15 @@ export function ToolbarSplitButtonPrimary({
|
||||||
{children}
|
{children}
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export function ToolbarSplitButtonSecondary({
|
export const ToolbarSplitButtonSecondary = React.forwardRef<
|
||||||
className,
|
HTMLSpanElement,
|
||||||
size,
|
React.ComponentPropsWithoutRef<'span'> & VariantProps<typeof dropdownArrowVariants>
|
||||||
variant,
|
>(({ className, size, variant, ...props }, ref) => {
|
||||||
...props
|
|
||||||
}: React.ComponentPropsWithoutRef<'span'> & VariantProps<typeof dropdownArrowVariants>) {
|
|
||||||
return (
|
return (
|
||||||
<span
|
<span
|
||||||
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
dropdownArrowVariants({
|
dropdownArrowVariants({
|
||||||
size,
|
size,
|
||||||
|
@ -234,24 +233,22 @@ export function ToolbarSplitButtonSecondary({
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
|
|
||||||
export function ToolbarToggleItem({
|
export const ToolbarToggleItem = React.forwardRef<
|
||||||
className,
|
React.ElementRef<typeof ToolbarPrimitive.ToggleItem>,
|
||||||
size = 'sm',
|
React.ComponentProps<typeof ToolbarPrimitive.ToggleItem> &
|
||||||
variant,
|
VariantProps<typeof toolbarButtonVariants>
|
||||||
...props
|
>(({ className, size = 'sm', variant, ...props }, ref) => {
|
||||||
}: React.ComponentProps<typeof ToolbarPrimitive.ToggleItem> &
|
|
||||||
VariantProps<typeof toolbarButtonVariants>) {
|
|
||||||
return (
|
return (
|
||||||
<ToolbarPrimitive.ToggleItem
|
<ToolbarPrimitive.ToggleItem
|
||||||
className={cn(toolbarButtonVariants({ size, variant }), className)}
|
className={cn(toolbarButtonVariants({ size, variant }), className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
|
|
||||||
export function ToolbarGroup({ children, className }: React.ComponentProps<'div'>) {
|
export const ToolbarGroup = ({ children, className }: React.ComponentProps<'div'>) => {
|
||||||
return (
|
return (
|
||||||
<div className={cn('group/toolbar-group', 'relative hidden has-[button]:flex', className)}>
|
<div className={cn('group/toolbar-group', 'relative hidden has-[button]:flex', className)}>
|
||||||
<div className="flex items-center">{children}</div>
|
<div className="flex items-center">{children}</div>
|
||||||
|
@ -261,14 +258,14 @@ export function ToolbarGroup({ children, className }: React.ComponentProps<'div'
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export function ToolbarMenuGroup({
|
export const ToolbarMenuGroup = ({
|
||||||
children,
|
children,
|
||||||
className,
|
className,
|
||||||
label,
|
label,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentProps<typeof DropdownMenuRadioGroup> & { label?: string }) {
|
}: React.ComponentProps<typeof DropdownMenuRadioGroup> & { label?: string }) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<DropdownMenuSeparator
|
<DropdownMenuSeparator
|
||||||
|
@ -294,7 +291,7 @@ export function ToolbarMenuGroup({
|
||||||
</DropdownMenuRadioGroup>
|
</DropdownMenuRadioGroup>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
type TooltipProps<T extends React.ElementType> = {
|
type TooltipProps<T extends React.ElementType> = {
|
||||||
tooltip?: React.ReactNode;
|
tooltip?: React.ReactNode;
|
||||||
|
@ -303,14 +300,8 @@ type TooltipProps<T extends React.ElementType> = {
|
||||||
tooltipTriggerProps?: React.ComponentPropsWithoutRef<typeof TooltipTrigger>;
|
tooltipTriggerProps?: React.ComponentPropsWithoutRef<typeof TooltipTrigger>;
|
||||||
} & React.ComponentProps<T>;
|
} & React.ComponentProps<T>;
|
||||||
|
|
||||||
function withTooltip<T extends React.ElementType>(Component: T) {
|
const withTooltip = <T extends React.ElementType>(Component: T) => {
|
||||||
return function ExtendComponent({
|
return ({ tooltip, tooltipContentProps, tooltipProps, ref, ...props }: TooltipProps<T>) => {
|
||||||
tooltip,
|
|
||||||
tooltipContentProps,
|
|
||||||
tooltipProps,
|
|
||||||
ref,
|
|
||||||
...props
|
|
||||||
}: TooltipProps<T>) {
|
|
||||||
const [mounted, setMounted] = React.useState(false);
|
const [mounted, setMounted] = React.useState(false);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
|
@ -330,15 +321,15 @@ function withTooltip<T extends React.ElementType>(Component: T) {
|
||||||
|
|
||||||
return component;
|
return component;
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
|
|
||||||
function TooltipContent({
|
const TooltipContent = ({
|
||||||
children,
|
children,
|
||||||
className,
|
className,
|
||||||
// CHANGE
|
// CHANGE
|
||||||
sideOffset = 4,
|
sideOffset = 4,
|
||||||
...props
|
...props
|
||||||
}: React.ComponentProps<typeof TooltipPrimitive.Content>) {
|
}: React.ComponentProps<typeof TooltipPrimitive.Content>) => {
|
||||||
return (
|
return (
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipPrimitive.Content
|
<TooltipPrimitive.Content
|
||||||
|
@ -355,4 +346,4 @@ function TooltipContent({
|
||||||
</TooltipPrimitive.Content>
|
</TooltipPrimitive.Content>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue