torch-glare 2.4.0 → 2.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (318) hide show
  1. package/README.md +8 -0
  2. package/apps/lib/components/ActionButton.tsx +7 -12
  3. package/apps/lib/components/ActionsGroup.tsx +4 -15
  4. package/apps/lib/components/AlertDialog.tsx +173 -191
  5. package/apps/lib/components/Avatar.tsx +13 -16
  6. package/apps/lib/components/Badge.tsx +1 -3
  7. package/apps/lib/components/BadgeField.tsx +76 -71
  8. package/apps/lib/components/Breadcrumb.tsx +49 -85
  9. package/apps/lib/components/Button.tsx +21 -20
  10. package/apps/lib/components/ButtonGroup.tsx +31 -41
  11. package/apps/lib/components/Calendar.tsx +51 -29
  12. package/apps/lib/components/Card.tsx +40 -24
  13. package/apps/lib/components/Checkbox.tsx +9 -16
  14. package/apps/lib/components/ColorPicker.tsx +441 -0
  15. package/apps/lib/components/ConclusionHeader.tsx +148 -0
  16. package/apps/lib/components/ContextMenu.tsx +97 -96
  17. package/apps/lib/components/CountBadge.tsx +4 -6
  18. package/apps/lib/components/DataTable.tsx +196 -216
  19. package/apps/lib/components/DataViews/DataViewRadio.tsx +1 -6
  20. package/apps/lib/components/DataViews/DataViewsConfigPanel.tsx +13 -47
  21. package/apps/lib/components/DataViews/DataViewsHeader.tsx +1 -3
  22. package/apps/lib/components/DataViews/DataViewsLayout.tsx +5 -12
  23. package/apps/lib/components/DataViews/FilterPanel.tsx +155 -149
  24. package/apps/lib/components/DataViews/HeaderSearch.tsx +1 -5
  25. package/apps/lib/components/DataViews/InboxView.tsx +22 -68
  26. package/apps/lib/components/DataViews/InboxViewCard.tsx +68 -77
  27. package/apps/lib/components/DataViews/KanbanView.tsx +8 -25
  28. package/apps/lib/components/DataViews/PanelControls.tsx +3 -13
  29. package/apps/lib/components/DataViews/SettingsPanel.tsx +83 -89
  30. package/apps/lib/components/DataViews/TableView.tsx +8 -28
  31. package/apps/lib/components/DataViews/TreeView.tsx +12 -40
  32. package/apps/lib/components/DataViews/badgeAdapter.ts +32 -28
  33. package/apps/lib/components/DataViews/fieldRenderers.tsx +106 -141
  34. package/apps/lib/components/DataViews/filters/DatePickerRangeFilter.tsx +30 -23
  35. package/apps/lib/components/DataViews/filters/DateRangePopover.tsx +39 -32
  36. package/apps/lib/components/DataViews/filters/PresetChips.tsx +15 -15
  37. package/apps/lib/components/DataViews/filters/RangeSliderWithInputs.tsx +69 -58
  38. package/apps/lib/components/DataViews/index.ts +26 -26
  39. package/apps/lib/components/DataViews/tree/TreeDrawer.tsx +12 -16
  40. package/apps/lib/components/DataViews/tree/TreeSidebar.tsx +28 -31
  41. package/apps/lib/components/DataViews/types.ts +104 -115
  42. package/apps/lib/components/DatePicker.tsx +200 -196
  43. package/apps/lib/components/Dialog.tsx +92 -105
  44. package/apps/lib/components/Divider.tsx +21 -24
  45. package/apps/lib/components/Drawer.tsx +124 -142
  46. package/apps/lib/components/DropdownMenu.tsx +131 -171
  47. package/apps/lib/components/FieldHint.tsx +4 -11
  48. package/apps/lib/components/Form.tsx +146 -155
  49. package/apps/lib/components/FormBuilder/DisplayField.tsx +40 -0
  50. package/apps/lib/components/FormBuilder/context.ts +71 -0
  51. package/apps/lib/components/FormBuilder/fields/ChoiceFields.tsx +65 -0
  52. package/apps/lib/components/FormBuilder/fields/ColorField.tsx +76 -0
  53. package/apps/lib/components/FormBuilder/fields/CustomField.tsx +16 -0
  54. package/apps/lib/components/FormBuilder/fields/DateField.tsx +34 -0
  55. package/apps/lib/components/FormBuilder/fields/FieldArray.tsx +79 -0
  56. package/apps/lib/components/FormBuilder/fields/FieldShell.tsx +174 -0
  57. package/apps/lib/components/FormBuilder/fields/FileField.tsx +40 -0
  58. package/apps/lib/components/FormBuilder/fields/OptionListFields.tsx +139 -0
  59. package/apps/lib/components/FormBuilder/fields/OtpField.tsx +32 -0
  60. package/apps/lib/components/FormBuilder/fields/PhoneField.tsx +82 -0
  61. package/apps/lib/components/FormBuilder/fields/RichTextEditorField.tsx +37 -0
  62. package/apps/lib/components/FormBuilder/fields/SelectField.tsx +101 -0
  63. package/apps/lib/components/FormBuilder/fields/SignatureField.tsx +175 -0
  64. package/apps/lib/components/FormBuilder/fields/SliderField.tsx +72 -0
  65. package/apps/lib/components/FormBuilder/fields/SwitchBoxField.tsx +42 -0
  66. package/apps/lib/components/FormBuilder/fields/TableField.tsx +312 -0
  67. package/apps/lib/components/FormBuilder/fields/TextField.tsx +222 -0
  68. package/apps/lib/components/FormBuilder/fields/TreeSelectField.tsx +49 -0
  69. package/apps/lib/components/FormBuilder/fields/countries.ts +303 -0
  70. package/apps/lib/components/FormBuilder/fields/index.ts +25 -0
  71. package/apps/lib/components/FormBuilder/form-builder.tsx +292 -0
  72. package/apps/lib/components/FormBuilder/header.tsx +105 -0
  73. package/apps/lib/components/FormBuilder/index.ts +37 -0
  74. package/apps/lib/components/FormBuilder/numberFormat.ts +16 -0
  75. package/apps/lib/components/FormBuilder/stepper.tsx +217 -0
  76. package/apps/lib/components/FormBuilder/submit.tsx +41 -0
  77. package/apps/lib/components/FormBuilder/types.ts +264 -0
  78. package/apps/lib/components/FormBuilder/viewFormat.tsx +137 -0
  79. package/apps/lib/components/FormRenderer/FormDrawer.tsx +121 -0
  80. package/apps/lib/components/FormRenderer/form-renderer.tsx +113 -0
  81. package/apps/lib/components/FormRenderer/index.ts +9 -0
  82. package/apps/lib/components/FormRenderer/types.ts +79 -0
  83. package/apps/lib/components/FormStepper.tsx +9 -39
  84. package/apps/lib/components/FormSummary.tsx +282 -0
  85. package/apps/lib/components/HeaderBar.tsx +1 -9
  86. package/apps/lib/components/ImageAttachment.tsx +106 -93
  87. package/apps/lib/components/InnerLabelField.tsx +20 -16
  88. package/apps/lib/components/Input.tsx +171 -172
  89. package/apps/lib/components/InputField.tsx +44 -45
  90. package/apps/lib/components/InputOTP.tsx +68 -69
  91. package/apps/lib/components/Label.tsx +61 -58
  92. package/apps/lib/components/LabelField.tsx +4 -5
  93. package/apps/lib/components/LabeledCheckBox.tsx +8 -12
  94. package/apps/lib/components/LabeledRadio.tsx +7 -5
  95. package/apps/lib/components/LinkButton.tsx +2 -9
  96. package/apps/lib/components/LoginButton.tsx +4 -9
  97. package/apps/lib/components/PasswordLevel.tsx +5 -5
  98. package/apps/lib/components/Popover.tsx +15 -33
  99. package/apps/lib/components/ProfileMenu.tsx +67 -72
  100. package/apps/lib/components/Radio.tsx +1 -5
  101. package/apps/lib/components/RadioCard.tsx +11 -28
  102. package/apps/lib/components/ScrollArea.tsx +45 -43
  103. package/apps/lib/components/SearchField.tsx +49 -39
  104. package/apps/lib/components/SearchableSelect.tsx +16 -16
  105. package/apps/lib/components/SearchableTable.tsx +108 -118
  106. package/apps/lib/components/SearchableTree.tsx +469 -0
  107. package/apps/lib/components/SearchableTreeDialog.tsx +493 -0
  108. package/apps/lib/components/SectionBlock.tsx +19 -23
  109. package/apps/lib/components/Select.tsx +80 -186
  110. package/apps/lib/components/SimpleSelect.tsx +196 -187
  111. package/apps/lib/components/Skeleton.tsx +9 -12
  112. package/apps/lib/components/SlideDatePicker.tsx +215 -166
  113. package/apps/lib/components/SpinLoading.tsx +33 -49
  114. package/apps/lib/components/Stepper.tsx +13 -56
  115. package/apps/lib/components/Switch.tsx +8 -10
  116. package/apps/lib/components/TabFormItem.tsx +3 -12
  117. package/apps/lib/components/TabSwitch.tsx +7 -34
  118. package/apps/lib/components/Table.tsx +60 -75
  119. package/apps/lib/components/{ChartBlockTool.ts → TextEditor/ChartBlockTool.ts} +17 -52
  120. package/apps/lib/components/TextEditor/RichTextField.tsx +46 -0
  121. package/apps/lib/components/{TableDnDWrapper.ts → TextEditor/TableDnDWrapper.ts} +15 -48
  122. package/apps/lib/components/{TextEditor.tsx → TextEditor/TextEditor.tsx} +156 -113
  123. package/apps/lib/components/TextEditor/TextEditorToolbar.tsx +429 -0
  124. package/apps/lib/components/TextEditor/editor-tools/AlignmentTune.ts +70 -0
  125. package/apps/lib/components/TextEditor/editor-tools/ColorInlineTool.ts +50 -0
  126. package/apps/lib/components/TextEditor/editor-tools/StrikethroughInlineTool.ts +48 -0
  127. package/apps/lib/components/TextEditor/editor-tools/inlineFormat.ts +98 -0
  128. package/apps/lib/{types → components/TextEditor}/editorjs.d.ts +19 -0
  129. package/apps/lib/components/TextEditor/index.ts +7 -0
  130. package/apps/lib/{utils → components/TextEditor}/markdownParser.ts +2 -7
  131. package/apps/lib/components/Textarea.tsx +9 -13
  132. package/apps/lib/components/Timeline.tsx +21 -41
  133. package/apps/lib/components/Toast.tsx +83 -83
  134. package/apps/lib/components/Toggle.tsx +112 -114
  135. package/apps/lib/components/ToggleButton.tsx +1 -1
  136. package/apps/lib/components/Tooltip.tsx +24 -19
  137. package/apps/lib/components/TransparentLabel.tsx +61 -62
  138. package/apps/lib/components/TreeDropDown.tsx +86 -52
  139. package/apps/lib/components/TreeFolder/TreeFolder.tsx +15 -48
  140. package/apps/lib/components/TreeFolder/TreeFolderBreadcrumb.tsx +16 -21
  141. package/apps/lib/components/TreeFolder/TreeFolderRow.tsx +9 -20
  142. package/apps/lib/components/TreeFolder/TreeFolderStyles.tsx +3 -3
  143. package/apps/lib/components/TreeFolder/icons.tsx +14 -17
  144. package/apps/lib/components/TreeFolder/index.ts +15 -8
  145. package/apps/lib/components/TreeFolder/treeFolderUtils.ts +47 -52
  146. package/apps/lib/components/TreeFolder/types.ts +32 -32
  147. package/apps/lib/components/TreeFolder/useTreeFolderDnD.ts +117 -123
  148. package/apps/lib/hooks/useActiveTreeItem.ts +52 -55
  149. package/apps/lib/hooks/useClickOutside.ts +21 -20
  150. package/apps/lib/hooks/useDataViewsState.ts +86 -80
  151. package/apps/lib/hooks/useIsMobile.ts +12 -12
  152. package/apps/lib/hooks/useResize.ts +54 -65
  153. package/apps/lib/hooks/useTagSelection.ts +201 -201
  154. package/apps/lib/layouts/CNLayout.tsx +181 -140
  155. package/apps/lib/layouts/DataViewCard.tsx +4 -18
  156. package/apps/lib/layouts/FieldSection.tsx +2 -6
  157. package/apps/lib/layouts/TreeSubLayout.tsx +24 -38
  158. package/apps/lib/providers/ThemeProvider.tsx +8 -23
  159. package/apps/lib/registry.json +997 -0
  160. package/apps/lib/tsconfig.json +9 -0
  161. package/apps/lib/tsconfig.tsbuildinfo +1 -0
  162. package/apps/lib/utils/cn.ts +1 -1
  163. package/apps/lib/utils/color.ts +175 -0
  164. package/apps/lib/utils/dataViews/columnUtils.ts +46 -44
  165. package/apps/lib/utils/dataViews/fieldUtils.ts +70 -71
  166. package/apps/lib/utils/dataViews/nestedDataUtils.tsx +129 -122
  167. package/apps/lib/utils/dataViews/pathUtils.ts +74 -67
  168. package/apps/lib/utils/dataViews/rangeUtils.ts +121 -112
  169. package/apps/lib/utils/dataViews/treeUtils.ts +204 -211
  170. package/apps/lib/utils/dateFormat.ts +64 -54
  171. package/apps/lib/utils/resize.ts +21 -25
  172. package/apps/lib/utils/types.ts +13 -13
  173. package/dist/bin/index.js +8 -2
  174. package/dist/bin/index.js.map +1 -1
  175. package/dist/src/shared/getAvailableFiles.d.ts.map +1 -1
  176. package/dist/src/shared/getAvailableFiles.js +6 -1
  177. package/dist/src/shared/getAvailableFiles.js.map +1 -1
  178. package/dist/src/shared/loadRegistry.d.ts +7 -0
  179. package/dist/src/shared/loadRegistry.d.ts.map +1 -0
  180. package/dist/src/shared/loadRegistry.js +31 -0
  181. package/dist/src/shared/loadRegistry.js.map +1 -0
  182. package/dist/src/shared/resolveInstallPlan.d.ts +12 -0
  183. package/dist/src/shared/resolveInstallPlan.d.ts.map +1 -0
  184. package/dist/src/shared/resolveInstallPlan.js +39 -0
  185. package/dist/src/shared/resolveInstallPlan.js.map +1 -0
  186. package/dist/src/types/main.d.ts +24 -0
  187. package/dist/src/types/main.d.ts.map +1 -1
  188. package/docs/README.md +10 -2
  189. package/docs/components/action-button.md +30 -24
  190. package/docs/components/actions-group.md +26 -20
  191. package/docs/components/alert-dialog.md +45 -45
  192. package/docs/components/avatar.md +6 -2
  193. package/docs/components/badge-field.md +6 -2
  194. package/docs/components/badge.md +7 -1
  195. package/docs/components/breadcrumb.md +15 -40
  196. package/docs/components/button-group.md +13 -10
  197. package/docs/components/button.md +58 -33
  198. package/docs/components/calendar.md +26 -19
  199. package/docs/components/card.md +23 -18
  200. package/docs/components/chart-block-tool.md +129 -0
  201. package/docs/components/checkbox.md +16 -8
  202. package/docs/components/cn-layout.md +7 -1
  203. package/docs/components/color-picker.md +101 -0
  204. package/docs/components/conclusion-header.md +80 -0
  205. package/docs/components/context-menu.md +18 -25
  206. package/docs/components/count-badge.md +7 -1
  207. package/docs/components/data-table.md +45 -33
  208. package/docs/components/data-views-config-panel.md +15 -11
  209. package/docs/components/data-views-layout.md +13 -16
  210. package/docs/components/date-picker.md +30 -23
  211. package/docs/components/dialog.md +43 -42
  212. package/docs/components/divider.md +10 -4
  213. package/docs/components/drawer.md +161 -135
  214. package/docs/components/dropdown-menu.md +25 -34
  215. package/docs/components/field-hint.md +37 -25
  216. package/docs/components/field-section.md +9 -3
  217. package/docs/components/form-builder.md +270 -0
  218. package/docs/components/form-renderer.md +228 -0
  219. package/docs/components/form-stepper.md +6 -0
  220. package/docs/components/form-summary.md +123 -0
  221. package/docs/components/form.md +17 -20
  222. package/docs/components/header-bar.md +6 -0
  223. package/docs/components/image-attachment.md +43 -45
  224. package/docs/components/inbox-view.md +16 -5
  225. package/docs/components/inner-label-field.md +34 -24
  226. package/docs/components/input-field.md +18 -10
  227. package/docs/components/input-otp.md +14 -11
  228. package/docs/components/input.md +22 -16
  229. package/docs/components/kanban-view.md +15 -5
  230. package/docs/components/label-field.md +32 -22
  231. package/docs/components/label.md +43 -32
  232. package/docs/components/labeled-check-box.md +16 -8
  233. package/docs/components/labeled-radio.md +18 -11
  234. package/docs/components/link-button.md +7 -1
  235. package/docs/components/login-button.md +8 -2
  236. package/docs/components/password-level.md +37 -24
  237. package/docs/components/popover.md +26 -23
  238. package/docs/components/profile-menu.md +38 -27
  239. package/docs/components/radio-card.md +16 -9
  240. package/docs/components/radio.md +16 -8
  241. package/docs/components/scroll-area.md +6 -2
  242. package/docs/components/search-field.md +14 -6
  243. package/docs/components/searchable-select.md +19 -14
  244. package/docs/components/searchable-table.md +18 -13
  245. package/docs/components/searchable-tree-dialog.md +190 -0
  246. package/docs/components/searchable-tree.md +200 -0
  247. package/docs/components/section-block.md +12 -4
  248. package/docs/components/select.md +23 -18
  249. package/docs/components/simple-select.md +14 -10
  250. package/docs/components/skeleton.md +43 -33
  251. package/docs/components/slide-date-picker.md +37 -29
  252. package/docs/components/spin-loading.md +32 -23
  253. package/docs/components/stepper.md +6 -0
  254. package/docs/components/switch.md +14 -6
  255. package/docs/components/tab-form-item.md +7 -1
  256. package/docs/components/tab-switch.md +13 -6
  257. package/docs/components/table-dnd-wrapper.md +107 -0
  258. package/docs/components/table-view.md +15 -5
  259. package/docs/components/table.md +28 -28
  260. package/docs/components/text-editor.md +37 -13
  261. package/docs/components/textarea.md +15 -7
  262. package/docs/components/timeline.md +6 -0
  263. package/docs/components/toast.md +35 -26
  264. package/docs/components/toggle-button.md +24 -21
  265. package/docs/components/toggle.md +23 -15
  266. package/docs/components/tooltip.md +42 -30
  267. package/docs/components/transparent-label.md +29 -20
  268. package/docs/components/tree-drop-down.md +31 -23
  269. package/docs/components/tree-sub-layout.md +6 -2
  270. package/docs/components/tree-view.md +16 -5
  271. package/docs/explanation/architecture.md +54 -0
  272. package/docs/explanation/design-system.md +52 -0
  273. package/docs/how-to/data-views-from-backend-response.md +6 -4
  274. package/docs/how-to/form-and-list-recipes.md +26 -19
  275. package/docs/how-to/forms-with-form-builder.md +408 -0
  276. package/docs/how-to/guides.md +177 -197
  277. package/docs/migration/changelog.md +38 -0
  278. package/docs/reference/cli.md +87 -0
  279. package/docs/reference/components.md +11 -12
  280. package/docs/reference/hooks.md +8 -8
  281. package/docs/reference/providers.md +22 -22
  282. package/docs/reference/tailwind-plugins.md +2 -2
  283. package/docs/reference/theme.md +85 -0
  284. package/docs/reference/types.md +4 -4
  285. package/docs/reference/utilities.md +19 -26
  286. package/docs/tutorials/building-first-form.md +170 -172
  287. package/docs/tutorials/component-composition.md +34 -50
  288. package/docs/tutorials/getting-started.md +2 -2
  289. package/docs/tutorials/theming-basics.md +13 -10
  290. package/package.json +31 -3
  291. package/dist/src/commands/block.d.ts +0 -5
  292. package/dist/src/commands/block.d.ts.map +0 -1
  293. package/dist/src/commands/block.js +0 -255
  294. package/dist/src/commands/block.js.map +0 -1
  295. package/dist/src/shared/configureFonts.d.ts +0 -6
  296. package/dist/src/shared/configureFonts.d.ts.map +0 -1
  297. package/dist/src/shared/configureFonts.js +0 -106
  298. package/dist/src/shared/configureFonts.js.map +0 -1
  299. package/dist/src/shared/configureGlobalCss.d.ts +0 -6
  300. package/dist/src/shared/configureGlobalCss.d.ts.map +0 -1
  301. package/dist/src/shared/configureGlobalCss.js +0 -154
  302. package/dist/src/shared/configureGlobalCss.js.map +0 -1
  303. package/dist/src/shared/configureTailwind.d.ts +0 -7
  304. package/dist/src/shared/configureTailwind.d.ts.map +0 -1
  305. package/dist/src/shared/configureTailwind.js +0 -163
  306. package/dist/src/shared/configureTailwind.js.map +0 -1
  307. package/dist/src/shared/detectFramework.d.ts +0 -23
  308. package/dist/src/shared/detectFramework.d.ts.map +0 -1
  309. package/dist/src/shared/detectFramework.js +0 -119
  310. package/dist/src/shared/detectFramework.js.map +0 -1
  311. package/dist/src/shared/installBaseUtils.d.ts +0 -5
  312. package/dist/src/shared/installBaseUtils.d.ts.map +0 -1
  313. package/dist/src/shared/installBaseUtils.js +0 -79
  314. package/dist/src/shared/installBaseUtils.js.map +0 -1
  315. package/dist/src/shared/resolveAliases.d.ts +0 -24
  316. package/dist/src/shared/resolveAliases.d.ts.map +0 -1
  317. package/dist/src/shared/resolveAliases.js +0 -98
  318. package/dist/src/shared/resolveAliases.js.map +0 -1
@@ -0,0 +1,429 @@
1
+ "use client";
2
+
3
+ import { ReactNode, RefObject, useCallback, useEffect, useRef, useState } from "react";
4
+ import type EditorJS from "@editorjs/editorjs";
5
+ import type Undo from "editorjs-undo";
6
+
7
+ import { cn } from "../../utils/cn";
8
+ import { Themes } from "../../utils/types";
9
+ import {
10
+ DropdownMenu,
11
+ DropdownMenuTrigger,
12
+ DropdownMenuContent,
13
+ DropdownMenuItem,
14
+ } from "../DropdownMenu";
15
+ import { currentRange, toggleWrap } from "./editor-tools/inlineFormat";
16
+ import type { Alignment } from "./editor-tools/AlignmentTune";
17
+
18
+ // ─── Types ───────────────────────────────────────────────────────────────────
19
+ interface Props {
20
+ editorRef: RefObject<EditorJS | null>;
21
+ undoRef: RefObject<Undo | null>;
22
+ holderRef: RefObject<HTMLDivElement | null>;
23
+ /** Editor is initialized — enables the buttons. */
24
+ ready: boolean;
25
+ theme?: Themes;
26
+ }
27
+
28
+ type BlockType = { label: string; type: "paragraph" | "header"; level?: number };
29
+
30
+ const BLOCK_TYPES: BlockType[] = [
31
+ { label: "Normal Text", type: "paragraph" },
32
+ { label: "Heading 1", type: "header", level: 1 },
33
+ { label: "Heading 2", type: "header", level: 2 },
34
+ { label: "Heading 3", type: "header", level: 3 },
35
+ ];
36
+
37
+ const COLORS = [
38
+ "#1b1b1b",
39
+ "#797c7f",
40
+ "#e11d48",
41
+ "#f97316",
42
+ "#eab308",
43
+ "#22c55e",
44
+ "#0075ff",
45
+ "#8b5cf6",
46
+ "#ec4899",
47
+ "#ffffff",
48
+ ];
49
+
50
+ const ALIGNMENTS: { value: Alignment; icon: string; label: string }[] = [
51
+ { value: "left", icon: "ri-align-left", label: "Align left" },
52
+ { value: "center", icon: "ri-align-center", label: "Align center" },
53
+ { value: "right", icon: "ri-align-right", label: "Align right" },
54
+ ];
55
+
56
+ // ─── Small icon button (design "button-2.0": p-[5px], rounded-[6px], 18px icon) ──
57
+ function Btn({
58
+ onClick,
59
+ disabled,
60
+ active,
61
+ title,
62
+ children,
63
+ className,
64
+ }: {
65
+ onClick: () => void;
66
+ disabled?: boolean;
67
+ active?: boolean;
68
+ title: string;
69
+ children: ReactNode;
70
+ className?: string;
71
+ }) {
72
+ return (
73
+ <button
74
+ type="button"
75
+ title={title}
76
+ aria-label={title}
77
+ aria-pressed={active}
78
+ disabled={disabled}
79
+ // Preserve the editor's text selection: don't let the click move focus/caret before
80
+ // the command runs.
81
+ onMouseDown={(e) => e.preventDefault()}
82
+ onClick={onClick}
83
+ className={cn(
84
+ "flex items-center justify-center rounded-[6px] p-[5px] transition-colors",
85
+ "text-content-presentation-global-primary [&_i]:text-[18px] [&_i]:leading-none",
86
+ "disabled:cursor-not-allowed disabled:opacity-40",
87
+ active ? "bg-black-alpha-10" : "hover:bg-black-alpha-10",
88
+ className,
89
+ )}
90
+ >
91
+ {children}
92
+ </button>
93
+ );
94
+ }
95
+
96
+ function Divider() {
97
+ return (
98
+ <span className="h-[20px] w-px shrink-0 self-center bg-border-presentation-global-primary" />
99
+ );
100
+ }
101
+
102
+ /** A tight cluster of buttons (design: groups are `gap-[2px]` internally, `gap-[8px]` apart). */
103
+ function Group({ children }: { children: ReactNode }) {
104
+ return <div className="flex items-center gap-[2px]">{children}</div>;
105
+ }
106
+
107
+ // ─── Toolbar ─────────────────────────────────────────────────────────────────
108
+ export function TextEditorToolbar({ editorRef, undoRef, holderRef, ready, theme }: Props) {
109
+ const fileInputRef = useRef<HTMLInputElement>(null);
110
+ // Live formatting state (drives button highlight + block-type label).
111
+ const [state, setState] = useState({
112
+ blockLabel: "Normal Text",
113
+ bold: false,
114
+ italic: false,
115
+ underline: false,
116
+ strike: false,
117
+ align: "left" as Alignment,
118
+ color: "#1b1b1b",
119
+ });
120
+
121
+ // A dropdown grabs focus when it opens (Radix menus always auto-focus), which loses the
122
+ // editor's current block + text selection. So snapshot them the instant a toolbar control
123
+ // is pressed — before focus moves — and act on the snapshot.
124
+ const capturedIndex = useRef(-1);
125
+ const capturedRange = useRef<Range | null>(null);
126
+ const capture = useCallback(() => {
127
+ capturedIndex.current = editorRef.current?.blocks.getCurrentBlockIndex() ?? -1;
128
+ const r = currentRange();
129
+ capturedRange.current =
130
+ r && holderRef.current?.contains(r.commonAncestorContainer) ? r.cloneRange() : null;
131
+ }, [editorRef, holderRef]);
132
+
133
+ // The captured block (or the live one, for non-dropdown actions).
134
+ const ctx = useCallback(() => {
135
+ const ed = editorRef.current;
136
+ if (!ed) return null;
137
+ const live = ed.blocks.getCurrentBlockIndex();
138
+ const index = live >= 0 ? live : capturedIndex.current;
139
+ if (index < 0) return null;
140
+ const block = ed.blocks.getBlockByIndex(index);
141
+ return block ? { ed, index, block, id: block.id } : null;
142
+ }, [editorRef]);
143
+
144
+ // ── Read active state from the current selection (throttled) ──
145
+ useEffect(() => {
146
+ if (!ready) return;
147
+ let raf = 0;
148
+ const read = () => {
149
+ raf = 0;
150
+ const holder = holderRef.current;
151
+ const sel = window.getSelection();
152
+ if (!holder || !sel || sel.rangeCount === 0 || !holder.contains(sel.anchorNode)) return;
153
+ const c = ctx();
154
+ let blockLabel = "Normal Text";
155
+ let align: Alignment = "left";
156
+ if (c) {
157
+ if (c.block.name === "header") {
158
+ const h = c.block.holder.querySelector("h1,h2,h3,h4,h5,h6");
159
+ blockLabel = h ? `Heading ${h.tagName[1]}` : "Heading";
160
+ }
161
+ const wrap = c.block.holder.querySelector<HTMLElement>(".cdx-align-wrap");
162
+ align = (wrap?.dataset.align as Alignment) ?? "left";
163
+ }
164
+ setState((s) => ({
165
+ ...s,
166
+ blockLabel,
167
+ align,
168
+ bold: document.queryCommandState("bold"),
169
+ italic: document.queryCommandState("italic"),
170
+ underline: document.queryCommandState("underline"),
171
+ strike: document.queryCommandState("strikeThrough"),
172
+ }));
173
+ };
174
+ const onChange = () => {
175
+ if (!raf) raf = requestAnimationFrame(read);
176
+ };
177
+ document.addEventListener("selectionchange", onChange);
178
+ return () => {
179
+ document.removeEventListener("selectionchange", onChange);
180
+ if (raf) cancelAnimationFrame(raf);
181
+ };
182
+ }, [ready, ctx, holderRef]);
183
+
184
+ // ── Actions ──
185
+ // The button's `onMouseDown` preventDefault keeps the editor's selection, so run the
186
+ // command directly — do NOT refocus (that would collapse/move the selection).
187
+ const exec = (cmd: string) => {
188
+ document.execCommand(cmd);
189
+ };
190
+
191
+ const setBlock = async (bt: BlockType) => {
192
+ const c = ctx();
193
+ if (!c) return;
194
+ try {
195
+ await c.ed.blocks.convert(c.id, bt.type, bt.type === "header" ? { level: bt.level } : {});
196
+ c.ed.caret.setToBlock(c.ed.blocks.getCurrentBlockIndex(), "end");
197
+ } catch {
198
+ /* conversion not available for this block */
199
+ }
200
+ setState((s) => ({ ...s, blockLabel: bt.label }));
201
+ };
202
+
203
+ const setList = async (style: "unordered" | "ordered") => {
204
+ const c = ctx();
205
+ if (!c) return;
206
+ try {
207
+ await c.ed.blocks.convert(c.id, "list", { style });
208
+ c.ed.caret.setToBlock(c.ed.blocks.getCurrentBlockIndex(), "end");
209
+ } catch {
210
+ /* noop */
211
+ }
212
+ };
213
+
214
+ const setAlign = (align: Alignment) => {
215
+ const c = ctx();
216
+ if (!c) return;
217
+ const wrap = c.block.holder.querySelector<HTMLElement>(".cdx-align-wrap");
218
+ if (wrap) {
219
+ wrap.dataset.align = align;
220
+ c.block.dispatchChange();
221
+ }
222
+ setState((s) => ({ ...s, align }));
223
+ };
224
+
225
+ const setColor = (color: string) => {
226
+ // The color picker lives in a dropdown, so the live selection was lost when it opened —
227
+ // restore the snapshot before wrapping.
228
+ const r = capturedRange.current;
229
+ if (r) {
230
+ const sel = window.getSelection();
231
+ sel?.removeAllRanges();
232
+ sel?.addRange(r);
233
+ }
234
+ toggleWrap("span", { color });
235
+ setState((s) => ({ ...s, color }));
236
+ };
237
+
238
+ const insertImage = (file: File) => {
239
+ const c = ctx();
240
+ const ed = editorRef.current;
241
+ if (!ed) return;
242
+ const reader = new FileReader();
243
+ reader.onload = () => {
244
+ ed.blocks.insert(
245
+ "image",
246
+ { url: reader.result as string },
247
+ undefined,
248
+ (c?.index ?? -1) + 1,
249
+ true,
250
+ );
251
+ };
252
+ reader.readAsDataURL(file);
253
+ };
254
+
255
+ const d = !ready;
256
+
257
+ return (
258
+ <div
259
+ data-theme={theme}
260
+ // Snapshot the editor's block/selection before a control press can move focus.
261
+ onMouseDownCapture={capture}
262
+ className={cn(
263
+ "flex w-full flex-wrap items-center gap-[8px] p-[8px] rounded-tr-[6px] rounded-tl-[6px]",
264
+ "border-b border-border-presentation-global-primary",
265
+ "bg-background-presentation-form-header backdrop-blur-[8px]",
266
+ "shadow-[0px_2px_9px_0px_var(--background-presentation-form-header-shadow)]",
267
+ )}
268
+ >
269
+ {/* history */}
270
+ <Group>
271
+ <Btn title="Undo" disabled={d} onClick={() => undoRef.current?.undo()}>
272
+ <i className="ri-arrow-go-back-fill" />
273
+ </Btn>
274
+ <Btn title="Redo" disabled={d} onClick={() => undoRef.current?.redo()}>
275
+ <i className="ri-arrow-go-forward-fill" />
276
+ </Btn>
277
+ </Group>
278
+ <Divider />
279
+
280
+ {/* block type */}
281
+ <DropdownMenu>
282
+ <DropdownMenuTrigger asChild disabled={d}>
283
+ <button
284
+ type="button"
285
+ onMouseDown={(e) => e.preventDefault()}
286
+ disabled={d}
287
+ className={cn(
288
+ "flex items-center gap-[2px] rounded-[6px] px-[14px] py-[2px] transition-colors",
289
+ "typography-body-large-medium text-content-presentation-global-primary",
290
+ "hover:bg-black-alpha-10 disabled:cursor-not-allowed disabled:opacity-40",
291
+ )}
292
+ >
293
+ {state.blockLabel}
294
+ <i className="ri-arrow-down-s-line text-[18px] leading-none" />
295
+ </button>
296
+ </DropdownMenuTrigger>
297
+ <DropdownMenuContent align="start">
298
+ {BLOCK_TYPES.map((bt) => (
299
+ <DropdownMenuItem key={bt.label} onSelect={() => setBlock(bt)}>
300
+ {bt.label}
301
+ </DropdownMenuItem>
302
+ ))}
303
+ </DropdownMenuContent>
304
+ </DropdownMenu>
305
+
306
+ {/* align */}
307
+ <DropdownMenu>
308
+ <DropdownMenuTrigger asChild disabled={d}>
309
+ <button
310
+ type="button"
311
+ onMouseDown={(e) => e.preventDefault()}
312
+ disabled={d}
313
+ title="Text align"
314
+ className={cn(
315
+ "flex items-center gap-[2px] rounded-[6px] px-[8px] py-[5px] transition-colors",
316
+ "text-content-presentation-global-primary [&_i]:text-[18px] [&_i]:leading-none",
317
+ "hover:bg-black-alpha-10 disabled:cursor-not-allowed disabled:opacity-40",
318
+ )}
319
+ >
320
+ <i
321
+ className={ALIGNMENTS.find((a) => a.value === state.align)?.icon ?? "ri-align-left"}
322
+ />
323
+ <i className="ri-arrow-down-s-line" />
324
+ </button>
325
+ </DropdownMenuTrigger>
326
+ <DropdownMenuContent align="start">
327
+ {ALIGNMENTS.map((a) => (
328
+ <DropdownMenuItem key={a.value} onSelect={() => setAlign(a.value)}>
329
+ <i className={cn(a.icon, "text-[16px]")} />
330
+ {a.label}
331
+ </DropdownMenuItem>
332
+ ))}
333
+ </DropdownMenuContent>
334
+ </DropdownMenu>
335
+
336
+ {/* color */}
337
+ <DropdownMenu>
338
+ <DropdownMenuTrigger asChild disabled={d}>
339
+ <button
340
+ type="button"
341
+ onMouseDown={(e) => e.preventDefault()}
342
+ disabled={d}
343
+ title="Text color"
344
+ className={cn(
345
+ "flex items-center gap-[2px] rounded-[6px] p-[4px] transition-colors",
346
+ "hover:bg-black-alpha-10 disabled:cursor-not-allowed disabled:opacity-40",
347
+ )}
348
+ >
349
+ <span
350
+ className="size-[22px] rounded-[6px] border border-border-presentation-global-primary"
351
+ style={{ backgroundColor: state.color }}
352
+ />
353
+ <i className="ri-arrow-down-s-line text-[18px] leading-none text-content-presentation-global-primary" />
354
+ </button>
355
+ </DropdownMenuTrigger>
356
+ <DropdownMenuContent align="start">
357
+ <div className="grid grid-cols-5 gap-[6px] p-[6px]">
358
+ {COLORS.map((c) => (
359
+ <button
360
+ key={c}
361
+ type="button"
362
+ title={c}
363
+ onMouseDown={(e) => e.preventDefault()}
364
+ onClick={() => setColor(c)}
365
+ className="size-[22px] rounded-[6px] border border-border-presentation-global-primary transition-transform hover:scale-110"
366
+ style={{ backgroundColor: c }}
367
+ />
368
+ ))}
369
+ </div>
370
+ </DropdownMenuContent>
371
+ </DropdownMenu>
372
+ <Divider />
373
+
374
+ {/* format */}
375
+ <Group>
376
+ <Btn title="Bold" disabled={d} active={state.bold} onClick={() => exec("bold")}>
377
+ <i className="ri-bold" />
378
+ </Btn>
379
+ <Btn title="Italic" disabled={d} active={state.italic} onClick={() => exec("italic")}>
380
+ <i className="ri-italic" />
381
+ </Btn>
382
+ <Btn
383
+ title="Underline"
384
+ disabled={d}
385
+ active={state.underline}
386
+ onClick={() => exec("underline")}
387
+ >
388
+ <i className="ri-underline" />
389
+ </Btn>
390
+ <Btn
391
+ title="Strikethrough"
392
+ disabled={d}
393
+ active={state.strike}
394
+ onClick={() => toggleWrap("s")}
395
+ >
396
+ <i className="ri-strikethrough" />
397
+ </Btn>
398
+ <Btn title="Clear formatting" disabled={d} onClick={() => exec("removeFormat")}>
399
+ <i className="ri-format-clear" />
400
+ </Btn>
401
+ </Group>
402
+ <Divider />
403
+
404
+ {/* lists + image (one group on the right, per the design) */}
405
+ <Group>
406
+ <Btn title="Bullet list" disabled={d} onClick={() => setList("unordered")}>
407
+ <i className="ri-list-check" />
408
+ </Btn>
409
+ <Btn title="Ordered list" disabled={d} onClick={() => setList("ordered")}>
410
+ <i className="ri-list-ordered-2" />
411
+ </Btn>
412
+ <Btn title="Insert image" disabled={d} onClick={() => fileInputRef.current?.click()}>
413
+ <i className="ri-image-add-fill" />
414
+ </Btn>
415
+ </Group>
416
+ <input
417
+ ref={fileInputRef}
418
+ type="file"
419
+ accept="image/*"
420
+ hidden
421
+ onChange={(e) => {
422
+ const f = e.target.files?.[0];
423
+ if (f) insertImage(f);
424
+ e.target.value = "";
425
+ }}
426
+ />
427
+ </div>
428
+ );
429
+ }
@@ -0,0 +1,70 @@
1
+ import type { API, BlockAPI } from "@editorjs/editorjs";
2
+ import type { MenuConfig } from "@editorjs/editorjs/types/tools";
3
+
4
+ export type Alignment = "left" | "center" | "right";
5
+
6
+ interface AlignmentData {
7
+ alignment?: Alignment;
8
+ }
9
+
10
+ const ICONS: Record<Alignment, string> = {
11
+ left: '<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M4 6h16M4 12h10M4 18h13"/></svg>',
12
+ center:
13
+ '<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M4 6h16M7 12h10M5 18h14"/></svg>',
14
+ right:
15
+ '<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M4 6h16M10 12h10M7 18h13"/></svg>',
16
+ };
17
+
18
+ /**
19
+ * A block **tune** that stores per-block text alignment. It is registered globally (via the
20
+ * editor's `tunes`), so every block gets it.
21
+ *
22
+ * `wrap()` tags the block content with `.cdx-align-wrap` + a `data-align` attribute — this both
23
+ * restores saved alignment on render AND gives the fixed `TextEditorToolbar` a stable node to
24
+ * drive (the toolbar sets `data-align` on the current block and calls `dispatchChange`, and
25
+ * `save()` reads it back). CSS in `TextEditor` maps `data-align` → `text-align`.
26
+ */
27
+ export default class AlignmentTune {
28
+ private api: API;
29
+ private block: BlockAPI;
30
+ private alignment: Alignment;
31
+ private wrapper: HTMLElement | null = null;
32
+
33
+ static get isTune() {
34
+ return true;
35
+ }
36
+
37
+ constructor({ api, block, data }: { api: API; block: BlockAPI; data: AlignmentData }) {
38
+ this.api = api;
39
+ this.block = block;
40
+ this.alignment = data?.alignment ?? "left";
41
+ }
42
+
43
+ wrap(content: HTMLElement): HTMLElement {
44
+ this.wrapper = content;
45
+ content.classList.add("cdx-align-wrap");
46
+ content.dataset.align = this.alignment;
47
+ return content;
48
+ }
49
+
50
+ save(): AlignmentData {
51
+ return { alignment: (this.wrapper?.dataset.align as Alignment) ?? this.alignment };
52
+ }
53
+
54
+ /** Set alignment on this block (used by the block-settings menu and, via the DOM node, the toolbar). */
55
+ setAlignment(alignment: Alignment): void {
56
+ this.alignment = alignment;
57
+ if (this.wrapper) this.wrapper.dataset.align = alignment;
58
+ this.block.dispatchChange();
59
+ }
60
+
61
+ render(): MenuConfig {
62
+ return (["left", "center", "right"] as Alignment[]).map((a) => ({
63
+ icon: ICONS[a],
64
+ title: `Align ${a}`,
65
+ toggle: "align",
66
+ isActive: this.alignment === a,
67
+ onActivate: () => this.setAlignment(a),
68
+ }));
69
+ }
70
+ }
@@ -0,0 +1,50 @@
1
+ import { toggleWrap } from "./inlineFormat";
2
+
3
+ /**
4
+ * EditorJS inline tool for **text color**. Its primary purpose is to register
5
+ * `<span style="…">` in the block sanitizer so colored text survives `editor.save()`
6
+ * (EditorJS unions every enabled inline tool's `sanitize` into the save config). The visible
7
+ * color picker lives in the fixed `TextEditorToolbar`, which calls `applyColor()` — kept here
8
+ * so the inline-toolbar path and the fixed-toolbar path share one implementation.
9
+ */
10
+ export default class ColorInlineTool {
11
+ private button: HTMLButtonElement | null = null;
12
+
13
+ static get isInline() {
14
+ return true;
15
+ }
16
+
17
+ static get title() {
18
+ return "Color";
19
+ }
20
+
21
+ /** Allow the styled span (with its inline `style`) through the sanitizer. */
22
+ static get sanitize() {
23
+ return { span: { style: true } };
24
+ }
25
+
26
+ /** Wrap the current selection in `<span style="color:…">`; shared by both toolbars. */
27
+ static applyColor(color: string): void {
28
+ toggleWrap("span", { color });
29
+ }
30
+
31
+ render(): HTMLElement {
32
+ // A minimal inline-toolbar entry (applies a default accent). The rich picker is the
33
+ // fixed toolbar's dropdown.
34
+ this.button = document.createElement("button");
35
+ this.button.type = "button";
36
+ this.button.classList.add("ce-inline-tool");
37
+ this.button.innerHTML =
38
+ '<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M4 20h16"/><path d="m6 16 4-9 4 9"/><path d="M7.5 13h5"/></svg>';
39
+ return this.button;
40
+ }
41
+
42
+ surround(range: Range): void {
43
+ if (!range) return;
44
+ ColorInlineTool.applyColor("#0075ff");
45
+ }
46
+
47
+ checkState(): boolean {
48
+ return false;
49
+ }
50
+ }
@@ -0,0 +1,48 @@
1
+ import { selectionHas, toggleWrap } from "./inlineFormat";
2
+
3
+ /**
4
+ * EditorJS inline tool for **strikethrough**. Its main job is to register `<s>` (and legacy
5
+ * `<strike>`/`<del>`) in the block sanitizer so strikethrough survives `editor.save()` —
6
+ * EditorJS unions every enabled inline tool's `sanitize` into each block's save config. It
7
+ * also adds the button to the inline (selection) toolbar; the fixed toolbar uses the same
8
+ * `toggleWrap("s")` helper so both paths produce identical markup.
9
+ */
10
+ export default class StrikethroughInlineTool {
11
+ private button: HTMLButtonElement | null = null;
12
+
13
+ static get isInline() {
14
+ return true;
15
+ }
16
+
17
+ static get title() {
18
+ return "Strikethrough";
19
+ }
20
+
21
+ static get sanitize() {
22
+ return { s: {}, strike: {}, del: {} };
23
+ }
24
+
25
+ static get shortcut() {
26
+ return "CMD+SHIFT+X";
27
+ }
28
+
29
+ render(): HTMLElement {
30
+ this.button = document.createElement("button");
31
+ this.button.type = "button";
32
+ this.button.classList.add("ce-inline-tool");
33
+ this.button.innerHTML =
34
+ '<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M5 12h14"/><path d="M16 6.5A3.5 3.5 0 0 0 12.5 4h-1A3.5 3.5 0 0 0 8 7.5c0 1.5 1 2.5 3 3"/><path d="M8.5 15c.5 2 2 3 4 3h.5a3.5 3.5 0 0 0 0-7"/></svg>';
35
+ return this.button;
36
+ }
37
+
38
+ surround(range: Range): void {
39
+ if (!range) return;
40
+ toggleWrap("s");
41
+ }
42
+
43
+ checkState(): boolean {
44
+ const active = selectionHas((el) => ["s", "strike", "del"].includes(el.tagName.toLowerCase()));
45
+ this.button?.classList.toggle("ce-inline-tool--active", active);
46
+ return active;
47
+ }
48
+ }
@@ -0,0 +1,98 @@
1
+ /**
2
+ * Shared DOM helpers for the editor's inline formatting, used by both the custom inline
3
+ * tools (Strikethrough, Color) and the fixed `TextEditorToolbar` so they emit identical
4
+ * markup. Kept deterministic (own Range manipulation) rather than relying only on
5
+ * `document.execCommand`, whose output tag varies across browsers.
6
+ */
7
+
8
+ /** The current selection Range, or null when there's no usable selection. */
9
+ export function currentRange(): Range | null {
10
+ const sel = window.getSelection();
11
+ if (!sel || sel.rangeCount === 0) return null;
12
+ return sel.getRangeAt(0);
13
+ }
14
+
15
+ /** Walk up from a node to find an ancestor matching `predicate`, stopping at the block root. */
16
+ function closestWithin(
17
+ node: Node | null,
18
+ predicate: (el: HTMLElement) => boolean,
19
+ ): HTMLElement | null {
20
+ let el: Node | null = node;
21
+ while (el && el instanceof HTMLElement) {
22
+ if (el.classList?.contains("ce-block")) return null;
23
+ if (predicate(el)) return el;
24
+ el = el.parentElement;
25
+ }
26
+ return null;
27
+ }
28
+
29
+ /** Is the current selection already inside an element matching `predicate`? */
30
+ export function selectionHas(predicate: (el: HTMLElement) => boolean): boolean {
31
+ const range = currentRange();
32
+ if (!range) return false;
33
+ const node = range.commonAncestorContainer;
34
+ const start = node.nodeType === Node.TEXT_NODE ? node.parentElement : (node as HTMLElement);
35
+ return !!closestWithin(start, predicate);
36
+ }
37
+
38
+ /**
39
+ * Toggle-wrap the current selection in `<tagName>` (optionally with inline styles). If the
40
+ * selection is already fully inside such a tag, it is unwrapped instead. Returns true when
41
+ * something changed. Applies styles when wrapping so callers (e.g. color) get a `<span
42
+ * style="...">` whose attributes match the tool's sanitize allowlist.
43
+ */
44
+ export function toggleWrap(tagName: string, styles?: Record<string, string>): boolean {
45
+ const range = currentRange();
46
+ if (!range || range.collapsed) return false;
47
+
48
+ const tag = tagName.toLowerCase();
49
+ const matches = (el: HTMLElement) =>
50
+ el.tagName.toLowerCase() === tag &&
51
+ (!styles ||
52
+ Object.entries(styles).every(
53
+ ([k, v]) => el.style.getPropertyValue(k) === v || el.style[k as never] === v,
54
+ ));
55
+
56
+ // Already wrapped → unwrap (lift the tag's children out, drop the tag).
57
+ const startEl =
58
+ range.startContainer.nodeType === Node.TEXT_NODE
59
+ ? range.startContainer.parentElement
60
+ : (range.startContainer as HTMLElement);
61
+ const existing = closestWithin(startEl, matches);
62
+ if (existing) {
63
+ const parent = existing.parentNode;
64
+ if (!parent) return false;
65
+ while (existing.firstChild) parent.insertBefore(existing.firstChild, existing);
66
+ parent.removeChild(existing);
67
+ return true;
68
+ }
69
+
70
+ // Wrap the selected contents.
71
+ const wrapper = document.createElement(tag);
72
+ if (styles) for (const [k, v] of Object.entries(styles)) wrapper.style.setProperty(k, v);
73
+ try {
74
+ wrapper.appendChild(range.extractContents());
75
+ range.insertNode(wrapper);
76
+ // Reselect the wrapped content so repeated clicks toggle correctly.
77
+ const sel = window.getSelection();
78
+ if (sel) {
79
+ const r = document.createRange();
80
+ r.selectNodeContents(wrapper);
81
+ sel.removeAllRanges();
82
+ sel.addRange(r);
83
+ }
84
+ return true;
85
+ } catch {
86
+ return false;
87
+ }
88
+ }
89
+
90
+ /** Read the effective text color of the current selection (rgb string), or "" if none. */
91
+ export function selectionColor(): string {
92
+ const range = currentRange();
93
+ if (!range) return "";
94
+ const node = range.startContainer;
95
+ const el = node.nodeType === Node.TEXT_NODE ? node.parentElement : (node as HTMLElement);
96
+ if (!el) return "";
97
+ return getComputedStyle(el).color || "";
98
+ }