blob: f4f68729cddf4441fd256513519414facc5b7f63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
'use client'
import React from 'react'
import type { Editor } from '@tiptap/react'
import { Toggle } from '@/components/ui/toggle'
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip'
import { ListOrdered as ListOrderedIcon } from 'lucide-react'
interface OrderedListButtonProps {
editor: Editor | null
disabled?: boolean
isActive: boolean
executeCommand: (command: () => void) => void
}
export function OrderedListButton({ editor, disabled, isActive, executeCommand }: OrderedListButtonProps) {
if (!editor) return null
return (
<Tooltip>
<TooltipTrigger asChild>
<Toggle
size="sm"
pressed={isActive}
onMouseDown={e => e.preventDefault()}
onPressedChange={() => executeCommand(() => editor.chain().focus().toggleOrderedList().run())}
disabled={disabled}
>
<ListOrderedIcon className="h-4 w-4" />
</Toggle>
</TooltipTrigger>
<TooltipContent>
<p>번호 매기기</p>
</TooltipContent>
</Tooltip>
)
}
|