"use client" import * as React from "react" // --- Lib --- import { parseShortcutKeys } from "@/lib/tiptap-utils" // --- Hooks --- import { useTiptapEditor } from "@/hooks/use-tiptap-editor" // --- Tiptap UI --- import type { Mark, UseMarkConfig } from "@/components/tiptap-ui/mark-button" import { MARK_SHORTCUT_KEYS, useMark } from "@/components/tiptap-ui/mark-button" // --- 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" export interface MarkButtonProps extends Omit, UseMarkConfig { /** * Optional text to display alongside the icon. */ text?: string /** * Optional show shortcut keys in the button. * @default false */ showShortcut?: boolean } export function MarkShortcutBadge({ type, shortcutKeys = MARK_SHORTCUT_KEYS[type], }: { type: Mark shortcutKeys?: string }) { return {parseShortcutKeys({ shortcutKeys })} } /** * Button component for toggling marks in a Tiptap editor. * * For custom button implementations, use the `useMark` hook instead. */ export const MarkButton = React.forwardRef( ( { editor: providedEditor, type, text, hideWhenUnavailable = false, onToggled, showShortcut = false, onClick, children, ...buttonProps }, ref ) => { const { editor } = useTiptapEditor(providedEditor) const { isVisible, handleMark, label, canToggle, isActive, Icon, shortcutKeys, } = useMark({ editor, type, hideWhenUnavailable, onToggled, }) const handleClick = React.useCallback( (event: React.MouseEvent) => { onClick?.(event) if (event.defaultPrevented) return handleMark() }, [handleMark, onClick] ) if (!isVisible) { return null } return ( ) } ) MarkButton.displayName = "MarkButton"