@datalayer/lexical-loro 0.2.3 → 0.2.5
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/lib/App.d.ts +2 -0
- package/lib/App.js +141 -0
- package/lib/Editor.d.ts +2 -0
- package/lib/Editor.js +115 -0
- package/lib/Settings.d.ts +2 -0
- package/lib/Settings.js +57 -0
- package/lib/appSettings.d.ts +36 -0
- package/lib/appSettings.js +48 -0
- package/lib/collab/loro/Bindings.d.ts +41 -0
- package/lib/collab/loro/Bindings.js +99 -0
- package/lib/collab/loro/Debug.d.ts +33 -0
- package/lib/collab/loro/Debug.js +452 -0
- package/lib/collab/loro/LexicalCollaborationContext.d.ts +19 -0
- package/lib/collab/loro/LexicalCollaborationContext.js +52 -0
- package/lib/collab/loro/LexicalCollaborationPlugin.d.ts +24 -0
- package/lib/collab/loro/LexicalCollaborationPlugin.js +83 -0
- package/lib/collab/loro/State.d.ts +53 -0
- package/lib/collab/loro/State.js +94 -0
- package/lib/collab/loro/components/LoroCollaborationUI.d.ts +13 -0
- package/lib/collab/loro/components/LoroCollaborationUI.js +9 -0
- package/lib/collab/loro/components/LoroCollaborators.d.ts +8 -0
- package/lib/collab/loro/components/LoroCollaborators.js +102 -0
- package/lib/collab/loro/components/index.d.ts +2 -0
- package/lib/collab/loro/components/index.js +6 -0
- package/lib/collab/loro/index.d.ts +6 -0
- package/lib/collab/loro/index.js +10 -0
- package/lib/collab/loro/integrators/BaseIntegrator.d.ts +14 -0
- package/lib/collab/loro/integrators/BaseIntegrator.js +5 -0
- package/lib/collab/loro/integrators/CounterIntegrator.d.ts +23 -0
- package/lib/collab/loro/integrators/CounterIntegrator.js +44 -0
- package/lib/collab/loro/integrators/ListIntegrator.d.ts +23 -0
- package/lib/collab/loro/integrators/ListIntegrator.js +53 -0
- package/lib/collab/loro/integrators/MapIntegrator.d.ts +24 -0
- package/lib/collab/loro/integrators/MapIntegrator.js +235 -0
- package/lib/collab/loro/integrators/TextIntegrator.d.ts +25 -0
- package/lib/collab/loro/integrators/TextIntegrator.js +55 -0
- package/lib/collab/loro/integrators/TreeIntegrator.d.ts +36 -0
- package/lib/collab/loro/integrators/TreeIntegrator.js +251 -0
- package/lib/collab/loro/nodes/NodeFactory.d.ts +15 -0
- package/lib/collab/loro/nodes/NodeFactory.js +101 -0
- package/lib/collab/loro/nodes/NodesMapper.d.ts +120 -0
- package/lib/collab/loro/nodes/NodesMapper.js +277 -0
- package/lib/collab/loro/propagators/DecoratorNodePropagator.d.ts +60 -0
- package/lib/collab/loro/propagators/DecoratorNodePropagator.js +306 -0
- package/lib/collab/loro/propagators/ElementNodePropagator.d.ts +62 -0
- package/lib/collab/loro/propagators/ElementNodePropagator.js +326 -0
- package/lib/collab/loro/propagators/LineBreakNodePropagator.d.ts +57 -0
- package/lib/collab/loro/propagators/LineBreakNodePropagator.js +200 -0
- package/lib/collab/loro/propagators/RootNodePropagator.d.ts +55 -0
- package/lib/collab/loro/propagators/RootNodePropagator.js +174 -0
- package/lib/collab/loro/propagators/TextNodePropagator.d.ts +60 -0
- package/lib/collab/loro/propagators/TextNodePropagator.js +440 -0
- package/lib/collab/loro/propagators/index.d.ts +49 -0
- package/lib/collab/loro/propagators/index.js +30 -0
- package/lib/collab/loro/provider/websocket.d.ts +116 -0
- package/lib/collab/loro/provider/websocket.js +911 -0
- package/lib/collab/loro/servers/index.d.ts +0 -0
- package/lib/collab/loro/servers/index.js +4 -0
- package/lib/collab/loro/servers/ws/callback.d.ts +5 -0
- package/lib/collab/loro/servers/ws/callback.js +89 -0
- package/lib/collab/loro/servers/ws/server.d.ts +2 -0
- package/lib/collab/loro/servers/ws/server.js +29 -0
- package/lib/collab/loro/servers/ws/utils.d.ts +40 -0
- package/lib/collab/loro/servers/ws/utils.js +517 -0
- package/lib/collab/loro/sync/SyncCursors.d.ts +32 -0
- package/lib/collab/loro/sync/SyncCursors.js +475 -0
- package/lib/collab/loro/sync/SyncLexicalToLoro.d.ts +4 -0
- package/lib/collab/loro/sync/SyncLexicalToLoro.js +113 -0
- package/lib/collab/loro/sync/SyncLoroToLexical.d.ts +5 -0
- package/lib/collab/loro/sync/SyncLoroToLexical.js +100 -0
- package/lib/collab/loro/types/LexicalNodeData.d.ts +32 -0
- package/lib/collab/loro/types/LexicalNodeData.js +75 -0
- package/lib/collab/loro/useCollaboration.d.ts +12 -0
- package/lib/collab/loro/useCollaboration.js +260 -0
- package/lib/collab/loro/utils/InitialContent.d.ts +64 -0
- package/lib/collab/loro/utils/InitialContent.js +113 -0
- package/lib/collab/loro/utils/LexicalToLoro.d.ts +18 -0
- package/lib/collab/loro/utils/LexicalToLoro.js +100 -0
- package/lib/collab/loro/utils/Utils.d.ts +44 -0
- package/lib/collab/loro/utils/Utils.js +157 -0
- package/lib/collab/loro/wsProvider.d.ts +8 -0
- package/lib/collab/loro/wsProvider.js +35 -0
- package/lib/collab/utils/invariant.d.ts +1 -0
- package/lib/collab/utils/invariant.js +15 -0
- package/lib/collab/utils/simpleDiffWithCursor.d.ts +5 -0
- package/lib/collab/utils/simpleDiffWithCursor.js +35 -0
- package/lib/collab/yjs/Bindings.d.ts +23 -0
- package/lib/collab/yjs/Bindings.js +26 -0
- package/lib/collab/yjs/Debug.d.ts +23 -0
- package/lib/collab/yjs/Debug.js +213 -0
- package/lib/collab/yjs/LexicalCollaborationContext.d.ts +10 -0
- package/lib/collab/yjs/LexicalCollaborationContext.js +37 -0
- package/lib/collab/yjs/LexicalCollaborationPlugin.d.ts +21 -0
- package/lib/collab/yjs/LexicalCollaborationPlugin.js +63 -0
- package/lib/collab/yjs/State.d.ts +51 -0
- package/lib/collab/yjs/State.js +35 -0
- package/lib/collab/yjs/nodes/AnyCollabNode.d.ts +5 -0
- package/lib/collab/yjs/nodes/AnyCollabNode.js +1 -0
- package/lib/collab/yjs/nodes/CollabDecoratorNode.d.ts +22 -0
- package/lib/collab/yjs/nodes/CollabDecoratorNode.js +64 -0
- package/lib/collab/yjs/nodes/CollabElementNode.d.ts +40 -0
- package/lib/collab/yjs/nodes/CollabElementNode.js +462 -0
- package/lib/collab/yjs/nodes/CollabLineBreakNode.d.ts +19 -0
- package/lib/collab/yjs/nodes/CollabLineBreakNode.js +44 -0
- package/lib/collab/yjs/nodes/CollabTextNode.d.ts +25 -0
- package/lib/collab/yjs/nodes/CollabTextNode.js +103 -0
- package/lib/collab/yjs/provider/websocket.d.ts +88 -0
- package/lib/collab/yjs/provider/websocket.js +415 -0
- package/lib/collab/yjs/servers/index.d.ts +0 -0
- package/lib/collab/yjs/servers/index.js +0 -0
- package/lib/collab/yjs/servers/ws/callback.d.ts +5 -0
- package/lib/collab/yjs/servers/ws/callback.js +72 -0
- package/lib/collab/yjs/servers/ws/server.d.ts +2 -0
- package/lib/collab/yjs/servers/ws/server.js +25 -0
- package/lib/collab/yjs/servers/ws/utils.d.ts +49 -0
- package/lib/collab/yjs/servers/ws/utils.js +284 -0
- package/lib/collab/yjs/sync/SyncCursors.d.ts +39 -0
- package/lib/collab/yjs/sync/SyncCursors.js +351 -0
- package/lib/collab/yjs/sync/SyncEditorStates.d.ts +10 -0
- package/lib/collab/yjs/sync/SyncEditorStates.js +200 -0
- package/lib/collab/yjs/useCollaboration.d.ts +12 -0
- package/lib/collab/yjs/useCollaboration.js +255 -0
- package/lib/collab/yjs/utils/Utils.d.ts +25 -0
- package/lib/collab/yjs/utils/Utils.js +402 -0
- package/lib/collab/yjs/wsProvider.d.ts +3 -0
- package/lib/collab/yjs/wsProvider.js +21 -0
- package/lib/commenting/index.d.ts +41 -0
- package/lib/commenting/index.js +328 -0
- package/lib/context/FlashMessageContext.d.ts +7 -0
- package/lib/context/FlashMessageContext.js +24 -0
- package/lib/context/SettingsContext.d.ts +12 -0
- package/lib/context/SettingsContext.js +38 -0
- package/lib/context/SharedHistoryContext.d.ts +11 -0
- package/lib/context/SharedHistoryContext.js +11 -0
- package/lib/context/ToolbarContext.d.ts +65 -0
- package/lib/context/ToolbarContext.js +84 -0
- package/lib/demo.d.ts +12 -0
- package/lib/demo.js +45 -0
- package/lib/hooks/useFlashMessage.d.ts +2 -0
- package/lib/hooks/useFlashMessage.js +8 -0
- package/lib/hooks/useModal.d.ts +5 -0
- package/lib/hooks/useModal.js +26 -0
- package/lib/hooks/useReport.d.ts +1 -0
- package/lib/hooks/useReport.js +50 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +5 -0
- package/lib/nodes/AutocompleteNode.d.ts +27 -0
- package/lib/nodes/AutocompleteNode.js +60 -0
- package/lib/nodes/CounterComponent.d.ts +6 -0
- package/lib/nodes/CounterComponent.js +137 -0
- package/lib/nodes/CounterNode.d.ts +23 -0
- package/lib/nodes/CounterNode.js +47 -0
- package/lib/nodes/DateTimeNode/DateTimeComponent.d.ts +8 -0
- package/lib/nodes/DateTimeNode/DateTimeComponent.js +119 -0
- package/lib/nodes/DateTimeNode/DateTimeNode.d.ts +27 -0
- package/lib/nodes/DateTimeNode/DateTimeNode.js +82 -0
- package/lib/nodes/EmojiNode.d.ts +18 -0
- package/lib/nodes/EmojiNode.js +54 -0
- package/lib/nodes/EquationComponent.d.ts +9 -0
- package/lib/nodes/EquationComponent.js +75 -0
- package/lib/nodes/EquationNode.d.ts +26 -0
- package/lib/nodes/EquationNode.js +109 -0
- package/lib/nodes/ExcalidrawNode/ExcalidrawComponent.d.ts +8 -0
- package/lib/nodes/ExcalidrawNode/ExcalidrawComponent.js +110 -0
- package/lib/nodes/ExcalidrawNode/ExcalidrawImage.d.ts +50 -0
- package/lib/nodes/ExcalidrawNode/ExcalidrawImage.js +55 -0
- package/lib/nodes/ExcalidrawNode/index.d.ts +32 -0
- package/lib/nodes/ExcalidrawNode/index.js +117 -0
- package/lib/nodes/FigmaNode.d.ts +20 -0
- package/lib/nodes/FigmaNode.js +52 -0
- package/lib/nodes/ImageComponent.d.ts +16 -0
- package/lib/nodes/ImageComponent.js +272 -0
- package/lib/nodes/ImageNode.d.ts +50 -0
- package/lib/nodes/ImageNode.js +151 -0
- package/lib/nodes/InlineImageNode/InlineImageComponent.d.ts +26 -0
- package/lib/nodes/InlineImageNode/InlineImageComponent.js +161 -0
- package/lib/nodes/InlineImageNode/InlineImageNode.d.ts +59 -0
- package/lib/nodes/InlineImageNode/InlineImageNode.js +162 -0
- package/lib/nodes/KeywordNode.d.ts +14 -0
- package/lib/nodes/KeywordNode.js +37 -0
- package/lib/nodes/LayoutContainerNode.d.ts +24 -0
- package/lib/nodes/LayoutContainerNode.js +95 -0
- package/lib/nodes/LayoutItemNode.d.ts +16 -0
- package/lib/nodes/LayoutItemNode.js +69 -0
- package/lib/nodes/MentionNode.d.ts +20 -0
- package/lib/nodes/MentionNode.js +85 -0
- package/lib/nodes/PageBreakNode/index.d.ts +17 -0
- package/lib/nodes/PageBreakNode/index.js +83 -0
- package/lib/nodes/PlaygroundNodes.d.ts +3 -0
- package/lib/nodes/PlaygroundNodes.js +75 -0
- package/lib/nodes/PollComponent.d.ts +9 -0
- package/lib/nodes/PollComponent.js +85 -0
- package/lib/nodes/PollNode.d.ts +43 -0
- package/lib/nodes/PollNode.js +153 -0
- package/lib/nodes/SpecialTextNode.d.ts +24 -0
- package/lib/nodes/SpecialTextNode.js +54 -0
- package/lib/nodes/StickyComponent.d.ts +10 -0
- package/lib/nodes/StickyComponent.js +162 -0
- package/lib/nodes/StickyNode.d.ts +31 -0
- package/lib/nodes/StickyNode.js +76 -0
- package/lib/nodes/TweetNode.d.ts +21 -0
- package/lib/nodes/TweetNode.js +119 -0
- package/lib/nodes/YouTubeNode.d.ts +22 -0
- package/lib/nodes/YouTubeNode.js +84 -0
- package/lib/plugins/ActionsPlugin/index.d.ts +5 -0
- package/lib/plugins/ActionsPlugin/index.js +168 -0
- package/lib/plugins/AutoEmbedPlugin/index.d.ts +19 -0
- package/lib/plugins/AutoEmbedPlugin/index.js +158 -0
- package/lib/plugins/AutoLinkPlugin/index.d.ts +2 -0
- package/lib/plugins/AutoLinkPlugin/index.js +15 -0
- package/lib/plugins/AutocompletePlugin/index.d.ts +10 -0
- package/lib/plugins/AutocompletePlugin/index.js +2477 -0
- package/lib/plugins/CodeActionMenuPlugin/components/CopyButton/index.d.ts +7 -0
- package/lib/plugins/CodeActionMenuPlugin/components/CopyButton/index.js +46 -0
- package/lib/plugins/CodeActionMenuPlugin/components/PrettierButton/index.d.ts +17 -0
- package/lib/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js +115 -0
- package/lib/plugins/CodeActionMenuPlugin/index.d.ts +5 -0
- package/lib/plugins/CodeActionMenuPlugin/index.js +104 -0
- package/lib/plugins/CodeActionMenuPlugin/utils.d.ts +1 -0
- package/lib/plugins/CodeActionMenuPlugin/utils.js +22 -0
- package/lib/plugins/CodeHighlightPrismPlugin/index.d.ts +2 -0
- package/lib/plugins/CodeHighlightPrismPlugin/index.js +14 -0
- package/lib/plugins/CodeHighlightShikiPlugin/index.d.ts +2 -0
- package/lib/plugins/CodeHighlightShikiPlugin/index.js +14 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleContainerNode.d.ts +25 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleContainerNode.js +135 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleContentNode.d.ts +16 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleContentNode.js +83 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleTitleNode.d.ts +16 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleTitleNode.js +85 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleUtils.d.ts +2 -0
- package/lib/plugins/CollapsiblePlugin/CollapsibleUtils.js +12 -0
- package/lib/plugins/CollapsiblePlugin/index.d.ts +3 -0
- package/lib/plugins/CollapsiblePlugin/index.js +132 -0
- package/lib/plugins/CommentPlugin/index.d.ts +9 -0
- package/lib/plugins/CommentPlugin/index.js +460 -0
- package/lib/plugins/ComponentPickerPlugin/index.d.ts +2 -0
- package/lib/plugins/ComponentPickerPlugin/index.js +276 -0
- package/lib/plugins/ContextMenuPlugin/index.d.ts +2 -0
- package/lib/plugins/ContextMenuPlugin/index.js +112 -0
- package/lib/plugins/CounterPlugin/index.d.ts +3 -0
- package/lib/plugins/CounterPlugin/index.js +24 -0
- package/lib/plugins/DateTimePlugin/index.d.ts +8 -0
- package/lib/plugins/DateTimePlugin/index.js +28 -0
- package/lib/plugins/DebugPlugin/index.d.ts +3 -0
- package/lib/plugins/DebugPlugin/index.js +219 -0
- package/lib/plugins/DocsPlugin/index.d.ts +2 -0
- package/lib/plugins/DocsPlugin/index.js +4 -0
- package/lib/plugins/DragDropPastePlugin/index.d.ts +1 -0
- package/lib/plugins/DragDropPastePlugin/index.js +37 -0
- package/lib/plugins/DraggableBlockPlugin/index.d.ts +12 -0
- package/lib/plugins/DraggableBlockPlugin/index.js +36 -0
- package/lib/plugins/EmojiPickerPlugin/index.d.ts +1 -0
- package/lib/plugins/EmojiPickerPlugin/index.js +84 -0
- package/lib/plugins/EmojisPlugin/index.d.ts +2 -0
- package/lib/plugins/EmojisPlugin/index.js +56 -0
- package/lib/plugins/EquationsPlugin/index.d.ts +14 -0
- package/lib/plugins/EquationsPlugin/index.js +34 -0
- package/lib/plugins/ExcalidrawPlugin/index.d.ts +5 -0
- package/lib/plugins/ExcalidrawPlugin/index.js +44 -0
- package/lib/plugins/FigmaPlugin/index.d.ts +4 -0
- package/lib/plugins/FigmaPlugin/index.js +24 -0
- package/lib/plugins/FloatingLinkEditorPlugin/index.d.ts +15 -0
- package/lib/plugins/FloatingLinkEditorPlugin/index.js +280 -0
- package/lib/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +7 -0
- package/lib/plugins/FloatingTextFormatToolbarPlugin/index.js +219 -0
- package/lib/plugins/ImagesPlugin/index.d.ts +24 -0
- package/lib/plugins/ImagesPlugin/index.js +195 -0
- package/lib/plugins/InlineImagePlugin/index.d.ts +17 -0
- package/lib/plugins/InlineImagePlugin/index.js +180 -0
- package/lib/plugins/KeywordsPlugin/index.d.ts +2 -0
- package/lib/plugins/KeywordsPlugin/index.js +35 -0
- package/lib/plugins/LayoutPlugin/InsertLayoutDialog.d.ts +6 -0
- package/lib/plugins/LayoutPlugin/InsertLayoutDialog.js +21 -0
- package/lib/plugins/LayoutPlugin/LayoutPlugin.d.ts +7 -0
- package/lib/plugins/LayoutPlugin/LayoutPlugin.js +135 -0
- package/lib/plugins/LinkPlugin/index.d.ts +6 -0
- package/lib/plugins/LinkPlugin/index.js +11 -0
- package/lib/plugins/MarkdownShortcutPlugin/index.d.ts +2 -0
- package/lib/plugins/MarkdownShortcutPlugin/index.js +6 -0
- package/lib/plugins/MarkdownTransformers/index.d.ts +8 -0
- package/lib/plugins/MarkdownTransformers/index.js +238 -0
- package/lib/plugins/MaxLengthPlugin/index.d.ts +3 -0
- package/lib/plugins/MaxLengthPlugin/index.js +41 -0
- package/lib/plugins/MentionsPlugin/index.d.ts +2 -0
- package/lib/plugins/MentionsPlugin/index.js +564 -0
- package/lib/plugins/PageBreakPlugin/index.d.ts +4 -0
- package/lib/plugins/PageBreakPlugin/index.js +31 -0
- package/lib/plugins/PasteLogPlugin/index.d.ts +2 -0
- package/lib/plugins/PasteLogPlugin/index.js +27 -0
- package/lib/plugins/PollPlugin/index.d.ts +8 -0
- package/lib/plugins/PollPlugin/index.js +38 -0
- package/lib/plugins/ShortcutsPlugin/index.d.ts +6 -0
- package/lib/plugins/ShortcutsPlugin/index.js +116 -0
- package/lib/plugins/ShortcutsPlugin/shortcuts.d.ts +59 -0
- package/lib/plugins/ShortcutsPlugin/shortcuts.js +173 -0
- package/lib/plugins/SpecialTextPlugin/index.d.ts +2 -0
- package/lib/plugins/SpecialTextPlugin/index.js +50 -0
- package/lib/plugins/SpeechToTextPlugin/index.d.ts +5 -0
- package/lib/plugins/SpeechToTextPlugin/index.js +86 -0
- package/lib/plugins/StickyPlugin/index.d.ts +2 -0
- package/lib/plugins/StickyPlugin/index.js +16 -0
- package/lib/plugins/TabFocusPlugin/index.d.ts +1 -0
- package/lib/plugins/TabFocusPlugin/index.js +38 -0
- package/lib/plugins/TableActionMenuPlugin/index.d.ts +5 -0
- package/lib/plugins/TableActionMenuPlugin/index.js +492 -0
- package/lib/plugins/TableCellResizer/index.d.ts +3 -0
- package/lib/plugins/TableCellResizer/index.js +297 -0
- package/lib/plugins/TableHoverActionsPlugin/index.d.ts +4 -0
- package/lib/plugins/TableHoverActionsPlugin/index.js +188 -0
- package/lib/plugins/TableOfContentsPlugin/index.d.ts +2 -0
- package/lib/plugins/TableOfContentsPlugin/index.js +116 -0
- package/lib/plugins/TablePlugin.d.ts +31 -0
- package/lib/plugins/TablePlugin.js +63 -0
- package/lib/plugins/TestRecorderPlugin/index.d.ts +3 -0
- package/lib/plugins/TestRecorderPlugin/index.js +346 -0
- package/lib/plugins/ToolbarPlugin/fontSize.d.ts +9 -0
- package/lib/plugins/ToolbarPlugin/fontSize.js +84 -0
- package/lib/plugins/ToolbarPlugin/index.d.ts +9 -0
- package/lib/plugins/ToolbarPlugin/index.js +500 -0
- package/lib/plugins/ToolbarPlugin/utils.d.ts +26 -0
- package/lib/plugins/ToolbarPlugin/utils.js +247 -0
- package/lib/plugins/TreeViewPlugin/index.d.ts +2 -0
- package/lib/plugins/TreeViewPlugin/index.js +7 -0
- package/lib/plugins/TwitterPlugin/index.d.ts +4 -0
- package/lib/plugins/TwitterPlugin/index.js +24 -0
- package/lib/plugins/TypingPerfPlugin/index.d.ts +2 -0
- package/lib/plugins/TypingPerfPlugin/index.js +97 -0
- package/lib/plugins/YouTubePlugin/index.d.ts +4 -0
- package/lib/plugins/YouTubePlugin/index.js +24 -0
- package/lib/server/validation.d.ts +1 -0
- package/lib/server/validation.js +115 -0
- package/lib/setupEnv.d.ts +2 -0
- package/lib/setupEnv.js +29 -0
- package/lib/themes/CommentEditorTheme.d.ts +4 -0
- package/lib/themes/CommentEditorTheme.js +11 -0
- package/lib/themes/PlaygroundEditorTheme.d.ts +4 -0
- package/lib/themes/PlaygroundEditorTheme.js +124 -0
- package/lib/themes/StickyEditorTheme.d.ts +4 -0
- package/lib/themes/StickyEditorTheme.js +11 -0
- package/lib/tyes.dt.d.ts +12 -0
- package/lib/tyes.dt.js +4 -0
- package/lib/ui/Button.d.ts +12 -0
- package/lib/ui/Button.js +6 -0
- package/lib/ui/ColorPicker.d.ts +14 -0
- package/lib/ui/ColorPicker.js +219 -0
- package/lib/ui/ContentEditable.d.ts +9 -0
- package/lib/ui/ContentEditable.js +6 -0
- package/lib/ui/Dialog.d.ts +10 -0
- package/lib/ui/Dialog.js +8 -0
- package/lib/ui/DropDown.d.ts +18 -0
- package/lib/ui/DropDown.js +133 -0
- package/lib/ui/DropdownColorPicker.d.ts +13 -0
- package/lib/ui/DropdownColorPicker.js +6 -0
- package/lib/ui/EquationEditor.d.ts +8 -0
- package/lib/ui/EquationEditor.js +11 -0
- package/lib/ui/ExcalidrawModal.d.ts +42 -0
- package/lib/ui/ExcalidrawModal.js +103 -0
- package/lib/ui/FileInput.d.ts +10 -0
- package/lib/ui/FileInput.js +5 -0
- package/lib/ui/FlashMessage.d.ts +7 -0
- package/lib/ui/FlashMessage.js +6 -0
- package/lib/ui/ImageResizer.d.ts +17 -0
- package/lib/ui/ImageResizer.js +171 -0
- package/lib/ui/KatexEquationAlterer.d.ts +8 -0
- package/lib/ui/KatexEquationAlterer.js +23 -0
- package/lib/ui/KatexRenderer.d.ts +6 -0
- package/lib/ui/KatexRenderer.js +24 -0
- package/lib/ui/Modal.d.ts +9 -0
- package/lib/ui/Modal.js +48 -0
- package/lib/ui/Select.d.ts +8 -0
- package/lib/ui/Select.js +5 -0
- package/lib/ui/Switch.d.ts +8 -0
- package/lib/ui/Switch.js +6 -0
- package/lib/ui/TextInput.d.ts +13 -0
- package/lib/ui/TextInput.js +7 -0
- package/lib/utils/docSerialization.d.ts +3 -0
- package/lib/utils/docSerialization.js +60 -0
- package/lib/utils/emoji-list.d.ts +20 -0
- package/lib/utils/emoji-list.js +16609 -0
- package/lib/utils/getDOMRangeRect.d.ts +8 -0
- package/lib/utils/getDOMRangeRect.js +26 -0
- package/lib/utils/getSelectedNode.d.ts +2 -0
- package/lib/utils/getSelectedNode.js +28 -0
- package/lib/utils/getThemeSelector.d.ts +2 -0
- package/lib/utils/getThemeSelector.js +14 -0
- package/lib/utils/isMobileWidth.d.ts +7 -0
- package/lib/utils/isMobileWidth.js +11 -0
- package/lib/utils/joinClasses.d.ts +1 -0
- package/lib/utils/joinClasses.js +7 -0
- package/lib/utils/setFloatingElemPosition.d.ts +1 -0
- package/lib/utils/setFloatingElemPosition.js +59 -0
- package/lib/utils/setFloatingElemPositionForLinkEditor.d.ts +1 -0
- package/lib/utils/setFloatingElemPositionForLinkEditor.js +36 -0
- package/lib/utils/swipe.d.ts +4 -0
- package/lib/utils/swipe.js +94 -0
- package/lib/utils/url.d.ts +2 -0
- package/lib/utils/url.js +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
+
import { $isCodeNode, getCodeLanguageOptions as getCodeLanguageOptionsPrism, normalizeCodeLanguage as normalizeCodeLanguagePrism, } from '@lexical/code';
|
|
3
|
+
import { getCodeLanguageOptions as getCodeLanguageOptionsShiki, getCodeThemeOptions as getCodeThemeOptionsShiki, normalizeCodeLanguage as normalizeCodeLanguageShiki, } from '@lexical/code-shiki';
|
|
4
|
+
import { $isLinkNode, TOGGLE_LINK_COMMAND } from '@lexical/link';
|
|
5
|
+
import { $isListNode, ListNode } from '@lexical/list';
|
|
6
|
+
import { INSERT_EMBED_COMMAND } from '@lexical/react/LexicalAutoEmbedPlugin';
|
|
7
|
+
import { INSERT_HORIZONTAL_RULE_COMMAND } from '@lexical/react/LexicalHorizontalRuleNode';
|
|
8
|
+
import { $isHeadingNode } from '@lexical/rich-text';
|
|
9
|
+
import { $getSelectionStyleValueForProperty, $isParentElementRTL, $patchStyleText, } from '@lexical/selection';
|
|
10
|
+
import { $isTableNode, $isTableSelection } from '@lexical/table';
|
|
11
|
+
import { $findMatchingParent, $getNearestNodeOfType, $isEditorIsNestedEditor, IS_APPLE, mergeRegister, } from '@lexical/utils';
|
|
12
|
+
import { $getNodeByKey, $getRoot, $getSelection, $isElementNode, $isNodeSelection, $isRangeSelection, $isRootOrShadowRoot, CAN_REDO_COMMAND, CAN_UNDO_COMMAND, COMMAND_PRIORITY_CRITICAL, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, HISTORIC_TAG, INDENT_CONTENT_COMMAND, OUTDENT_CONTENT_COMMAND, REDO_COMMAND, SELECTION_CHANGE_COMMAND, UNDO_COMMAND, } from 'lexical';
|
|
13
|
+
import { useCallback, useEffect, useState } from 'react';
|
|
14
|
+
import { useSettings } from '../../context/SettingsContext';
|
|
15
|
+
import { blockTypeToBlockName, useToolbarState, } from '../../context/ToolbarContext';
|
|
16
|
+
import useModal from '../../hooks/useModal';
|
|
17
|
+
import { $createStickyNode } from '../../nodes/StickyNode';
|
|
18
|
+
import DropDown, { DropDownItem } from '../../ui/DropDown';
|
|
19
|
+
import DropdownColorPicker from '../../ui/DropdownColorPicker';
|
|
20
|
+
import { getSelectedNode } from '../../utils/getSelectedNode';
|
|
21
|
+
import { sanitizeUrl } from '../../utils/url';
|
|
22
|
+
import { EmbedConfigs } from '../AutoEmbedPlugin';
|
|
23
|
+
import { INSERT_COLLAPSIBLE_COMMAND } from '../CollapsiblePlugin';
|
|
24
|
+
import { INSERT_COUNTER_COMMAND } from '../CounterPlugin';
|
|
25
|
+
import { INSERT_DATETIME_COMMAND } from '../DateTimePlugin';
|
|
26
|
+
import { InsertEquationDialog } from '../EquationsPlugin';
|
|
27
|
+
import { INSERT_EXCALIDRAW_COMMAND } from '../ExcalidrawPlugin';
|
|
28
|
+
import { INSERT_IMAGE_COMMAND, InsertImageDialog, } from '../ImagesPlugin';
|
|
29
|
+
import { InsertInlineImageDialog } from '../InlineImagePlugin';
|
|
30
|
+
import InsertLayoutDialog from '../LayoutPlugin/InsertLayoutDialog';
|
|
31
|
+
import { INSERT_PAGE_BREAK } from '../PageBreakPlugin';
|
|
32
|
+
import { InsertPollDialog } from '../PollPlugin';
|
|
33
|
+
import { SHORTCUTS } from '../ShortcutsPlugin/shortcuts';
|
|
34
|
+
import { InsertTableDialog } from '../TablePlugin';
|
|
35
|
+
import FontSize, { parseFontSizeForToolbar } from './fontSize';
|
|
36
|
+
import { clearFormatting, formatBulletList, formatCheckList, formatCode, formatHeading, formatNumberedList, formatParagraph, formatQuote, } from './utils';
|
|
37
|
+
import catTypingGif from '../../images/cat-typing.gif';
|
|
38
|
+
const rootTypeToRootName = {
|
|
39
|
+
root: 'Root',
|
|
40
|
+
table: 'Table',
|
|
41
|
+
};
|
|
42
|
+
const CODE_LANGUAGE_OPTIONS_PRISM = getCodeLanguageOptionsPrism().filter((option) => [
|
|
43
|
+
'c',
|
|
44
|
+
'clike',
|
|
45
|
+
'cpp',
|
|
46
|
+
'css',
|
|
47
|
+
'html',
|
|
48
|
+
'java',
|
|
49
|
+
'js',
|
|
50
|
+
'javascript',
|
|
51
|
+
'markdown',
|
|
52
|
+
'objc',
|
|
53
|
+
'objective-c',
|
|
54
|
+
'plain',
|
|
55
|
+
'powershell',
|
|
56
|
+
'py',
|
|
57
|
+
'python',
|
|
58
|
+
'rust',
|
|
59
|
+
'sql',
|
|
60
|
+
'swift',
|
|
61
|
+
'typescript',
|
|
62
|
+
'xml',
|
|
63
|
+
].includes(option[0]));
|
|
64
|
+
const CODE_LANGUAGE_OPTIONS_SHIKI = getCodeLanguageOptionsShiki().filter((option) => [
|
|
65
|
+
'c',
|
|
66
|
+
'clike',
|
|
67
|
+
'cpp',
|
|
68
|
+
'css',
|
|
69
|
+
'html',
|
|
70
|
+
'java',
|
|
71
|
+
'js',
|
|
72
|
+
'javascript',
|
|
73
|
+
'markdown',
|
|
74
|
+
'objc',
|
|
75
|
+
'objective-c',
|
|
76
|
+
'plain',
|
|
77
|
+
'powershell',
|
|
78
|
+
'py',
|
|
79
|
+
'python',
|
|
80
|
+
'rust',
|
|
81
|
+
'sql',
|
|
82
|
+
'typescript',
|
|
83
|
+
'xml',
|
|
84
|
+
].includes(option[0]));
|
|
85
|
+
const CODE_THEME_OPTIONS_SHIKI = getCodeThemeOptionsShiki().filter((option) => [
|
|
86
|
+
'catppuccin-latte',
|
|
87
|
+
'everforest-light',
|
|
88
|
+
'github-light',
|
|
89
|
+
'gruvbox-light-medium',
|
|
90
|
+
'kanagawa-lotus',
|
|
91
|
+
'dark-plus',
|
|
92
|
+
'light-plus',
|
|
93
|
+
'material-theme-lighter',
|
|
94
|
+
'min-light',
|
|
95
|
+
'one-light',
|
|
96
|
+
'rose-pine-dawn',
|
|
97
|
+
'slack-ochin',
|
|
98
|
+
'snazzy-light',
|
|
99
|
+
'solarized-light',
|
|
100
|
+
'vitesse-light',
|
|
101
|
+
].includes(option[0]));
|
|
102
|
+
const FONT_FAMILY_OPTIONS = [
|
|
103
|
+
['Arial', 'Arial'],
|
|
104
|
+
['Courier New', 'Courier New'],
|
|
105
|
+
['Georgia', 'Georgia'],
|
|
106
|
+
['Times New Roman', 'Times New Roman'],
|
|
107
|
+
['Trebuchet MS', 'Trebuchet MS'],
|
|
108
|
+
['Verdana', 'Verdana'],
|
|
109
|
+
];
|
|
110
|
+
const FONT_SIZE_OPTIONS = [
|
|
111
|
+
['10px', '10px'],
|
|
112
|
+
['11px', '11px'],
|
|
113
|
+
['12px', '12px'],
|
|
114
|
+
['13px', '13px'],
|
|
115
|
+
['14px', '14px'],
|
|
116
|
+
['15px', '15px'],
|
|
117
|
+
['16px', '16px'],
|
|
118
|
+
['17px', '17px'],
|
|
119
|
+
['18px', '18px'],
|
|
120
|
+
['19px', '19px'],
|
|
121
|
+
['20px', '20px'],
|
|
122
|
+
];
|
|
123
|
+
const ELEMENT_FORMAT_OPTIONS = {
|
|
124
|
+
center: {
|
|
125
|
+
icon: 'center-align',
|
|
126
|
+
iconRTL: 'center-align',
|
|
127
|
+
name: 'Center Align',
|
|
128
|
+
},
|
|
129
|
+
end: {
|
|
130
|
+
icon: 'right-align',
|
|
131
|
+
iconRTL: 'left-align',
|
|
132
|
+
name: 'End Align',
|
|
133
|
+
},
|
|
134
|
+
justify: {
|
|
135
|
+
icon: 'justify-align',
|
|
136
|
+
iconRTL: 'justify-align',
|
|
137
|
+
name: 'Justify Align',
|
|
138
|
+
},
|
|
139
|
+
left: {
|
|
140
|
+
icon: 'left-align',
|
|
141
|
+
iconRTL: 'left-align',
|
|
142
|
+
name: 'Left Align',
|
|
143
|
+
},
|
|
144
|
+
right: {
|
|
145
|
+
icon: 'right-align',
|
|
146
|
+
iconRTL: 'right-align',
|
|
147
|
+
name: 'Right Align',
|
|
148
|
+
},
|
|
149
|
+
start: {
|
|
150
|
+
icon: 'left-align',
|
|
151
|
+
iconRTL: 'right-align',
|
|
152
|
+
name: 'Start Align',
|
|
153
|
+
},
|
|
154
|
+
};
|
|
155
|
+
function dropDownActiveClass(active) {
|
|
156
|
+
if (active) {
|
|
157
|
+
return 'active dropdown-item-active';
|
|
158
|
+
}
|
|
159
|
+
else {
|
|
160
|
+
return '';
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
function BlockFormatDropDown({ editor, blockType, rootType, disabled = false, }) {
|
|
164
|
+
return (_jsxs(DropDown, { disabled: disabled, buttonClassName: "toolbar-item block-controls", buttonIconClassName: 'icon block-type ' + blockType, buttonLabel: blockTypeToBlockName[blockType], buttonAriaLabel: "Formatting options for text style", children: [_jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'paragraph'), onClick: () => formatParagraph(editor), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon paragraph" }), _jsx("span", { className: "text", children: "Normal" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.NORMAL })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'h1'), onClick: () => formatHeading(editor, blockType, 'h1'), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon h1" }), _jsx("span", { className: "text", children: "Heading 1" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.HEADING1 })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'h2'), onClick: () => formatHeading(editor, blockType, 'h2'), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon h2" }), _jsx("span", { className: "text", children: "Heading 2" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.HEADING2 })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'h3'), onClick: () => formatHeading(editor, blockType, 'h3'), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon h3" }), _jsx("span", { className: "text", children: "Heading 3" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.HEADING3 })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'number'), onClick: () => formatNumberedList(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon numbered-list" }), _jsx("span", { className: "text", children: "Numbered List" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.NUMBERED_LIST })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'bullet'), onClick: () => formatBulletList(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon bullet-list" }), _jsx("span", { className: "text", children: "Bullet List" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.BULLET_LIST })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'check'), onClick: () => formatCheckList(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon check-list" }), _jsx("span", { className: "text", children: "Check List" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CHECK_LIST })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'quote'), onClick: () => formatQuote(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon quote" }), _jsx("span", { className: "text", children: "Quote" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.QUOTE })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'code'), onClick: () => formatCode(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon code" }), _jsx("span", { className: "text", children: "Code Block" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CODE_BLOCK })] })] }));
|
|
165
|
+
}
|
|
166
|
+
function Divider() {
|
|
167
|
+
return _jsx("div", { className: "divider" });
|
|
168
|
+
}
|
|
169
|
+
function FontDropDown({ editor, value, style, disabled = false, }) {
|
|
170
|
+
const handleClick = useCallback((option) => {
|
|
171
|
+
editor.update(() => {
|
|
172
|
+
const selection = $getSelection();
|
|
173
|
+
if (selection !== null) {
|
|
174
|
+
$patchStyleText(selection, {
|
|
175
|
+
[style]: option,
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
});
|
|
179
|
+
}, [editor, style]);
|
|
180
|
+
const buttonAriaLabel = style === 'font-family'
|
|
181
|
+
? 'Formatting options for font family'
|
|
182
|
+
: 'Formatting options for font size';
|
|
183
|
+
return (_jsx(DropDown, { disabled: disabled, buttonClassName: 'toolbar-item ' + style, buttonLabel: value, buttonIconClassName: style === 'font-family' ? 'icon block-type font-family' : '', buttonAriaLabel: buttonAriaLabel, children: (style === 'font-family' ? FONT_FAMILY_OPTIONS : FONT_SIZE_OPTIONS).map(([option, text]) => (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === option)} ${style === 'font-size' ? 'fontsize-item' : ''}`, onClick: () => handleClick(option), children: _jsx("span", { className: "text", children: text }) }, option))) }));
|
|
184
|
+
}
|
|
185
|
+
function ElementFormatDropdown({ editor, value, isRTL, disabled = false, }) {
|
|
186
|
+
const formatOption = ELEMENT_FORMAT_OPTIONS[value || 'left'];
|
|
187
|
+
return (_jsxs(DropDown, { disabled: disabled, buttonLabel: formatOption.name, buttonIconClassName: `icon ${isRTL ? formatOption.iconRTL : formatOption.icon}`, buttonClassName: "toolbar-item spaced alignment", buttonAriaLabel: "Formatting options for text alignment", children: [_jsxs(DropDownItem, { onClick: () => {
|
|
188
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'left');
|
|
189
|
+
}, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon left-align" }), _jsx("span", { className: "text", children: "Left Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.LEFT_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
190
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'center');
|
|
191
|
+
}, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon center-align" }), _jsx("span", { className: "text", children: "Center Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CENTER_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
192
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'right');
|
|
193
|
+
}, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon right-align" }), _jsx("span", { className: "text", children: "Right Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.RIGHT_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
194
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'justify');
|
|
195
|
+
}, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon justify-align" }), _jsx("span", { className: "text", children: "Justify Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.JUSTIFY_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
196
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'start');
|
|
197
|
+
}, className: "item wide", children: [_jsx("i", { className: `icon ${isRTL
|
|
198
|
+
? ELEMENT_FORMAT_OPTIONS.start.iconRTL
|
|
199
|
+
: ELEMENT_FORMAT_OPTIONS.start.icon}` }), _jsx("span", { className: "text", children: "Start Align" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
200
|
+
editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'end');
|
|
201
|
+
}, className: "item wide", children: [_jsx("i", { className: `icon ${isRTL
|
|
202
|
+
? ELEMENT_FORMAT_OPTIONS.end.iconRTL
|
|
203
|
+
: ELEMENT_FORMAT_OPTIONS.end.icon}` }), _jsx("span", { className: "text", children: "End Align" })] }), _jsx(Divider, {}), _jsxs(DropDownItem, { onClick: () => {
|
|
204
|
+
editor.dispatchCommand(OUTDENT_CONTENT_COMMAND, undefined);
|
|
205
|
+
}, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: 'icon ' + (isRTL ? 'indent' : 'outdent') }), _jsx("span", { className: "text", children: "Outdent" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.OUTDENT })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
206
|
+
editor.dispatchCommand(INDENT_CONTENT_COMMAND, undefined);
|
|
207
|
+
}, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: 'icon ' + (isRTL ? 'outdent' : 'indent') }), _jsx("span", { className: "text", children: "Indent" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.INDENT })] })] }));
|
|
208
|
+
}
|
|
209
|
+
function $findTopLevelElement(node) {
|
|
210
|
+
let topLevelElement = node.getKey() === 'root'
|
|
211
|
+
? node
|
|
212
|
+
: $findMatchingParent(node, (e) => {
|
|
213
|
+
const parent = e.getParent();
|
|
214
|
+
return parent !== null && $isRootOrShadowRoot(parent);
|
|
215
|
+
});
|
|
216
|
+
if (topLevelElement === null) {
|
|
217
|
+
topLevelElement = node.getTopLevelElementOrThrow();
|
|
218
|
+
}
|
|
219
|
+
return topLevelElement;
|
|
220
|
+
}
|
|
221
|
+
export default function ToolbarPlugin({ editor, activeEditor, setActiveEditor, setIsLinkEditMode, }) {
|
|
222
|
+
const [selectedElementKey, setSelectedElementKey] = useState(null);
|
|
223
|
+
const [modal, showModal] = useModal();
|
|
224
|
+
const [isEditable, setIsEditable] = useState(() => editor.isEditable());
|
|
225
|
+
const { toolbarState, updateToolbarState } = useToolbarState();
|
|
226
|
+
const $handleHeadingNode = useCallback((selectedElement) => {
|
|
227
|
+
const type = $isHeadingNode(selectedElement)
|
|
228
|
+
? selectedElement.getTag()
|
|
229
|
+
: selectedElement.getType();
|
|
230
|
+
if (type in blockTypeToBlockName) {
|
|
231
|
+
updateToolbarState('blockType', type);
|
|
232
|
+
}
|
|
233
|
+
}, [updateToolbarState]);
|
|
234
|
+
const { settings: { isCodeHighlighted, isCodeShiki }, } = useSettings();
|
|
235
|
+
const $handleCodeNode = useCallback((element) => {
|
|
236
|
+
if ($isCodeNode(element)) {
|
|
237
|
+
const language = element.getLanguage();
|
|
238
|
+
updateToolbarState('codeLanguage', language
|
|
239
|
+
? (isCodeHighlighted &&
|
|
240
|
+
(isCodeShiki
|
|
241
|
+
? normalizeCodeLanguageShiki(language)
|
|
242
|
+
: normalizeCodeLanguagePrism(language))) ||
|
|
243
|
+
language
|
|
244
|
+
: '');
|
|
245
|
+
const theme = element.getTheme();
|
|
246
|
+
updateToolbarState('codeTheme', theme || '');
|
|
247
|
+
return;
|
|
248
|
+
}
|
|
249
|
+
}, [updateToolbarState, isCodeHighlighted, isCodeShiki]);
|
|
250
|
+
const $updateToolbar = useCallback(() => {
|
|
251
|
+
const selection = $getSelection();
|
|
252
|
+
if ($isRangeSelection(selection)) {
|
|
253
|
+
if (activeEditor !== editor && $isEditorIsNestedEditor(activeEditor)) {
|
|
254
|
+
const rootElement = activeEditor.getRootElement();
|
|
255
|
+
updateToolbarState('isImageCaption', !!rootElement?.parentElement?.classList.contains('image-caption-container'));
|
|
256
|
+
}
|
|
257
|
+
else {
|
|
258
|
+
updateToolbarState('isImageCaption', false);
|
|
259
|
+
}
|
|
260
|
+
const anchorNode = selection.anchor.getNode();
|
|
261
|
+
const element = $findTopLevelElement(anchorNode);
|
|
262
|
+
const elementKey = element.getKey();
|
|
263
|
+
const elementDOM = activeEditor.getElementByKey(elementKey);
|
|
264
|
+
updateToolbarState('isRTL', $isParentElementRTL(selection));
|
|
265
|
+
// Update links
|
|
266
|
+
const node = getSelectedNode(selection);
|
|
267
|
+
const parent = node.getParent();
|
|
268
|
+
const isLink = $isLinkNode(parent) || $isLinkNode(node);
|
|
269
|
+
updateToolbarState('isLink', isLink);
|
|
270
|
+
const tableNode = $findMatchingParent(node, $isTableNode);
|
|
271
|
+
if ($isTableNode(tableNode)) {
|
|
272
|
+
updateToolbarState('rootType', 'table');
|
|
273
|
+
}
|
|
274
|
+
else {
|
|
275
|
+
updateToolbarState('rootType', 'root');
|
|
276
|
+
}
|
|
277
|
+
if (elementDOM !== null) {
|
|
278
|
+
setSelectedElementKey(elementKey);
|
|
279
|
+
if ($isListNode(element)) {
|
|
280
|
+
const parentList = $getNearestNodeOfType(anchorNode, ListNode);
|
|
281
|
+
const type = parentList
|
|
282
|
+
? parentList.getListType()
|
|
283
|
+
: element.getListType();
|
|
284
|
+
updateToolbarState('blockType', type);
|
|
285
|
+
}
|
|
286
|
+
else {
|
|
287
|
+
$handleHeadingNode(element);
|
|
288
|
+
$handleCodeNode(element);
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
// Handle buttons
|
|
292
|
+
updateToolbarState('fontColor', $getSelectionStyleValueForProperty(selection, 'color', '#000'));
|
|
293
|
+
updateToolbarState('bgColor', $getSelectionStyleValueForProperty(selection, 'background-color', '#fff'));
|
|
294
|
+
updateToolbarState('fontFamily', $getSelectionStyleValueForProperty(selection, 'font-family', 'Arial'));
|
|
295
|
+
let matchingParent;
|
|
296
|
+
if ($isLinkNode(parent)) {
|
|
297
|
+
// If node is a link, we need to fetch the parent paragraph node to set format
|
|
298
|
+
matchingParent = $findMatchingParent(node, (parentNode) => $isElementNode(parentNode) && !parentNode.isInline());
|
|
299
|
+
}
|
|
300
|
+
// If matchingParent is a valid node, pass it's format type
|
|
301
|
+
updateToolbarState('elementFormat', $isElementNode(matchingParent)
|
|
302
|
+
? matchingParent.getFormatType()
|
|
303
|
+
: $isElementNode(node)
|
|
304
|
+
? node.getFormatType()
|
|
305
|
+
: parent?.getFormatType() || 'left');
|
|
306
|
+
}
|
|
307
|
+
if ($isRangeSelection(selection) || $isTableSelection(selection)) {
|
|
308
|
+
// Update text format
|
|
309
|
+
updateToolbarState('isBold', selection.hasFormat('bold'));
|
|
310
|
+
updateToolbarState('isItalic', selection.hasFormat('italic'));
|
|
311
|
+
updateToolbarState('isUnderline', selection.hasFormat('underline'));
|
|
312
|
+
updateToolbarState('isStrikethrough', selection.hasFormat('strikethrough'));
|
|
313
|
+
updateToolbarState('isSubscript', selection.hasFormat('subscript'));
|
|
314
|
+
updateToolbarState('isSuperscript', selection.hasFormat('superscript'));
|
|
315
|
+
updateToolbarState('isHighlight', selection.hasFormat('highlight'));
|
|
316
|
+
updateToolbarState('isCode', selection.hasFormat('code'));
|
|
317
|
+
updateToolbarState('fontSize', $getSelectionStyleValueForProperty(selection, 'font-size', '15px'));
|
|
318
|
+
updateToolbarState('isLowercase', selection.hasFormat('lowercase'));
|
|
319
|
+
updateToolbarState('isUppercase', selection.hasFormat('uppercase'));
|
|
320
|
+
updateToolbarState('isCapitalize', selection.hasFormat('capitalize'));
|
|
321
|
+
}
|
|
322
|
+
if ($isNodeSelection(selection)) {
|
|
323
|
+
const nodes = selection.getNodes();
|
|
324
|
+
for (const selectedNode of nodes) {
|
|
325
|
+
const parentList = $getNearestNodeOfType(selectedNode, ListNode);
|
|
326
|
+
if (parentList) {
|
|
327
|
+
const type = parentList.getListType();
|
|
328
|
+
updateToolbarState('blockType', type);
|
|
329
|
+
}
|
|
330
|
+
else {
|
|
331
|
+
const selectedElement = $findTopLevelElement(selectedNode);
|
|
332
|
+
$handleHeadingNode(selectedElement);
|
|
333
|
+
$handleCodeNode(selectedElement);
|
|
334
|
+
// Update elementFormat for node selection (e.g., images)
|
|
335
|
+
if ($isElementNode(selectedElement)) {
|
|
336
|
+
updateToolbarState('elementFormat', selectedElement.getFormatType());
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}, [
|
|
342
|
+
activeEditor,
|
|
343
|
+
editor,
|
|
344
|
+
updateToolbarState,
|
|
345
|
+
$handleHeadingNode,
|
|
346
|
+
$handleCodeNode,
|
|
347
|
+
]);
|
|
348
|
+
useEffect(() => {
|
|
349
|
+
return editor.registerCommand(SELECTION_CHANGE_COMMAND, (_payload, newEditor) => {
|
|
350
|
+
setActiveEditor(newEditor);
|
|
351
|
+
$updateToolbar();
|
|
352
|
+
return false;
|
|
353
|
+
}, COMMAND_PRIORITY_CRITICAL);
|
|
354
|
+
}, [editor, $updateToolbar, setActiveEditor]);
|
|
355
|
+
useEffect(() => {
|
|
356
|
+
activeEditor.getEditorState().read(() => {
|
|
357
|
+
$updateToolbar();
|
|
358
|
+
}, { editor: activeEditor });
|
|
359
|
+
}, [activeEditor, $updateToolbar]);
|
|
360
|
+
useEffect(() => {
|
|
361
|
+
return mergeRegister(editor.registerEditableListener((editable) => {
|
|
362
|
+
setIsEditable(editable);
|
|
363
|
+
}), activeEditor.registerUpdateListener(({ editorState }) => {
|
|
364
|
+
editorState.read(() => {
|
|
365
|
+
$updateToolbar();
|
|
366
|
+
}, { editor: activeEditor });
|
|
367
|
+
}), activeEditor.registerCommand(CAN_UNDO_COMMAND, (payload) => {
|
|
368
|
+
updateToolbarState('canUndo', payload);
|
|
369
|
+
return false;
|
|
370
|
+
}, COMMAND_PRIORITY_CRITICAL), activeEditor.registerCommand(CAN_REDO_COMMAND, (payload) => {
|
|
371
|
+
updateToolbarState('canRedo', payload);
|
|
372
|
+
return false;
|
|
373
|
+
}, COMMAND_PRIORITY_CRITICAL));
|
|
374
|
+
}, [$updateToolbar, activeEditor, editor, updateToolbarState]);
|
|
375
|
+
const applyStyleText = useCallback((styles, skipHistoryStack) => {
|
|
376
|
+
activeEditor.update(() => {
|
|
377
|
+
const selection = $getSelection();
|
|
378
|
+
if (selection !== null) {
|
|
379
|
+
$patchStyleText(selection, styles);
|
|
380
|
+
}
|
|
381
|
+
}, skipHistoryStack ? { tag: HISTORIC_TAG } : {});
|
|
382
|
+
}, [activeEditor]);
|
|
383
|
+
const onFontColorSelect = useCallback((value, skipHistoryStack) => {
|
|
384
|
+
applyStyleText({ color: value }, skipHistoryStack);
|
|
385
|
+
}, [applyStyleText]);
|
|
386
|
+
const onBgColorSelect = useCallback((value, skipHistoryStack) => {
|
|
387
|
+
applyStyleText({ 'background-color': value }, skipHistoryStack);
|
|
388
|
+
}, [applyStyleText]);
|
|
389
|
+
const insertLink = useCallback(() => {
|
|
390
|
+
if (!toolbarState.isLink) {
|
|
391
|
+
setIsLinkEditMode(true);
|
|
392
|
+
activeEditor.dispatchCommand(TOGGLE_LINK_COMMAND, sanitizeUrl('https://'));
|
|
393
|
+
}
|
|
394
|
+
else {
|
|
395
|
+
setIsLinkEditMode(false);
|
|
396
|
+
activeEditor.dispatchCommand(TOGGLE_LINK_COMMAND, null);
|
|
397
|
+
}
|
|
398
|
+
}, [activeEditor, setIsLinkEditMode, toolbarState.isLink]);
|
|
399
|
+
const onCodeLanguageSelect = useCallback((value) => {
|
|
400
|
+
activeEditor.update(() => {
|
|
401
|
+
if (selectedElementKey !== null) {
|
|
402
|
+
const node = $getNodeByKey(selectedElementKey);
|
|
403
|
+
if ($isCodeNode(node)) {
|
|
404
|
+
node.setLanguage(value);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
});
|
|
408
|
+
}, [activeEditor, selectedElementKey]);
|
|
409
|
+
const onCodeThemeSelect = useCallback((value) => {
|
|
410
|
+
activeEditor.update(() => {
|
|
411
|
+
if (selectedElementKey !== null) {
|
|
412
|
+
const node = $getNodeByKey(selectedElementKey);
|
|
413
|
+
if ($isCodeNode(node)) {
|
|
414
|
+
node.setTheme(value);
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
});
|
|
418
|
+
}, [activeEditor, selectedElementKey]);
|
|
419
|
+
const insertGifOnClick = (payload) => {
|
|
420
|
+
activeEditor.dispatchCommand(INSERT_IMAGE_COMMAND, payload);
|
|
421
|
+
};
|
|
422
|
+
const canViewerSeeInsertDropdown = !toolbarState.isImageCaption;
|
|
423
|
+
const canViewerSeeInsertCodeButton = !toolbarState.isImageCaption;
|
|
424
|
+
return (_jsxs("div", { className: "toolbar", children: [_jsx("button", { disabled: !toolbarState.canUndo || !isEditable, onClick: () => {
|
|
425
|
+
activeEditor.dispatchCommand(UNDO_COMMAND, undefined);
|
|
426
|
+
}, title: IS_APPLE ? 'Undo (⌘Z)' : 'Undo (Ctrl+Z)', type: "button", className: "toolbar-item spaced", "aria-label": "Undo", children: _jsx("i", { className: "format undo" }) }), _jsx("button", { disabled: !toolbarState.canRedo || !isEditable, onClick: () => {
|
|
427
|
+
activeEditor.dispatchCommand(REDO_COMMAND, undefined);
|
|
428
|
+
}, title: IS_APPLE ? 'Redo (⇧⌘Z)' : 'Redo (Ctrl+Y)', type: "button", className: "toolbar-item", "aria-label": "Redo", children: _jsx("i", { className: "format redo" }) }), _jsx(Divider, {}), toolbarState.blockType in blockTypeToBlockName &&
|
|
429
|
+
activeEditor === editor && (_jsxs(_Fragment, { children: [_jsx(BlockFormatDropDown, { disabled: !isEditable, blockType: toolbarState.blockType, rootType: toolbarState.rootType, editor: activeEditor }), _jsx(Divider, {})] })), toolbarState.blockType === 'code' && isCodeHighlighted ? (_jsxs(_Fragment, { children: [!isCodeShiki && (_jsx(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item code-language", buttonLabel: (CODE_LANGUAGE_OPTIONS_PRISM.find((opt) => opt[0] ===
|
|
430
|
+
normalizeCodeLanguagePrism(toolbarState.codeLanguage)) || ['', ''])[1], buttonAriaLabel: "Select language", children: CODE_LANGUAGE_OPTIONS_PRISM.map(([value, name]) => {
|
|
431
|
+
return (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === toolbarState.codeLanguage)}`, onClick: () => onCodeLanguageSelect(value), children: _jsx("span", { className: "text", children: name }) }, value));
|
|
432
|
+
}) })), isCodeShiki && (_jsxs(_Fragment, { children: [_jsx(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item code-language", buttonLabel: (CODE_LANGUAGE_OPTIONS_SHIKI.find((opt) => opt[0] ===
|
|
433
|
+
normalizeCodeLanguageShiki(toolbarState.codeLanguage)) || ['', ''])[1], buttonAriaLabel: "Select language", children: CODE_LANGUAGE_OPTIONS_SHIKI.map(([value, name]) => {
|
|
434
|
+
return (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === toolbarState.codeLanguage)}`, onClick: () => onCodeLanguageSelect(value), children: _jsx("span", { className: "text", children: name }) }, value));
|
|
435
|
+
}) }), _jsx(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item code-language", buttonLabel: (CODE_THEME_OPTIONS_SHIKI.find((opt) => opt[0] === toolbarState.codeTheme) || ['', ''])[1], buttonAriaLabel: "Select theme", children: CODE_THEME_OPTIONS_SHIKI.map(([value, name]) => {
|
|
436
|
+
return (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === toolbarState.codeTheme)}`, onClick: () => onCodeThemeSelect(value), children: _jsx("span", { className: "text", children: name }) }, value));
|
|
437
|
+
}) })] }))] })) : (_jsxs(_Fragment, { children: [_jsx(FontDropDown, { disabled: !isEditable, style: 'font-family', value: toolbarState.fontFamily, editor: activeEditor }), _jsx(Divider, {}), _jsx(FontSize, { selectionFontSize: parseFontSizeForToolbar(toolbarState.fontSize).slice(0, -2), editor: activeEditor, disabled: !isEditable }), _jsx(Divider, {}), _jsx("button", { disabled: !isEditable, onClick: () => {
|
|
438
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'bold');
|
|
439
|
+
}, className: 'toolbar-item spaced ' + (toolbarState.isBold ? 'active' : ''), title: `Bold (${SHORTCUTS.BOLD})`, type: "button", "aria-label": `Format text as bold. Shortcut: ${SHORTCUTS.BOLD}`, children: _jsx("i", { className: "format bold" }) }), _jsx("button", { disabled: !isEditable, onClick: () => {
|
|
440
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'italic');
|
|
441
|
+
}, className: 'toolbar-item spaced ' + (toolbarState.isItalic ? 'active' : ''), title: `Italic (${SHORTCUTS.ITALIC})`, type: "button", "aria-label": `Format text as italics. Shortcut: ${SHORTCUTS.ITALIC}`, children: _jsx("i", { className: "format italic" }) }), _jsx("button", { disabled: !isEditable, onClick: () => {
|
|
442
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'underline');
|
|
443
|
+
}, className: 'toolbar-item spaced ' +
|
|
444
|
+
(toolbarState.isUnderline ? 'active' : ''), title: `Underline (${SHORTCUTS.UNDERLINE})`, type: "button", "aria-label": `Format text to underlined. Shortcut: ${SHORTCUTS.UNDERLINE}`, children: _jsx("i", { className: "format underline" }) }), canViewerSeeInsertCodeButton && (_jsx("button", { disabled: !isEditable, onClick: () => {
|
|
445
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'code');
|
|
446
|
+
}, className: 'toolbar-item spaced ' + (toolbarState.isCode ? 'active' : ''), title: `Insert code block (${SHORTCUTS.INSERT_CODE_BLOCK})`, type: "button", "aria-label": "Insert code block", children: _jsx("i", { className: "format code" }) })), _jsx("button", { disabled: !isEditable, onClick: insertLink, className: 'toolbar-item spaced ' + (toolbarState.isLink ? 'active' : ''), "aria-label": "Insert link", title: `Insert link (${SHORTCUTS.INSERT_LINK})`, type: "button", children: _jsx("i", { className: "format link" }) }), _jsx(DropdownColorPicker, { disabled: !isEditable, buttonClassName: "toolbar-item color-picker", buttonAriaLabel: "Formatting text color", buttonIconClassName: "icon font-color", color: toolbarState.fontColor, onChange: onFontColorSelect, title: "text color" }), _jsx(DropdownColorPicker, { disabled: !isEditable, buttonClassName: "toolbar-item color-picker", buttonAriaLabel: "Formatting background color", buttonIconClassName: "icon bg-color", color: toolbarState.bgColor, onChange: onBgColorSelect, title: "bg color" }), _jsxs(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item spaced", buttonLabel: "", buttonAriaLabel: "Formatting options for additional text styles", buttonIconClassName: "icon dropdown-more", children: [_jsxs(DropDownItem, { onClick: () => {
|
|
447
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'lowercase');
|
|
448
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isLowercase), title: "Lowercase", "aria-label": "Format text to lowercase", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon lowercase" }), _jsx("span", { className: "text", children: "Lowercase" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.LOWERCASE })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
449
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'uppercase');
|
|
450
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isUppercase), title: "Uppercase", "aria-label": "Format text to uppercase", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon uppercase" }), _jsx("span", { className: "text", children: "Uppercase" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.UPPERCASE })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
451
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'capitalize');
|
|
452
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isCapitalize), title: "Capitalize", "aria-label": "Format text to capitalize", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon capitalize" }), _jsx("span", { className: "text", children: "Capitalize" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CAPITALIZE })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
453
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'strikethrough');
|
|
454
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isStrikethrough), title: "Strikethrough", "aria-label": "Format text with a strikethrough", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon strikethrough" }), _jsx("span", { className: "text", children: "Strikethrough" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.STRIKETHROUGH })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
455
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'subscript');
|
|
456
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isSubscript), title: "Subscript", "aria-label": "Format text with a subscript", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon subscript" }), _jsx("span", { className: "text", children: "Subscript" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.SUBSCRIPT })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
457
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'superscript');
|
|
458
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isSuperscript), title: "Superscript", "aria-label": "Format text with a superscript", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon superscript" }), _jsx("span", { className: "text", children: "Superscript" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.SUPERSCRIPT })] }), _jsx(DropDownItem, { onClick: () => {
|
|
459
|
+
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'highlight');
|
|
460
|
+
}, className: 'item wide ' + dropDownActiveClass(toolbarState.isHighlight), title: "Highlight", "aria-label": "Format text with a highlight", children: _jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon highlight" }), _jsx("span", { className: "text", children: "Highlight" })] }) }), _jsxs(DropDownItem, { onClick: () => clearFormatting(activeEditor), className: "item wide", title: "Clear text formatting", "aria-label": "Clear all text formatting", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon clear" }), _jsx("span", { className: "text", children: "Clear Formatting" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CLEAR_FORMATTING })] })] }), canViewerSeeInsertDropdown && (_jsxs(_Fragment, { children: [_jsx(Divider, {}), _jsxs(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item spaced", buttonLabel: "Insert", buttonAriaLabel: "Insert specialized editor node", buttonIconClassName: "icon plus", children: [_jsxs(DropDownItem, { onClick: () => {
|
|
461
|
+
activeEditor.dispatchCommand(INSERT_HORIZONTAL_RULE_COMMAND, undefined);
|
|
462
|
+
}, className: "item", children: [_jsx("i", { className: "icon horizontal-rule" }), _jsx("span", { className: "text", children: "Horizontal Rule" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
463
|
+
activeEditor.dispatchCommand(INSERT_COUNTER_COMMAND, 0);
|
|
464
|
+
}, className: "item", children: [_jsx("i", { className: "icon number" }), _jsx("span", { className: "text", children: "Counter" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
465
|
+
activeEditor.dispatchCommand(INSERT_PAGE_BREAK, undefined);
|
|
466
|
+
}, className: "item", children: [_jsx("i", { className: "icon page-break" }), _jsx("span", { className: "text", children: "Page Break" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
467
|
+
showModal('Insert Image', (onClose) => (_jsx(InsertImageDialog, { activeEditor: activeEditor, onClose: onClose })));
|
|
468
|
+
}, className: "item", children: [_jsx("i", { className: "icon image" }), _jsx("span", { className: "text", children: "Image" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
469
|
+
showModal('Insert Inline Image', (onClose) => (_jsx(InsertInlineImageDialog, { activeEditor: activeEditor, onClose: onClose })));
|
|
470
|
+
}, className: "item", children: [_jsx("i", { className: "icon image" }), _jsx("span", { className: "text", children: "Inline Image" })] }), _jsxs(DropDownItem, { onClick: () => insertGifOnClick({
|
|
471
|
+
altText: 'Cat typing on a laptop',
|
|
472
|
+
src: catTypingGif,
|
|
473
|
+
}), className: "item", children: [_jsx("i", { className: "icon gif" }), _jsx("span", { className: "text", children: "GIF" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
474
|
+
activeEditor.dispatchCommand(INSERT_EXCALIDRAW_COMMAND, undefined);
|
|
475
|
+
}, className: "item", children: [_jsx("i", { className: "icon diagram-2" }), _jsx("span", { className: "text", children: "Excalidraw" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
476
|
+
showModal('Insert Table', (onClose) => (_jsx(InsertTableDialog, { activeEditor: activeEditor, onClose: onClose })));
|
|
477
|
+
}, className: "item", children: [_jsx("i", { className: "icon table" }), _jsx("span", { className: "text", children: "Table" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
478
|
+
showModal('Insert Poll', (onClose) => (_jsx(InsertPollDialog, { activeEditor: activeEditor, onClose: onClose })));
|
|
479
|
+
}, className: "item", children: [_jsx("i", { className: "icon poll" }), _jsx("span", { className: "text", children: "Poll" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
480
|
+
showModal('Insert Columns Layout', (onClose) => (_jsx(InsertLayoutDialog, { activeEditor: activeEditor, onClose: onClose })));
|
|
481
|
+
}, className: "item", children: [_jsx("i", { className: "icon columns" }), _jsx("span", { className: "text", children: "Columns Layout" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
482
|
+
showModal('Insert Equation', (onClose) => (_jsx(InsertEquationDialog, { activeEditor: activeEditor, onClose: onClose })));
|
|
483
|
+
}, className: "item", children: [_jsx("i", { className: "icon equation" }), _jsx("span", { className: "text", children: "Equation" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
484
|
+
editor.update(() => {
|
|
485
|
+
const root = $getRoot();
|
|
486
|
+
const stickyNode = $createStickyNode(0, 0);
|
|
487
|
+
root.append(stickyNode);
|
|
488
|
+
});
|
|
489
|
+
}, className: "item", children: [_jsx("i", { className: "icon sticky" }), _jsx("span", { className: "text", children: "Sticky Note" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
490
|
+
editor.dispatchCommand(INSERT_COLLAPSIBLE_COMMAND, undefined);
|
|
491
|
+
}, className: "item", children: [_jsx("i", { className: "icon caret-right" }), _jsx("span", { className: "text", children: "Collapsible container" })] }), _jsxs(DropDownItem, { onClick: () => {
|
|
492
|
+
const dateTime = new Date();
|
|
493
|
+
dateTime.setHours(0, 0, 0, 0);
|
|
494
|
+
activeEditor.dispatchCommand(INSERT_DATETIME_COMMAND, {
|
|
495
|
+
dateTime,
|
|
496
|
+
});
|
|
497
|
+
}, className: "item", children: [_jsx("i", { className: "icon calendar" }), _jsx("span", { className: "text", children: "Date" })] }), EmbedConfigs.map((embedConfig) => (_jsxs(DropDownItem, { onClick: () => {
|
|
498
|
+
activeEditor.dispatchCommand(INSERT_EMBED_COMMAND, embedConfig.type);
|
|
499
|
+
}, className: "item", children: [embedConfig.icon, _jsx("span", { className: "text", children: embedConfig.contentName })] }, embedConfig.type)))] })] }))] })), _jsx(Divider, {}), _jsx(ElementFormatDropdown, { disabled: !isEditable, value: toolbarState.elementFormat, editor: activeEditor, isRTL: toolbarState.isRTL }), modal] }));
|
|
500
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HeadingTagType } from '@lexical/rich-text';
|
|
2
|
+
import { LexicalEditor } from 'lexical';
|
|
3
|
+
export declare enum UpdateFontSizeType {
|
|
4
|
+
increment = 1,
|
|
5
|
+
decrement = 2
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Calculates the new font size based on the update type.
|
|
9
|
+
* @param currentFontSize - The current font size
|
|
10
|
+
* @param updateType - The type of change, either increment or decrement
|
|
11
|
+
* @returns the next font size
|
|
12
|
+
*/
|
|
13
|
+
export declare const calculateNextFontSize: (currentFontSize: number, updateType: UpdateFontSizeType | null) => number;
|
|
14
|
+
/**
|
|
15
|
+
* Patches the selection with the updated font size.
|
|
16
|
+
*/
|
|
17
|
+
export declare const updateFontSizeInSelection: (editor: LexicalEditor, newFontSize: string | null, updateType: UpdateFontSizeType | null) => void;
|
|
18
|
+
export declare const updateFontSize: (editor: LexicalEditor, updateType: UpdateFontSizeType, inputValue: string) => void;
|
|
19
|
+
export declare const formatParagraph: (editor: LexicalEditor) => void;
|
|
20
|
+
export declare const formatHeading: (editor: LexicalEditor, blockType: string, headingSize: HeadingTagType) => void;
|
|
21
|
+
export declare const formatBulletList: (editor: LexicalEditor, blockType: string) => void;
|
|
22
|
+
export declare const formatCheckList: (editor: LexicalEditor, blockType: string) => void;
|
|
23
|
+
export declare const formatNumberedList: (editor: LexicalEditor, blockType: string) => void;
|
|
24
|
+
export declare const formatQuote: (editor: LexicalEditor, blockType: string) => void;
|
|
25
|
+
export declare const formatCode: (editor: LexicalEditor, blockType: string) => void;
|
|
26
|
+
export declare const clearFormatting: (editor: LexicalEditor) => void;
|