"use client" import * as React from "react" // --- Lib --- import { parseShortcutKeys } from "@/lib/tiptap-utils" // --- Hooks --- import { useTiptapEditor } from "@/hooks/use-tiptap-editor" // --- UI Primitives --- import type { ButtonProps } from "@/components/tiptap-ui-primitive/button" import { Button } from "@/components/tiptap-ui-primitive/button" import { Badge } from "@/components/tiptap-ui-primitive/badge" // --- Tiptap UI --- import type { ListType, UseListConfig } from "@/components/tiptap-ui/list-button" import { LIST_SHORTCUT_KEYS, useList } from "@/components/tiptap-ui/list-button" export interface ListButtonProps extends Omit, UseListConfig { /** * Optional text to display alongside the icon. */ text?: string /** * Optional show shortcut keys in the button. * @default false */ showShortcut?: boolean } export function ListShortcutBadge({ type, shortcutKeys = LIST_SHORTCUT_KEYS[type], }: { type: ListType shortcutKeys?: string }) { return {parseShortcutKeys({ shortcutKeys })} } /** * Button component for toggling lists in a Tiptap editor. * * For custom button implementations, use the `useList` hook instead. */ export const ListButton = React.forwardRef( ( { editor: providedEditor, type, text, hideWhenUnavailable = false, onToggled, showShortcut = false, onClick, children, ...buttonProps }, ref ) => { const { editor } = useTiptapEditor(providedEditor) const { isVisible, canToggle, isActive, handleToggle, label, shortcutKeys, Icon, } = useList({ editor, type, hideWhenUnavailable, onToggled, }) const handleClick = React.useCallback( (event: React.MouseEvent) => { onClick?.(event) if (event.defaultPrevented) return handleToggle() }, [handleToggle, onClick] ) if (!isVisible) { return null } return ( ) } ) ListButton.displayName = "ListButton"