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.
- package/README.md +8 -0
- package/apps/lib/components/ActionButton.tsx +7 -12
- package/apps/lib/components/ActionsGroup.tsx +4 -15
- package/apps/lib/components/AlertDialog.tsx +173 -191
- package/apps/lib/components/Avatar.tsx +13 -16
- package/apps/lib/components/Badge.tsx +1 -3
- package/apps/lib/components/BadgeField.tsx +76 -71
- package/apps/lib/components/Breadcrumb.tsx +49 -85
- package/apps/lib/components/Button.tsx +21 -20
- package/apps/lib/components/ButtonGroup.tsx +31 -41
- package/apps/lib/components/Calendar.tsx +51 -29
- package/apps/lib/components/Card.tsx +40 -24
- package/apps/lib/components/Checkbox.tsx +9 -16
- package/apps/lib/components/ColorPicker.tsx +441 -0
- package/apps/lib/components/ConclusionHeader.tsx +148 -0
- package/apps/lib/components/ContextMenu.tsx +97 -96
- package/apps/lib/components/CountBadge.tsx +4 -6
- package/apps/lib/components/DataTable.tsx +196 -216
- package/apps/lib/components/DataViews/DataViewRadio.tsx +1 -6
- package/apps/lib/components/DataViews/DataViewsConfigPanel.tsx +13 -47
- package/apps/lib/components/DataViews/DataViewsHeader.tsx +1 -3
- package/apps/lib/components/DataViews/DataViewsLayout.tsx +5 -12
- package/apps/lib/components/DataViews/FilterPanel.tsx +155 -149
- package/apps/lib/components/DataViews/HeaderSearch.tsx +1 -5
- package/apps/lib/components/DataViews/InboxView.tsx +22 -68
- package/apps/lib/components/DataViews/InboxViewCard.tsx +68 -77
- package/apps/lib/components/DataViews/KanbanView.tsx +8 -25
- package/apps/lib/components/DataViews/PanelControls.tsx +3 -13
- package/apps/lib/components/DataViews/SettingsPanel.tsx +83 -89
- package/apps/lib/components/DataViews/TableView.tsx +8 -28
- package/apps/lib/components/DataViews/TreeView.tsx +12 -40
- package/apps/lib/components/DataViews/badgeAdapter.ts +32 -28
- package/apps/lib/components/DataViews/fieldRenderers.tsx +106 -141
- package/apps/lib/components/DataViews/filters/DatePickerRangeFilter.tsx +30 -23
- package/apps/lib/components/DataViews/filters/DateRangePopover.tsx +39 -32
- package/apps/lib/components/DataViews/filters/PresetChips.tsx +15 -15
- package/apps/lib/components/DataViews/filters/RangeSliderWithInputs.tsx +69 -58
- package/apps/lib/components/DataViews/index.ts +26 -26
- package/apps/lib/components/DataViews/tree/TreeDrawer.tsx +12 -16
- package/apps/lib/components/DataViews/tree/TreeSidebar.tsx +28 -31
- package/apps/lib/components/DataViews/types.ts +104 -115
- package/apps/lib/components/DatePicker.tsx +200 -196
- package/apps/lib/components/Dialog.tsx +92 -105
- package/apps/lib/components/Divider.tsx +21 -24
- package/apps/lib/components/Drawer.tsx +124 -142
- package/apps/lib/components/DropdownMenu.tsx +131 -171
- package/apps/lib/components/FieldHint.tsx +4 -11
- package/apps/lib/components/Form.tsx +146 -155
- package/apps/lib/components/FormBuilder/DisplayField.tsx +40 -0
- package/apps/lib/components/FormBuilder/context.ts +71 -0
- package/apps/lib/components/FormBuilder/fields/ChoiceFields.tsx +65 -0
- package/apps/lib/components/FormBuilder/fields/ColorField.tsx +76 -0
- package/apps/lib/components/FormBuilder/fields/CustomField.tsx +16 -0
- package/apps/lib/components/FormBuilder/fields/DateField.tsx +34 -0
- package/apps/lib/components/FormBuilder/fields/FieldArray.tsx +79 -0
- package/apps/lib/components/FormBuilder/fields/FieldShell.tsx +174 -0
- package/apps/lib/components/FormBuilder/fields/FileField.tsx +40 -0
- package/apps/lib/components/FormBuilder/fields/OptionListFields.tsx +139 -0
- package/apps/lib/components/FormBuilder/fields/OtpField.tsx +32 -0
- package/apps/lib/components/FormBuilder/fields/PhoneField.tsx +82 -0
- package/apps/lib/components/FormBuilder/fields/RichTextEditorField.tsx +37 -0
- package/apps/lib/components/FormBuilder/fields/SelectField.tsx +101 -0
- package/apps/lib/components/FormBuilder/fields/SignatureField.tsx +175 -0
- package/apps/lib/components/FormBuilder/fields/SliderField.tsx +72 -0
- package/apps/lib/components/FormBuilder/fields/SwitchBoxField.tsx +42 -0
- package/apps/lib/components/FormBuilder/fields/TableField.tsx +312 -0
- package/apps/lib/components/FormBuilder/fields/TextField.tsx +222 -0
- package/apps/lib/components/FormBuilder/fields/TreeSelectField.tsx +49 -0
- package/apps/lib/components/FormBuilder/fields/countries.ts +303 -0
- package/apps/lib/components/FormBuilder/fields/index.ts +25 -0
- package/apps/lib/components/FormBuilder/form-builder.tsx +292 -0
- package/apps/lib/components/FormBuilder/header.tsx +105 -0
- package/apps/lib/components/FormBuilder/index.ts +37 -0
- package/apps/lib/components/FormBuilder/numberFormat.ts +16 -0
- package/apps/lib/components/FormBuilder/stepper.tsx +217 -0
- package/apps/lib/components/FormBuilder/submit.tsx +41 -0
- package/apps/lib/components/FormBuilder/types.ts +264 -0
- package/apps/lib/components/FormBuilder/viewFormat.tsx +137 -0
- package/apps/lib/components/FormRenderer/FormDrawer.tsx +121 -0
- package/apps/lib/components/FormRenderer/form-renderer.tsx +113 -0
- package/apps/lib/components/FormRenderer/index.ts +9 -0
- package/apps/lib/components/FormRenderer/types.ts +79 -0
- package/apps/lib/components/FormStepper.tsx +9 -39
- package/apps/lib/components/FormSummary.tsx +282 -0
- package/apps/lib/components/HeaderBar.tsx +1 -9
- package/apps/lib/components/ImageAttachment.tsx +106 -93
- package/apps/lib/components/InnerLabelField.tsx +20 -16
- package/apps/lib/components/Input.tsx +171 -172
- package/apps/lib/components/InputField.tsx +44 -45
- package/apps/lib/components/InputOTP.tsx +68 -69
- package/apps/lib/components/Label.tsx +61 -58
- package/apps/lib/components/LabelField.tsx +4 -5
- package/apps/lib/components/LabeledCheckBox.tsx +8 -12
- package/apps/lib/components/LabeledRadio.tsx +7 -5
- package/apps/lib/components/LinkButton.tsx +2 -9
- package/apps/lib/components/LoginButton.tsx +4 -9
- package/apps/lib/components/PasswordLevel.tsx +5 -5
- package/apps/lib/components/Popover.tsx +15 -33
- package/apps/lib/components/ProfileMenu.tsx +67 -72
- package/apps/lib/components/Radio.tsx +1 -5
- package/apps/lib/components/RadioCard.tsx +11 -28
- package/apps/lib/components/ScrollArea.tsx +45 -43
- package/apps/lib/components/SearchField.tsx +49 -39
- package/apps/lib/components/SearchableSelect.tsx +16 -16
- package/apps/lib/components/SearchableTable.tsx +108 -118
- package/apps/lib/components/SearchableTree.tsx +469 -0
- package/apps/lib/components/SearchableTreeDialog.tsx +493 -0
- package/apps/lib/components/SectionBlock.tsx +19 -23
- package/apps/lib/components/Select.tsx +80 -186
- package/apps/lib/components/SimpleSelect.tsx +196 -187
- package/apps/lib/components/Skeleton.tsx +9 -12
- package/apps/lib/components/SlideDatePicker.tsx +215 -166
- package/apps/lib/components/SpinLoading.tsx +33 -49
- package/apps/lib/components/Stepper.tsx +13 -56
- package/apps/lib/components/Switch.tsx +8 -10
- package/apps/lib/components/TabFormItem.tsx +3 -12
- package/apps/lib/components/TabSwitch.tsx +7 -34
- package/apps/lib/components/Table.tsx +60 -75
- package/apps/lib/components/{ChartBlockTool.ts → TextEditor/ChartBlockTool.ts} +17 -52
- package/apps/lib/components/TextEditor/RichTextField.tsx +46 -0
- package/apps/lib/components/{TableDnDWrapper.ts → TextEditor/TableDnDWrapper.ts} +15 -48
- package/apps/lib/components/{TextEditor.tsx → TextEditor/TextEditor.tsx} +156 -113
- package/apps/lib/components/TextEditor/TextEditorToolbar.tsx +429 -0
- package/apps/lib/components/TextEditor/editor-tools/AlignmentTune.ts +70 -0
- package/apps/lib/components/TextEditor/editor-tools/ColorInlineTool.ts +50 -0
- package/apps/lib/components/TextEditor/editor-tools/StrikethroughInlineTool.ts +48 -0
- package/apps/lib/components/TextEditor/editor-tools/inlineFormat.ts +98 -0
- package/apps/lib/{types → components/TextEditor}/editorjs.d.ts +19 -0
- package/apps/lib/components/TextEditor/index.ts +7 -0
- package/apps/lib/{utils → components/TextEditor}/markdownParser.ts +2 -7
- package/apps/lib/components/Textarea.tsx +9 -13
- package/apps/lib/components/Timeline.tsx +21 -41
- package/apps/lib/components/Toast.tsx +83 -83
- package/apps/lib/components/Toggle.tsx +112 -114
- package/apps/lib/components/ToggleButton.tsx +1 -1
- package/apps/lib/components/Tooltip.tsx +24 -19
- package/apps/lib/components/TransparentLabel.tsx +61 -62
- package/apps/lib/components/TreeDropDown.tsx +86 -52
- package/apps/lib/components/TreeFolder/TreeFolder.tsx +15 -48
- package/apps/lib/components/TreeFolder/TreeFolderBreadcrumb.tsx +16 -21
- package/apps/lib/components/TreeFolder/TreeFolderRow.tsx +9 -20
- package/apps/lib/components/TreeFolder/TreeFolderStyles.tsx +3 -3
- package/apps/lib/components/TreeFolder/icons.tsx +14 -17
- package/apps/lib/components/TreeFolder/index.ts +15 -8
- package/apps/lib/components/TreeFolder/treeFolderUtils.ts +47 -52
- package/apps/lib/components/TreeFolder/types.ts +32 -32
- package/apps/lib/components/TreeFolder/useTreeFolderDnD.ts +117 -123
- package/apps/lib/hooks/useActiveTreeItem.ts +52 -55
- package/apps/lib/hooks/useClickOutside.ts +21 -20
- package/apps/lib/hooks/useDataViewsState.ts +86 -80
- package/apps/lib/hooks/useIsMobile.ts +12 -12
- package/apps/lib/hooks/useResize.ts +54 -65
- package/apps/lib/hooks/useTagSelection.ts +201 -201
- package/apps/lib/layouts/CNLayout.tsx +181 -140
- package/apps/lib/layouts/DataViewCard.tsx +4 -18
- package/apps/lib/layouts/FieldSection.tsx +2 -6
- package/apps/lib/layouts/TreeSubLayout.tsx +24 -38
- package/apps/lib/providers/ThemeProvider.tsx +8 -23
- package/apps/lib/registry.json +997 -0
- package/apps/lib/tsconfig.json +9 -0
- package/apps/lib/tsconfig.tsbuildinfo +1 -0
- package/apps/lib/utils/cn.ts +1 -1
- package/apps/lib/utils/color.ts +175 -0
- package/apps/lib/utils/dataViews/columnUtils.ts +46 -44
- package/apps/lib/utils/dataViews/fieldUtils.ts +70 -71
- package/apps/lib/utils/dataViews/nestedDataUtils.tsx +129 -122
- package/apps/lib/utils/dataViews/pathUtils.ts +74 -67
- package/apps/lib/utils/dataViews/rangeUtils.ts +121 -112
- package/apps/lib/utils/dataViews/treeUtils.ts +204 -211
- package/apps/lib/utils/dateFormat.ts +64 -54
- package/apps/lib/utils/resize.ts +21 -25
- package/apps/lib/utils/types.ts +13 -13
- package/dist/bin/index.js +8 -2
- package/dist/bin/index.js.map +1 -1
- package/dist/src/shared/getAvailableFiles.d.ts.map +1 -1
- package/dist/src/shared/getAvailableFiles.js +6 -1
- package/dist/src/shared/getAvailableFiles.js.map +1 -1
- package/dist/src/shared/loadRegistry.d.ts +7 -0
- package/dist/src/shared/loadRegistry.d.ts.map +1 -0
- package/dist/src/shared/loadRegistry.js +31 -0
- package/dist/src/shared/loadRegistry.js.map +1 -0
- package/dist/src/shared/resolveInstallPlan.d.ts +12 -0
- package/dist/src/shared/resolveInstallPlan.d.ts.map +1 -0
- package/dist/src/shared/resolveInstallPlan.js +39 -0
- package/dist/src/shared/resolveInstallPlan.js.map +1 -0
- package/dist/src/types/main.d.ts +24 -0
- package/dist/src/types/main.d.ts.map +1 -1
- package/docs/README.md +10 -2
- package/docs/components/action-button.md +30 -24
- package/docs/components/actions-group.md +26 -20
- package/docs/components/alert-dialog.md +45 -45
- package/docs/components/avatar.md +6 -2
- package/docs/components/badge-field.md +6 -2
- package/docs/components/badge.md +7 -1
- package/docs/components/breadcrumb.md +15 -40
- package/docs/components/button-group.md +13 -10
- package/docs/components/button.md +58 -33
- package/docs/components/calendar.md +26 -19
- package/docs/components/card.md +23 -18
- package/docs/components/chart-block-tool.md +129 -0
- package/docs/components/checkbox.md +16 -8
- package/docs/components/cn-layout.md +7 -1
- package/docs/components/color-picker.md +101 -0
- package/docs/components/conclusion-header.md +80 -0
- package/docs/components/context-menu.md +18 -25
- package/docs/components/count-badge.md +7 -1
- package/docs/components/data-table.md +45 -33
- package/docs/components/data-views-config-panel.md +15 -11
- package/docs/components/data-views-layout.md +13 -16
- package/docs/components/date-picker.md +30 -23
- package/docs/components/dialog.md +43 -42
- package/docs/components/divider.md +10 -4
- package/docs/components/drawer.md +161 -135
- package/docs/components/dropdown-menu.md +25 -34
- package/docs/components/field-hint.md +37 -25
- package/docs/components/field-section.md +9 -3
- package/docs/components/form-builder.md +270 -0
- package/docs/components/form-renderer.md +228 -0
- package/docs/components/form-stepper.md +6 -0
- package/docs/components/form-summary.md +123 -0
- package/docs/components/form.md +17 -20
- package/docs/components/header-bar.md +6 -0
- package/docs/components/image-attachment.md +43 -45
- package/docs/components/inbox-view.md +16 -5
- package/docs/components/inner-label-field.md +34 -24
- package/docs/components/input-field.md +18 -10
- package/docs/components/input-otp.md +14 -11
- package/docs/components/input.md +22 -16
- package/docs/components/kanban-view.md +15 -5
- package/docs/components/label-field.md +32 -22
- package/docs/components/label.md +43 -32
- package/docs/components/labeled-check-box.md +16 -8
- package/docs/components/labeled-radio.md +18 -11
- package/docs/components/link-button.md +7 -1
- package/docs/components/login-button.md +8 -2
- package/docs/components/password-level.md +37 -24
- package/docs/components/popover.md +26 -23
- package/docs/components/profile-menu.md +38 -27
- package/docs/components/radio-card.md +16 -9
- package/docs/components/radio.md +16 -8
- package/docs/components/scroll-area.md +6 -2
- package/docs/components/search-field.md +14 -6
- package/docs/components/searchable-select.md +19 -14
- package/docs/components/searchable-table.md +18 -13
- package/docs/components/searchable-tree-dialog.md +190 -0
- package/docs/components/searchable-tree.md +200 -0
- package/docs/components/section-block.md +12 -4
- package/docs/components/select.md +23 -18
- package/docs/components/simple-select.md +14 -10
- package/docs/components/skeleton.md +43 -33
- package/docs/components/slide-date-picker.md +37 -29
- package/docs/components/spin-loading.md +32 -23
- package/docs/components/stepper.md +6 -0
- package/docs/components/switch.md +14 -6
- package/docs/components/tab-form-item.md +7 -1
- package/docs/components/tab-switch.md +13 -6
- package/docs/components/table-dnd-wrapper.md +107 -0
- package/docs/components/table-view.md +15 -5
- package/docs/components/table.md +28 -28
- package/docs/components/text-editor.md +37 -13
- package/docs/components/textarea.md +15 -7
- package/docs/components/timeline.md +6 -0
- package/docs/components/toast.md +35 -26
- package/docs/components/toggle-button.md +24 -21
- package/docs/components/toggle.md +23 -15
- package/docs/components/tooltip.md +42 -30
- package/docs/components/transparent-label.md +29 -20
- package/docs/components/tree-drop-down.md +31 -23
- package/docs/components/tree-sub-layout.md +6 -2
- package/docs/components/tree-view.md +16 -5
- package/docs/explanation/architecture.md +54 -0
- package/docs/explanation/design-system.md +52 -0
- package/docs/how-to/data-views-from-backend-response.md +6 -4
- package/docs/how-to/form-and-list-recipes.md +26 -19
- package/docs/how-to/forms-with-form-builder.md +408 -0
- package/docs/how-to/guides.md +177 -197
- package/docs/migration/changelog.md +38 -0
- package/docs/reference/cli.md +87 -0
- package/docs/reference/components.md +11 -12
- package/docs/reference/hooks.md +8 -8
- package/docs/reference/providers.md +22 -22
- package/docs/reference/tailwind-plugins.md +2 -2
- package/docs/reference/theme.md +85 -0
- package/docs/reference/types.md +4 -4
- package/docs/reference/utilities.md +19 -26
- package/docs/tutorials/building-first-form.md +170 -172
- package/docs/tutorials/component-composition.md +34 -50
- package/docs/tutorials/getting-started.md +2 -2
- package/docs/tutorials/theming-basics.md +13 -10
- package/package.json +31 -3
- package/dist/src/commands/block.d.ts +0 -5
- package/dist/src/commands/block.d.ts.map +0 -1
- package/dist/src/commands/block.js +0 -255
- package/dist/src/commands/block.js.map +0 -1
- package/dist/src/shared/configureFonts.d.ts +0 -6
- package/dist/src/shared/configureFonts.d.ts.map +0 -1
- package/dist/src/shared/configureFonts.js +0 -106
- package/dist/src/shared/configureFonts.js.map +0 -1
- package/dist/src/shared/configureGlobalCss.d.ts +0 -6
- package/dist/src/shared/configureGlobalCss.d.ts.map +0 -1
- package/dist/src/shared/configureGlobalCss.js +0 -154
- package/dist/src/shared/configureGlobalCss.js.map +0 -1
- package/dist/src/shared/configureTailwind.d.ts +0 -7
- package/dist/src/shared/configureTailwind.d.ts.map +0 -1
- package/dist/src/shared/configureTailwind.js +0 -163
- package/dist/src/shared/configureTailwind.js.map +0 -1
- package/dist/src/shared/detectFramework.d.ts +0 -23
- package/dist/src/shared/detectFramework.d.ts.map +0 -1
- package/dist/src/shared/detectFramework.js +0 -119
- package/dist/src/shared/detectFramework.js.map +0 -1
- package/dist/src/shared/installBaseUtils.d.ts +0 -5
- package/dist/src/shared/installBaseUtils.d.ts.map +0 -1
- package/dist/src/shared/installBaseUtils.js +0 -79
- package/dist/src/shared/installBaseUtils.js.map +0 -1
- package/dist/src/shared/resolveAliases.d.ts +0 -24
- package/dist/src/shared/resolveAliases.d.ts.map +0 -1
- package/dist/src/shared/resolveAliases.js +0 -98
- 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
|
+
}
|