@fuma-content/studio 0.1.0
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/dist/bin.d.mts +1 -0
- package/dist/bin.mjs +90 -0
- package/dist/index.d.mts +13 -0
- package/dist/index.mjs +66 -0
- package/dist/mdx/actions.mjs +34 -0
- package/dist/mdx/client.mjs +167 -0
- package/dist/package.mjs +6 -0
- package/dist/src/components/code-editor/mdx.lazy.mjs +19 -0
- package/dist/src/components/code-editor/mdx.mjs +44 -0
- package/dist/src/components/code-editor/yaml.lazy.mjs +22 -0
- package/dist/src/components/code-editor/yaml.mjs +63 -0
- package/dist/src/components/editor/editor-base-kit.mjs +41 -0
- package/dist/src/components/editor/editor-kit.mjs +73 -0
- package/dist/src/components/editor/md.mjs +42 -0
- package/dist/src/components/editor/plugins/ai-kit.mjs +68 -0
- package/dist/src/components/editor/plugins/align-base-kit.mjs +28 -0
- package/dist/src/components/editor/plugins/align-kit.mjs +30 -0
- package/dist/src/components/editor/plugins/autoformat-kit.mjs +214 -0
- package/dist/src/components/editor/plugins/basic-blocks-base-kit.mjs +22 -0
- package/dist/src/components/editor/plugins/basic-blocks-kit.mjs +51 -0
- package/dist/src/components/editor/plugins/basic-marks-base-kit.mjs +20 -0
- package/dist/src/components/editor/plugins/basic-marks-kit.mjs +28 -0
- package/dist/src/components/editor/plugins/block-menu-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/block-placeholder-kit.mjs +14 -0
- package/dist/src/components/editor/plugins/block-selection-kit.mjs +48 -0
- package/dist/src/components/editor/plugins/callout-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/callout-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/code-block-base-kit.mjs +16 -0
- package/dist/src/components/editor/plugins/code-block-kit.mjs +19 -0
- package/dist/src/components/editor/plugins/column-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/column-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/comment-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/comment-kit.mjs +53 -0
- package/dist/src/components/editor/plugins/copilot-kit.mjs +49 -0
- package/dist/src/components/editor/plugins/cursor-overlay-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/date-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/date-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/discussion-kit.mjs +94 -0
- package/dist/src/components/editor/plugins/dnd-kit.mjs +31 -0
- package/dist/src/components/editor/plugins/emoji-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/exit-break-kit.mjs +12 -0
- package/dist/src/components/editor/plugins/fixed-toolbar-kit.mjs +15 -0
- package/dist/src/components/editor/plugins/floating-toolbar-kit.mjs +15 -0
- package/dist/src/components/editor/plugins/font-base-kit.mjs +14 -0
- package/dist/src/components/editor/plugins/font-kit.mjs +19 -0
- package/dist/src/components/editor/plugins/indent-base-kit.mjs +17 -0
- package/dist/src/components/editor/plugins/indent-kit.mjs +20 -0
- package/dist/src/components/editor/plugins/line-height-base-kit.mjs +20 -0
- package/dist/src/components/editor/plugins/line-height-kit.mjs +22 -0
- package/dist/src/components/editor/plugins/link-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/link-kit.mjs +15 -0
- package/dist/src/components/editor/plugins/list-base-kit.mjs +19 -0
- package/dist/src/components/editor/plugins/list-kit.mjs +22 -0
- package/dist/src/components/editor/plugins/markdown-kit.mjs +17 -0
- package/dist/src/components/editor/plugins/math-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/math-kit.mjs +10 -0
- package/dist/src/components/editor/plugins/media-base-kit.mjs +23 -0
- package/dist/src/components/editor/plugins/media-kit.mjs +37 -0
- package/dist/src/components/editor/plugins/slash-kit.mjs +11 -0
- package/dist/src/components/editor/plugins/suggestion-base-kit.mjs +8 -0
- package/dist/src/components/editor/plugins/suggestion-kit.mjs +50 -0
- package/dist/src/components/editor/plugins/table-base-kit.mjs +13 -0
- package/dist/src/components/editor/plugins/table-kit.mjs +15 -0
- package/dist/src/components/editor/transforms.mjs +125 -0
- package/dist/src/components/editor/ui/ai-chat-editor.mjs +21 -0
- package/dist/src/components/editor/ui/ai-menu.mjs +488 -0
- package/dist/src/components/editor/ui/ai-node.mjs +24 -0
- package/dist/src/components/editor/ui/ai-toolbar-button.mjs +23 -0
- package/dist/src/components/editor/ui/align-toolbar-button.mjs +71 -0
- package/dist/src/components/editor/ui/block-context-menu.mjs +130 -0
- package/dist/src/components/editor/ui/block-discussion.mjs +200 -0
- package/dist/src/components/editor/ui/block-draggable.mjs +265 -0
- package/dist/src/components/editor/ui/block-list-static.mjs +48 -0
- package/dist/src/components/editor/ui/block-list.mjs +47 -0
- package/dist/src/components/editor/ui/block-selection.mjs +28 -0
- package/dist/src/components/editor/ui/block-suggestion.mjs +319 -0
- package/dist/src/components/editor/ui/blockquote-node-static.mjs +14 -0
- package/dist/src/components/editor/ui/blockquote-node.mjs +16 -0
- package/dist/src/components/editor/ui/callout-node-static.mjs +29 -0
- package/dist/src/components/editor/ui/callout-node.mjs +50 -0
- package/dist/src/components/editor/ui/caption.mjs +39 -0
- package/dist/src/components/editor/ui/code-block-node-static.mjs +30 -0
- package/dist/src/components/editor/ui/code-block-node.mjs +121 -0
- package/dist/src/components/editor/ui/code-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/code-node.mjs +17 -0
- package/dist/src/components/editor/ui/column-node-static.mjs +32 -0
- package/dist/src/components/editor/ui/column-node.mjs +229 -0
- package/dist/src/components/editor/ui/comment-node-static.mjs +14 -0
- package/dist/src/components/editor/ui/comment-node.mjs +33 -0
- package/dist/src/components/editor/ui/comment-toolbar-button.mjs +23 -0
- package/dist/src/components/editor/ui/comment.mjs +422 -0
- package/dist/src/components/editor/ui/cursor-overlay.mjs +36 -0
- package/dist/src/components/editor/ui/date-node-static.mjs +32 -0
- package/dist/src/components/editor/ui/date-node.mjs +60 -0
- package/dist/src/components/editor/ui/editor-static.mjs +31 -0
- package/dist/src/components/editor/ui/editor.mjs +60 -0
- package/dist/src/components/editor/ui/emoji-node.mjs +46 -0
- package/dist/src/components/editor/ui/emoji-toolbar-button.mjs +415 -0
- package/dist/src/components/editor/ui/equation-node-static.mjs +65 -0
- package/dist/src/components/editor/ui/equation-node.mjs +159 -0
- package/dist/src/components/editor/ui/equation-toolbar-button.mjs +23 -0
- package/dist/src/components/editor/ui/fixed-toolbar-buttons.mjs +109 -0
- package/dist/src/components/editor/ui/fixed-toolbar.mjs +16 -0
- package/dist/src/components/editor/ui/floating-toolbar-buttons.mjs +54 -0
- package/dist/src/components/editor/ui/floating-toolbar.mjs +51 -0
- package/dist/src/components/editor/ui/font-color-toolbar-button.mjs +637 -0
- package/dist/src/components/editor/ui/font-size-toolbar-button.mjs +83 -0
- package/dist/src/components/editor/ui/ghost-text.mjs +22 -0
- package/dist/src/components/editor/ui/heading-node-static.mjs +60 -0
- package/dist/src/components/editor/ui/heading-node.mjs +62 -0
- package/dist/src/components/editor/ui/highlight-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/highlight-node.mjs +17 -0
- package/dist/src/components/editor/ui/history-toolbar-button.mjs +35 -0
- package/dist/src/components/editor/ui/hr-node-static.mjs +18 -0
- package/dist/src/components/editor/ui/hr-node.mjs +23 -0
- package/dist/src/components/editor/ui/indent-toolbar-button.mjs +29 -0
- package/dist/src/components/editor/ui/inline-combobox.mjs +148 -0
- package/dist/src/components/editor/ui/insert-toolbar-button.mjs +199 -0
- package/dist/src/components/editor/ui/kbd-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/kbd-node.mjs +17 -0
- package/dist/src/components/editor/ui/line-height-toolbar-button.mjs +56 -0
- package/dist/src/components/editor/ui/link-node-static.mjs +20 -0
- package/dist/src/components/editor/ui/link-node.mjs +28 -0
- package/dist/src/components/editor/ui/link-toolbar-button.mjs +21 -0
- package/dist/src/components/editor/ui/link-toolbar.mjs +141 -0
- package/dist/src/components/editor/ui/list-toolbar-button.mjs +131 -0
- package/dist/src/components/editor/ui/mark-toolbar-button.mjs +20 -0
- package/dist/src/components/editor/ui/media-image-node-static.mjs +32 -0
- package/dist/src/components/editor/ui/media-image-node.mjs +64 -0
- package/dist/src/components/editor/ui/media-placeholder-node.mjs +184 -0
- package/dist/src/components/editor/ui/media-preview-dialog.mjs +113 -0
- package/dist/src/components/editor/ui/media-toolbar-button.mjs +156 -0
- package/dist/src/components/editor/ui/media-toolbar.mjs +80 -0
- package/dist/src/components/editor/ui/media-upload-toast.mjs +39 -0
- package/dist/src/components/editor/ui/media-video-node-static.mjs +27 -0
- package/dist/src/components/editor/ui/mode-toolbar-button.mjs +112 -0
- package/dist/src/components/editor/ui/paragraph-node-static.mjs +15 -0
- package/dist/src/components/editor/ui/paragraph-node.mjs +17 -0
- package/dist/src/components/editor/ui/resize-handle.mjs +43 -0
- package/dist/src/components/editor/ui/slash-node.mjs +228 -0
- package/dist/src/components/editor/ui/suggestion-node-static.mjs +24 -0
- package/dist/src/components/editor/ui/suggestion-node.mjs +111 -0
- package/dist/src/components/editor/ui/suggestion-toolbar-button.mjs +24 -0
- package/dist/src/components/editor/ui/table-icons.mjs +1310 -0
- package/dist/src/components/editor/ui/table-node-static.mjs +68 -0
- package/dist/src/components/editor/ui/table-node.mjs +375 -0
- package/dist/src/components/editor/ui/table-toolbar-button.mjs +190 -0
- package/dist/src/components/editor/ui/turn-into-toolbar-button.mjs +168 -0
- package/dist/src/components/editor/use-chat.mjs +80 -0
- package/dist/src/components/json-schema-editor/client.mjs +46 -0
- package/dist/src/components/json-schema-editor/components/inputs.mjs +438 -0
- package/dist/src/components/json-schema-editor/get-default-values.mjs +23 -0
- package/dist/src/components/json-schema-editor/schema.mjs +131 -0
- package/dist/src/components/json-schema-editor/utils/merge-schema.mjs +134 -0
- package/dist/src/components/json-schema-editor/utils/schema-to-string.mjs +53 -0
- package/dist/src/components/ui/alert-dialog.mjs +90 -0
- package/dist/src/components/ui/avatar.mjs +32 -0
- package/dist/src/components/ui/button.mjs +48 -0
- package/dist/src/components/ui/calendar.mjs +108 -0
- package/dist/src/components/ui/checkbox.mjs +23 -0
- package/dist/src/components/ui/combobox.mjs +53 -0
- package/dist/src/components/ui/command.mjs +42 -0
- package/dist/src/components/ui/context-menu.mjs +67 -0
- package/dist/src/components/ui/dialog.mjs +9 -0
- package/dist/src/components/ui/dropdown-menu.mjs +122 -0
- package/dist/src/components/ui/input-group.mjs +31 -0
- package/dist/src/components/ui/input.mjs +15 -0
- package/dist/src/components/ui/label.mjs +19 -0
- package/dist/src/components/ui/popover.mjs +37 -0
- package/dist/src/components/ui/select.mjs +80 -0
- package/dist/src/components/ui/separator.mjs +19 -0
- package/dist/src/components/ui/spinner.mjs +16 -0
- package/dist/src/components/ui/tabs.mjs +39 -0
- package/dist/src/components/ui/textarea.mjs +14 -0
- package/dist/src/components/ui/toolbar.mjs +183 -0
- package/dist/src/components/ui/tooltip.mjs +38 -0
- package/dist/src/hooks/editor/use-is-creator.mjs +19 -0
- package/dist/src/hooks/use-upload-file.mjs +73 -0
- package/dist/src/lib/config.mjs +38 -0
- package/dist/src/lib/data/store.d.mts +15 -0
- package/dist/src/lib/lowlight.mjs +7 -0
- package/dist/src/lib/utils/deep-equal.mjs +18 -0
- package/dist/src/lib/utils/remove-undefined.mjs +18 -0
- package/dist/src/lib/utils.mjs +10 -0
- package/dist/types.d.mts +50 -0
- package/next.config.ts +23 -0
- package/package.json +131 -0
- package/postcss.config.mjs +7 -0
- package/src/app/(dashboard)/collection/[name]/[...slug]/page.client.tsx +26 -0
- package/src/app/(dashboard)/collection/[name]/[...slug]/page.tsx +17 -0
- package/src/app/(dashboard)/collection/[name]/page.client.tsx +82 -0
- package/src/app/(dashboard)/collection/[name]/page.tsx +11 -0
- package/src/app/(dashboard)/layout.tsx +34 -0
- package/src/app/(dashboard)/page.tsx +38 -0
- package/src/app/api/ai/command/prompts.ts +313 -0
- package/src/app/api/ai/command/route.ts +203 -0
- package/src/app/api/ai/command/utils.ts +242 -0
- package/src/app/api/ai/copilot/route.ts +33 -0
- package/src/app/api/uploadthing/route.ts +5 -0
- package/src/app/codeblock/LICENSE +21 -0
- package/src/app/codeblock/styles.css +289 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/globals.css +223 -0
- package/src/app/layout.client.tsx +15 -0
- package/src/app/layout.tsx +30 -0
- package/src/components/app-sidebar.tsx +162 -0
- package/src/components/code-editor/mdx.lazy.tsx +18 -0
- package/src/components/code-editor/mdx.tsx +48 -0
- package/src/components/code-editor/yaml.lazy.tsx +20 -0
- package/src/components/code-editor/yaml.tsx +71 -0
- package/src/components/collection/actions.tsx +41 -0
- package/src/components/collection/client.tsx +63 -0
- package/src/components/collection/context.tsx +24 -0
- package/src/components/collection/document/actions.tsx +83 -0
- package/src/components/editor/editor-base-kit.tsx +37 -0
- package/src/components/editor/editor-kit.tsx +87 -0
- package/src/components/editor/md.tsx +60 -0
- package/src/components/editor/plugins/ai-kit.tsx +102 -0
- package/src/components/editor/plugins/align-base-kit.tsx +16 -0
- package/src/components/editor/plugins/align-kit.tsx +18 -0
- package/src/components/editor/plugins/autoformat-kit.tsx +236 -0
- package/src/components/editor/plugins/basic-blocks-base-kit.tsx +34 -0
- package/src/components/editor/plugins/basic-blocks-kit.tsx +87 -0
- package/src/components/editor/plugins/basic-marks-base-kit.tsx +26 -0
- package/src/components/editor/plugins/basic-marks-kit.tsx +40 -0
- package/src/components/editor/plugins/basic-nodes-kit.tsx +6 -0
- package/src/components/editor/plugins/block-menu-kit.tsx +14 -0
- package/src/components/editor/plugins/block-placeholder-kit.tsx +17 -0
- package/src/components/editor/plugins/block-selection-kit.tsx +54 -0
- package/src/components/editor/plugins/callout-base-kit.tsx +5 -0
- package/src/components/editor/plugins/callout-kit.tsx +7 -0
- package/src/components/editor/plugins/code-block-base-kit.tsx +16 -0
- package/src/components/editor/plugins/code-block-kit.tsx +19 -0
- package/src/components/editor/plugins/column-base-kit.tsx +11 -0
- package/src/components/editor/plugins/column-kit.tsx +10 -0
- package/src/components/editor/plugins/comment-base-kit.tsx +5 -0
- package/src/components/editor/plugins/comment-kit.tsx +92 -0
- package/src/components/editor/plugins/copilot-kit.tsx +70 -0
- package/src/components/editor/plugins/cursor-overlay-kit.tsx +13 -0
- package/src/components/editor/plugins/date-base-kit.tsx +5 -0
- package/src/components/editor/plugins/date-kit.tsx +7 -0
- package/src/components/editor/plugins/discussion-kit.tsx +142 -0
- package/src/components/editor/plugins/dnd-kit.tsx +25 -0
- package/src/components/editor/plugins/emoji-kit.tsx +13 -0
- package/src/components/editor/plugins/exit-break-kit.tsx +12 -0
- package/src/components/editor/plugins/fixed-toolbar-kit.tsx +19 -0
- package/src/components/editor/plugins/floating-toolbar-kit.tsx +19 -0
- package/src/components/editor/plugins/font-base-kit.tsx +20 -0
- package/src/components/editor/plugins/font-kit.tsx +29 -0
- package/src/components/editor/plugins/indent-base-kit.tsx +13 -0
- package/src/components/editor/plugins/indent-kit.tsx +22 -0
- package/src/components/editor/plugins/line-height-base-kit.tsx +14 -0
- package/src/components/editor/plugins/line-height-kit.tsx +16 -0
- package/src/components/editor/plugins/link-base-kit.tsx +5 -0
- package/src/components/editor/plugins/link-kit.tsx +15 -0
- package/src/components/editor/plugins/list-base-kit.tsx +17 -0
- package/src/components/editor/plugins/list-kit.tsx +26 -0
- package/src/components/editor/plugins/markdown-kit.tsx +13 -0
- package/src/components/editor/plugins/math-base-kit.tsx +11 -0
- package/src/components/editor/plugins/math-kit.tsx +10 -0
- package/src/components/editor/plugins/media-base-kit.tsx +25 -0
- package/src/components/editor/plugins/media-kit.tsx +28 -0
- package/src/components/editor/plugins/slash-kit.tsx +18 -0
- package/src/components/editor/plugins/suggestion-base-kit.tsx +5 -0
- package/src/components/editor/plugins/suggestion-kit.tsx +83 -0
- package/src/components/editor/plugins/table-base-kit.tsx +20 -0
- package/src/components/editor/plugins/table-kit.tsx +22 -0
- package/src/components/editor/settings-dialog.tsx +418 -0
- package/src/components/editor/transforms.ts +193 -0
- package/src/components/editor/types.ts +149 -0
- package/src/components/editor/ui/ai-chat-editor.tsx +20 -0
- package/src/components/editor/ui/ai-menu.tsx +663 -0
- package/src/components/editor/ui/ai-node.tsx +40 -0
- package/src/components/editor/ui/ai-toolbar-button.tsx +23 -0
- package/src/components/editor/ui/align-toolbar-button.tsx +78 -0
- package/src/components/editor/ui/block-context-menu.tsx +154 -0
- package/src/components/editor/ui/block-discussion.tsx +318 -0
- package/src/components/editor/ui/block-draggable.tsx +464 -0
- package/src/components/editor/ui/block-list-static.tsx +75 -0
- package/src/components/editor/ui/block-list.tsx +72 -0
- package/src/components/editor/ui/block-selection.tsx +37 -0
- package/src/components/editor/ui/block-suggestion.tsx +438 -0
- package/src/components/editor/ui/blockquote-node-static.tsx +5 -0
- package/src/components/editor/ui/blockquote-node.tsx +7 -0
- package/src/components/editor/ui/callout-node-static.tsx +30 -0
- package/src/components/editor/ui/callout-node.tsx +64 -0
- package/src/components/editor/ui/caption.tsx +55 -0
- package/src/components/editor/ui/code-block-node-static.tsx +33 -0
- package/src/components/editor/ui/code-block-node.tsx +161 -0
- package/src/components/editor/ui/code-node-static.tsx +15 -0
- package/src/components/editor/ui/code-node.tsx +17 -0
- package/src/components/editor/ui/column-node-static.tsx +27 -0
- package/src/components/editor/ui/column-node.tsx +285 -0
- package/src/components/editor/ui/comment-node-static.tsx +12 -0
- package/src/components/editor/ui/comment-node.tsx +43 -0
- package/src/components/editor/ui/comment-toolbar-button.tsx +24 -0
- package/src/components/editor/ui/comment.tsx +577 -0
- package/src/components/editor/ui/cursor-overlay.tsx +66 -0
- package/src/components/editor/ui/date-node-static.tsx +45 -0
- package/src/components/editor/ui/date-node.tsx +86 -0
- package/src/components/editor/ui/editor-static.tsx +47 -0
- package/src/components/editor/ui/editor.tsx +120 -0
- package/src/components/editor/ui/emoji-node.tsx +65 -0
- package/src/components/editor/ui/emoji-toolbar-button.tsx +582 -0
- package/src/components/editor/ui/equation-node-static.tsx +94 -0
- package/src/components/editor/ui/equation-node.tsx +218 -0
- package/src/components/editor/ui/equation-toolbar-button.tsx +24 -0
- package/src/components/editor/ui/fixed-toolbar-buttons.tsx +135 -0
- package/src/components/editor/ui/fixed-toolbar.tsx +17 -0
- package/src/components/editor/ui/floating-toolbar-buttons.tsx +72 -0
- package/src/components/editor/ui/floating-toolbar.tsx +76 -0
- package/src/components/editor/ui/font-color-toolbar-button.tsx +804 -0
- package/src/components/editor/ui/font-size-toolbar-button.tsx +102 -0
- package/src/components/editor/ui/ghost-text.tsx +27 -0
- package/src/components/editor/ui/heading-node-static.tsx +54 -0
- package/src/components/editor/ui/heading-node.tsx +54 -0
- package/src/components/editor/ui/highlight-node-static.tsx +11 -0
- package/src/components/editor/ui/highlight-node.tsx +13 -0
- package/src/components/editor/ui/history-toolbar-button.tsx +41 -0
- package/src/components/editor/ui/hr-node-static.tsx +16 -0
- package/src/components/editor/ui/hr-node.tsx +28 -0
- package/src/components/editor/ui/indent-toolbar-button.tsx +27 -0
- package/src/components/editor/ui/inline-combobox.tsx +251 -0
- package/src/components/editor/ui/insert-toolbar-button.tsx +242 -0
- package/src/components/editor/ui/kbd-node-static.tsx +15 -0
- package/src/components/editor/ui/kbd-node.tsx +17 -0
- package/src/components/editor/ui/line-height-toolbar-button.tsx +66 -0
- package/src/components/editor/ui/link-node-static.tsx +21 -0
- package/src/components/editor/ui/link-node.tsx +37 -0
- package/src/components/editor/ui/link-toolbar-button.tsx +18 -0
- package/src/components/editor/ui/link-toolbar.tsx +196 -0
- package/src/components/editor/ui/list-toolbar-button.tsx +195 -0
- package/src/components/editor/ui/mark-toolbar-button.tsx +20 -0
- package/src/components/editor/ui/media-image-node-static.tsx +33 -0
- package/src/components/editor/ui/media-image-node.tsx +75 -0
- package/src/components/editor/ui/media-placeholder-node.tsx +235 -0
- package/src/components/editor/ui/media-preview-dialog.tsx +145 -0
- package/src/components/editor/ui/media-toolbar-button.tsx +202 -0
- package/src/components/editor/ui/media-toolbar.tsx +100 -0
- package/src/components/editor/ui/media-upload-toast.tsx +59 -0
- package/src/components/editor/ui/media-video-node-static.tsx +23 -0
- package/src/components/editor/ui/mode-toolbar-button.tsx +121 -0
- package/src/components/editor/ui/paragraph-node-static.tsx +13 -0
- package/src/components/editor/ui/paragraph-node.tsx +15 -0
- package/src/components/editor/ui/resize-handle.tsx +79 -0
- package/src/components/editor/ui/slash-node.tsx +274 -0
- package/src/components/editor/ui/suggestion-node-static.tsx +30 -0
- package/src/components/editor/ui/suggestion-node.tsx +157 -0
- package/src/components/editor/ui/suggestion-toolbar-button.tsx +25 -0
- package/src/components/editor/ui/table-icons.tsx +685 -0
- package/src/components/editor/ui/table-node-static.tsx +86 -0
- package/src/components/editor/ui/table-node.tsx +569 -0
- package/src/components/editor/ui/table-toolbar-button.tsx +260 -0
- package/src/components/editor/ui/turn-into-toolbar-button.tsx +176 -0
- package/src/components/editor/use-chat.ts +120 -0
- package/src/components/icons/logo.tsx +37 -0
- package/src/components/json-schema-editor/client.tsx +55 -0
- package/src/components/json-schema-editor/components/inputs.tsx +612 -0
- package/src/components/json-schema-editor/get-default-values.ts +29 -0
- package/src/components/json-schema-editor/schema.tsx +206 -0
- package/src/components/json-schema-editor/utils/merge-schema.ts +167 -0
- package/src/components/json-schema-editor/utils/schema-to-string.ts +87 -0
- package/src/components/nav-user.tsx +102 -0
- package/src/components/site-header.tsx +13 -0
- package/src/components/ui/alert-dialog.tsx +182 -0
- package/src/components/ui/avatar.tsx +96 -0
- package/src/components/ui/badge.tsx +46 -0
- package/src/components/ui/button.tsx +65 -0
- package/src/components/ui/calendar.tsx +186 -0
- package/src/components/ui/checkbox.tsx +29 -0
- package/src/components/ui/combobox.tsx +267 -0
- package/src/components/ui/command.tsx +180 -0
- package/src/components/ui/context-menu.tsx +161 -0
- package/src/components/ui/dialog.tsx +142 -0
- package/src/components/ui/drawer.tsx +120 -0
- package/src/components/ui/dropdown-menu.tsx +239 -0
- package/src/components/ui/field.tsx +224 -0
- package/src/components/ui/input-group.tsx +144 -0
- package/src/components/ui/input.tsx +19 -0
- package/src/components/ui/label.tsx +18 -0
- package/src/components/ui/popover.tsx +76 -0
- package/src/components/ui/select.tsx +182 -0
- package/src/components/ui/separator.tsx +28 -0
- package/src/components/ui/sheet.tsx +130 -0
- package/src/components/ui/sidebar.tsx +608 -0
- package/src/components/ui/sonner.tsx +45 -0
- package/src/components/ui/spinner.tsx +15 -0
- package/src/components/ui/table.tsx +89 -0
- package/src/components/ui/tabs.tsx +60 -0
- package/src/components/ui/textarea.tsx +18 -0
- package/src/components/ui/toggle-group.tsx +86 -0
- package/src/components/ui/toggle.tsx +45 -0
- package/src/components/ui/toolbar.tsx +365 -0
- package/src/components/ui/tooltip.tsx +57 -0
- package/src/hooks/editor/use-is-creator.ts +21 -0
- package/src/hooks/use-mobile.ts +19 -0
- package/src/hooks/use-mounted.ts +11 -0
- package/src/hooks/use-upload-file.ts +121 -0
- package/src/lib/ai/markdown-joiner-transform.ts +235 -0
- package/src/lib/config.ts +60 -0
- package/src/lib/data/actions.ts +51 -0
- package/src/lib/data/boundary.client.tsx +22 -0
- package/src/lib/data/boundary.tsx +22 -0
- package/src/lib/data/query.ts +9 -0
- package/src/lib/data/store.ts +52 -0
- package/src/lib/lowlight.ts +3 -0
- package/src/lib/uploadthing.ts +19 -0
- package/src/lib/utils/deep-equal.ts +37 -0
- package/src/lib/utils/remove-undefined.ts +21 -0
- package/src/lib/utils/urls.ts +6 -0
- package/src/lib/utils.ts +6 -0
- package/tsconfig.build.json +24 -0
- package/tsconfig.json +37 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import { useElement, usePluginOption } from "platejs/react";
|
|
5
|
+
import { CopilotPlugin } from "@platejs/ai/react";
|
|
6
|
+
|
|
7
|
+
//#region src/components/editor/ui/ghost-text.tsx
|
|
8
|
+
function GhostText() {
|
|
9
|
+
if (!usePluginOption(CopilotPlugin, "isSuggested", useElement().id)) return null;
|
|
10
|
+
return /* @__PURE__ */ jsx(GhostTextContent, {});
|
|
11
|
+
}
|
|
12
|
+
function GhostTextContent() {
|
|
13
|
+
const suggestionText = usePluginOption(CopilotPlugin, "suggestionText");
|
|
14
|
+
return /* @__PURE__ */ jsx("span", {
|
|
15
|
+
className: "pointer-events-none text-muted-foreground/70 max-sm:hidden",
|
|
16
|
+
contentEditable: false,
|
|
17
|
+
children: suggestionText && suggestionText
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
//#endregion
|
|
22
|
+
export { GhostText };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { cva } from "class-variance-authority";
|
|
3
|
+
import { SlateElement } from "platejs/static";
|
|
4
|
+
|
|
5
|
+
//#region src/components/editor/ui/heading-node-static.tsx
|
|
6
|
+
const headingVariants = cva("relative mb-1", { variants: { variant: {
|
|
7
|
+
h1: "mt-[1.6em] pb-1 font-bold font-heading text-4xl",
|
|
8
|
+
h2: "mt-[1.4em] pb-px font-heading font-semibold text-2xl tracking-tight",
|
|
9
|
+
h3: "mt-[1em] pb-px font-heading font-semibold text-xl tracking-tight",
|
|
10
|
+
h4: "mt-[0.75em] font-heading font-semibold text-lg tracking-tight",
|
|
11
|
+
h5: "mt-[0.75em] font-semibold text-lg tracking-tight",
|
|
12
|
+
h6: "mt-[0.75em] font-semibold text-base tracking-tight"
|
|
13
|
+
} } });
|
|
14
|
+
function HeadingElementStatic({ variant = "h1", ...props }) {
|
|
15
|
+
return /* @__PURE__ */ jsx(SlateElement, {
|
|
16
|
+
as: variant,
|
|
17
|
+
className: headingVariants({ variant }),
|
|
18
|
+
...props,
|
|
19
|
+
children: props.children
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
function H1ElementStatic(props) {
|
|
23
|
+
return /* @__PURE__ */ jsx(HeadingElementStatic, {
|
|
24
|
+
variant: "h1",
|
|
25
|
+
...props
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
function H2ElementStatic(props) {
|
|
29
|
+
return /* @__PURE__ */ jsx(HeadingElementStatic, {
|
|
30
|
+
variant: "h2",
|
|
31
|
+
...props
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
function H3ElementStatic(props) {
|
|
35
|
+
return /* @__PURE__ */ jsx(HeadingElementStatic, {
|
|
36
|
+
variant: "h3",
|
|
37
|
+
...props
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
function H4ElementStatic(props) {
|
|
41
|
+
return /* @__PURE__ */ jsx(HeadingElementStatic, {
|
|
42
|
+
variant: "h4",
|
|
43
|
+
...props
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
function H5ElementStatic(props) {
|
|
47
|
+
return /* @__PURE__ */ jsx(HeadingElementStatic, {
|
|
48
|
+
variant: "h5",
|
|
49
|
+
...props
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
function H6ElementStatic(props) {
|
|
53
|
+
return /* @__PURE__ */ jsx(HeadingElementStatic, {
|
|
54
|
+
variant: "h6",
|
|
55
|
+
...props
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
//#endregion
|
|
60
|
+
export { H1ElementStatic, H2ElementStatic, H3ElementStatic, H4ElementStatic, H5ElementStatic, H6ElementStatic };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import { PlateElement } from "platejs/react";
|
|
5
|
+
import { cva } from "class-variance-authority";
|
|
6
|
+
|
|
7
|
+
//#region src/components/editor/ui/heading-node.tsx
|
|
8
|
+
const headingVariants = cva("relative mb-1", { variants: { variant: {
|
|
9
|
+
h1: "mt-[1.6em] pb-1 font-bold font-heading text-4xl",
|
|
10
|
+
h2: "mt-[1.4em] pb-px font-heading font-semibold text-2xl tracking-tight",
|
|
11
|
+
h3: "mt-[1em] pb-px font-heading font-semibold text-xl tracking-tight",
|
|
12
|
+
h4: "mt-[0.75em] font-heading font-semibold text-lg tracking-tight",
|
|
13
|
+
h5: "mt-[0.75em] font-semibold text-lg tracking-tight",
|
|
14
|
+
h6: "mt-[0.75em] font-semibold text-base tracking-tight"
|
|
15
|
+
} } });
|
|
16
|
+
function HeadingElement({ variant = "h1", ...props }) {
|
|
17
|
+
return /* @__PURE__ */ jsx(PlateElement, {
|
|
18
|
+
as: variant,
|
|
19
|
+
className: headingVariants({ variant }),
|
|
20
|
+
...props,
|
|
21
|
+
children: props.children
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
function H1Element(props) {
|
|
25
|
+
return /* @__PURE__ */ jsx(HeadingElement, {
|
|
26
|
+
variant: "h1",
|
|
27
|
+
...props
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
function H2Element(props) {
|
|
31
|
+
return /* @__PURE__ */ jsx(HeadingElement, {
|
|
32
|
+
variant: "h2",
|
|
33
|
+
...props
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
function H3Element(props) {
|
|
37
|
+
return /* @__PURE__ */ jsx(HeadingElement, {
|
|
38
|
+
variant: "h3",
|
|
39
|
+
...props
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
function H4Element(props) {
|
|
43
|
+
return /* @__PURE__ */ jsx(HeadingElement, {
|
|
44
|
+
variant: "h4",
|
|
45
|
+
...props
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
function H5Element(props) {
|
|
49
|
+
return /* @__PURE__ */ jsx(HeadingElement, {
|
|
50
|
+
variant: "h5",
|
|
51
|
+
...props
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
function H6Element(props) {
|
|
55
|
+
return /* @__PURE__ */ jsx(HeadingElement, {
|
|
56
|
+
variant: "h6",
|
|
57
|
+
...props
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
//#endregion
|
|
62
|
+
export { H1Element, H2Element, H3Element, H4Element, H5Element, H6Element };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { SlateLeaf } from "platejs/static";
|
|
3
|
+
|
|
4
|
+
//#region src/components/editor/ui/highlight-node-static.tsx
|
|
5
|
+
function HighlightLeafStatic(props) {
|
|
6
|
+
return /* @__PURE__ */ jsx(SlateLeaf, {
|
|
7
|
+
...props,
|
|
8
|
+
as: "mark",
|
|
9
|
+
className: "bg-highlight/30 text-inherit",
|
|
10
|
+
children: props.children
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
//#endregion
|
|
15
|
+
export { HighlightLeafStatic };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import { PlateLeaf } from "platejs/react";
|
|
5
|
+
|
|
6
|
+
//#region src/components/editor/ui/highlight-node.tsx
|
|
7
|
+
function HighlightLeaf(props) {
|
|
8
|
+
return /* @__PURE__ */ jsx(PlateLeaf, {
|
|
9
|
+
...props,
|
|
10
|
+
as: "mark",
|
|
11
|
+
className: "bg-highlight/30 text-inherit",
|
|
12
|
+
children: props.children
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
//#endregion
|
|
17
|
+
export { HighlightLeaf };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ToolbarButton } from "../../ui/toolbar.mjs";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
import { useEditorRef, useEditorSelector } from "platejs/react";
|
|
6
|
+
import { Redo2Icon, Undo2Icon } from "lucide-react";
|
|
7
|
+
|
|
8
|
+
//#region src/components/editor/ui/history-toolbar-button.tsx
|
|
9
|
+
function RedoToolbarButton(props) {
|
|
10
|
+
const editor = useEditorRef();
|
|
11
|
+
const disabled = useEditorSelector((editor$1) => editor$1.history.redos.length === 0, []);
|
|
12
|
+
return /* @__PURE__ */ jsx(ToolbarButton, {
|
|
13
|
+
...props,
|
|
14
|
+
disabled,
|
|
15
|
+
onClick: () => editor.redo(),
|
|
16
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
17
|
+
tooltip: "Redo",
|
|
18
|
+
children: /* @__PURE__ */ jsx(Redo2Icon, {})
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
function UndoToolbarButton(props) {
|
|
22
|
+
const editor = useEditorRef();
|
|
23
|
+
const disabled = useEditorSelector((editor$1) => editor$1.history.undos.length === 0, []);
|
|
24
|
+
return /* @__PURE__ */ jsx(ToolbarButton, {
|
|
25
|
+
...props,
|
|
26
|
+
disabled,
|
|
27
|
+
onClick: () => editor.undo(),
|
|
28
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
29
|
+
tooltip: "Undo",
|
|
30
|
+
children: /* @__PURE__ */ jsx(Undo2Icon, {})
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
//#endregion
|
|
35
|
+
export { RedoToolbarButton, UndoToolbarButton };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { SlateElement } from "platejs/static";
|
|
4
|
+
|
|
5
|
+
//#region src/components/editor/ui/hr-node-static.tsx
|
|
6
|
+
function HrElementStatic(props) {
|
|
7
|
+
return /* @__PURE__ */ jsxs(SlateElement, {
|
|
8
|
+
...props,
|
|
9
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
10
|
+
className: "cursor-text py-6",
|
|
11
|
+
contentEditable: false,
|
|
12
|
+
children: /* @__PURE__ */ jsx("hr", { className: cn("h-0.5 rounded-sm border-none bg-muted bg-clip-content") })
|
|
13
|
+
}), props.children]
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
//#endregion
|
|
18
|
+
export { HrElementStatic };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
import { PlateElement, useFocused, useReadOnly, useSelected } from "platejs/react";
|
|
6
|
+
|
|
7
|
+
//#region src/components/editor/ui/hr-node.tsx
|
|
8
|
+
function HrElement(props) {
|
|
9
|
+
const readOnly = useReadOnly();
|
|
10
|
+
const selected = useSelected();
|
|
11
|
+
const focused = useFocused();
|
|
12
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
13
|
+
...props,
|
|
14
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
15
|
+
className: "py-6",
|
|
16
|
+
contentEditable: false,
|
|
17
|
+
children: /* @__PURE__ */ jsx("hr", { className: cn("h-0.5 rounded-sm border-none bg-muted bg-clip-content", selected && focused && "ring-2 ring-ring ring-offset-2", !readOnly && "cursor-pointer") })
|
|
18
|
+
}), props.children]
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
//#endregion
|
|
23
|
+
export { HrElement };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ToolbarButton } from "../../ui/toolbar.mjs";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
import { IndentIcon, OutdentIcon } from "lucide-react";
|
|
6
|
+
import { useIndentButton, useOutdentButton } from "@platejs/indent/react";
|
|
7
|
+
|
|
8
|
+
//#region src/components/editor/ui/indent-toolbar-button.tsx
|
|
9
|
+
function IndentToolbarButton(props) {
|
|
10
|
+
const { props: buttonProps } = useIndentButton();
|
|
11
|
+
return /* @__PURE__ */ jsx(ToolbarButton, {
|
|
12
|
+
...props,
|
|
13
|
+
...buttonProps,
|
|
14
|
+
tooltip: "Indent",
|
|
15
|
+
children: /* @__PURE__ */ jsx(IndentIcon, {})
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
function OutdentToolbarButton(props) {
|
|
19
|
+
const { props: buttonProps } = useOutdentButton();
|
|
20
|
+
return /* @__PURE__ */ jsx(ToolbarButton, {
|
|
21
|
+
...props,
|
|
22
|
+
...buttonProps,
|
|
23
|
+
tooltip: "Outdent",
|
|
24
|
+
children: /* @__PURE__ */ jsx(OutdentIcon, {})
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
//#endregion
|
|
29
|
+
export { IndentToolbarButton, OutdentToolbarButton };
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { useIsCreator } from "../../../hooks/editor/use-is-creator.mjs";
|
|
5
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
6
|
+
import { useComposedRef, useEditorRef } from "platejs/react";
|
|
7
|
+
import * as React$1 from "react";
|
|
8
|
+
import { cva } from "class-variance-authority";
|
|
9
|
+
import { Combobox } from "@base-ui/react";
|
|
10
|
+
import { useControlled } from "@base-ui/utils/useControlled";
|
|
11
|
+
import { useStableCallback } from "@base-ui/utils/useStableCallback";
|
|
12
|
+
import { useComboboxInput, useHTMLInputCursorState } from "@platejs/combobox/react";
|
|
13
|
+
|
|
14
|
+
//#region src/components/editor/ui/inline-combobox.tsx
|
|
15
|
+
const InlineComboboxContext = React$1.createContext(null);
|
|
16
|
+
function InlineCombobox({ children, element, hideWhenNoValue = false, showTrigger = true, trigger, inputValue: inputValueProp, onInputValueChange: onInputValueChangeProp, defaultInputValue = "", ...rest }) {
|
|
17
|
+
const editor = useEditorRef();
|
|
18
|
+
const inputRef = React$1.useRef(null);
|
|
19
|
+
const cursorState = useHTMLInputCursorState(inputRef);
|
|
20
|
+
const isCreator = useIsCreator(element);
|
|
21
|
+
const [inputValue, setInputValueUnwrapped] = useControlled({
|
|
22
|
+
name: "InlineCombobox",
|
|
23
|
+
controlled: inputValueProp,
|
|
24
|
+
default: defaultInputValue
|
|
25
|
+
});
|
|
26
|
+
/**
|
|
27
|
+
* Track the point just before the input element so we know where to
|
|
28
|
+
* insertText if the combobox closes due to a selection change.
|
|
29
|
+
*/
|
|
30
|
+
const insertPoint = React$1.useRef(null);
|
|
31
|
+
React$1.useEffect(() => {
|
|
32
|
+
const path = editor.api.findPath(element);
|
|
33
|
+
if (!path) return;
|
|
34
|
+
const point = editor.api.before(path);
|
|
35
|
+
if (!point) return;
|
|
36
|
+
const pointRef = editor.api.pointRef(point);
|
|
37
|
+
insertPoint.current = pointRef.current;
|
|
38
|
+
return () => {
|
|
39
|
+
pointRef.unref();
|
|
40
|
+
};
|
|
41
|
+
}, [editor, element]);
|
|
42
|
+
const { props: inputProps, removeInput } = useComboboxInput({
|
|
43
|
+
cancelInputOnBlur: true,
|
|
44
|
+
cursorState,
|
|
45
|
+
autoFocus: isCreator,
|
|
46
|
+
ref: inputRef,
|
|
47
|
+
onCancelInput: (cause) => {
|
|
48
|
+
if (cause !== "backspace") editor.tf.insertText(trigger + inputValue, { at: insertPoint?.current ?? void 0 });
|
|
49
|
+
if (cause === "arrowLeft" || cause === "arrowRight") editor.tf.move({
|
|
50
|
+
distance: 1,
|
|
51
|
+
reverse: cause === "arrowLeft"
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
const onKeyDown = useStableCallback(inputProps.onKeyDown);
|
|
56
|
+
const onBlur = useStableCallback(inputProps.onBlur);
|
|
57
|
+
const contextValue = React$1.useMemo(() => ({
|
|
58
|
+
showTrigger,
|
|
59
|
+
trigger,
|
|
60
|
+
inputProps,
|
|
61
|
+
inputRef,
|
|
62
|
+
removeInput,
|
|
63
|
+
inputOnBlur: onBlur,
|
|
64
|
+
inputOnKeyDown: onKeyDown
|
|
65
|
+
}), [
|
|
66
|
+
trigger,
|
|
67
|
+
showTrigger,
|
|
68
|
+
onBlur,
|
|
69
|
+
onKeyDown
|
|
70
|
+
]);
|
|
71
|
+
return /* @__PURE__ */ jsx("span", {
|
|
72
|
+
contentEditable: false,
|
|
73
|
+
children: /* @__PURE__ */ jsx(InlineComboboxContext.Provider, {
|
|
74
|
+
value: contextValue,
|
|
75
|
+
children: /* @__PURE__ */ jsx(Combobox.Root, {
|
|
76
|
+
open: true,
|
|
77
|
+
inputValue,
|
|
78
|
+
onInputValueChange: (v, e) => {
|
|
79
|
+
setInputValueUnwrapped(v);
|
|
80
|
+
return onInputValueChangeProp?.(v, e);
|
|
81
|
+
},
|
|
82
|
+
...rest,
|
|
83
|
+
children
|
|
84
|
+
})
|
|
85
|
+
})
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
function InlineComboboxInput({ ref, className, ...props }) {
|
|
89
|
+
const { showTrigger, trigger, inputOnBlur, inputOnKeyDown, inputRef } = React$1.useContext(InlineComboboxContext);
|
|
90
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [showTrigger && trigger, /* @__PURE__ */ jsx(Combobox.Input, {
|
|
91
|
+
ref: useComposedRef(inputRef, ref),
|
|
92
|
+
className: cn("bg-transparent outline-none", className),
|
|
93
|
+
onBlur: inputOnBlur,
|
|
94
|
+
onKeyDown: inputOnKeyDown,
|
|
95
|
+
...props
|
|
96
|
+
})] });
|
|
97
|
+
}
|
|
98
|
+
function InlineComboboxContent({ className, ...props }) {
|
|
99
|
+
return /* @__PURE__ */ jsx(Combobox.Portal, { children: /* @__PURE__ */ jsx(Combobox.Positioner, {
|
|
100
|
+
className: "z-50",
|
|
101
|
+
children: /* @__PURE__ */ jsx(Combobox.Popup, {
|
|
102
|
+
className: cn("max-h-[288px] w-[300px] overflow-y-auto rounded-md bg-popover text-popover-foreground shadow-lg border", className),
|
|
103
|
+
...props
|
|
104
|
+
})
|
|
105
|
+
}) });
|
|
106
|
+
}
|
|
107
|
+
const comboboxItemVariants = cva("relative mx-1 flex h-[28px] select-none items-center rounded-sm px-2 text-foreground text-sm outline-none [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", {
|
|
108
|
+
variants: { interactive: {
|
|
109
|
+
false: "",
|
|
110
|
+
true: "cursor-pointer transition-colors hover:bg-accent hover:text-accent-foreground data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground"
|
|
111
|
+
} },
|
|
112
|
+
defaultVariants: { interactive: true }
|
|
113
|
+
});
|
|
114
|
+
function InlineComboboxItem({ className, focusEditor = true, onClick, ...props }) {
|
|
115
|
+
const { removeInput } = React$1.useContext(InlineComboboxContext);
|
|
116
|
+
return /* @__PURE__ */ jsx(Combobox.Item, {
|
|
117
|
+
className: cn(comboboxItemVariants(), className),
|
|
118
|
+
onClick: (event) => {
|
|
119
|
+
removeInput(focusEditor);
|
|
120
|
+
onClick?.(event);
|
|
121
|
+
},
|
|
122
|
+
...props
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
function InlineComboboxEmpty({ children, className, ...props }) {
|
|
126
|
+
return /* @__PURE__ */ jsx(Combobox.Empty, {
|
|
127
|
+
className: cn("p-4 text-muted-foreground text-sm empty:hidden", className),
|
|
128
|
+
...props,
|
|
129
|
+
children
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
const InlineComboboxList = Combobox.List;
|
|
133
|
+
const InlineComboboxCollection = Combobox.Collection;
|
|
134
|
+
function InlineComboboxGroup({ className, ...props }) {
|
|
135
|
+
return /* @__PURE__ */ jsx(Combobox.Group, {
|
|
136
|
+
...props,
|
|
137
|
+
className: cn("hidden not-last:border-b py-1.5 [&:has([role=option])]:block", className)
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
function InlineComboboxGroupLabel({ className, ...props }) {
|
|
141
|
+
return /* @__PURE__ */ jsx(Combobox.GroupLabel, {
|
|
142
|
+
...props,
|
|
143
|
+
className: cn("mt-1.5 mb-2 px-3 font-medium text-muted-foreground text-xs", className)
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
//#endregion
|
|
148
|
+
export { InlineCombobox, InlineComboboxCollection, InlineComboboxContent, InlineComboboxEmpty, InlineComboboxGroup, InlineComboboxGroupLabel, InlineComboboxInput, InlineComboboxItem, InlineComboboxList };
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "../../ui/dropdown-menu.mjs";
|
|
4
|
+
import { ToolbarButton, ToolbarMenuGroup } from "../../ui/toolbar.mjs";
|
|
5
|
+
import { insertBlock, insertInlineElement } from "../transforms.mjs";
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
import { useEditorRef } from "platejs/react";
|
|
8
|
+
import * as React$1 from "react";
|
|
9
|
+
import { KEYS } from "platejs";
|
|
10
|
+
import { CalendarIcon, ChevronRightIcon, Columns3Icon, FileCodeIcon, FilmIcon, Heading1Icon, Heading2Icon, Heading3Icon, ImageIcon, Link2Icon, ListIcon, ListOrderedIcon, MinusIcon, PilcrowIcon, PlusIcon, QuoteIcon, RadicalIcon, SquareIcon, TableIcon, TableOfContentsIcon } from "lucide-react";
|
|
11
|
+
|
|
12
|
+
//#region src/components/editor/ui/insert-toolbar-button.tsx
|
|
13
|
+
const groups = [
|
|
14
|
+
{
|
|
15
|
+
group: "Basic blocks",
|
|
16
|
+
items: [
|
|
17
|
+
{
|
|
18
|
+
icon: /* @__PURE__ */ jsx(PilcrowIcon, {}),
|
|
19
|
+
label: "Paragraph",
|
|
20
|
+
value: KEYS.p
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
icon: /* @__PURE__ */ jsx(Heading1Icon, {}),
|
|
24
|
+
label: "Heading 1",
|
|
25
|
+
value: "h1"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
icon: /* @__PURE__ */ jsx(Heading2Icon, {}),
|
|
29
|
+
label: "Heading 2",
|
|
30
|
+
value: "h2"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
icon: /* @__PURE__ */ jsx(Heading3Icon, {}),
|
|
34
|
+
label: "Heading 3",
|
|
35
|
+
value: "h3"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
icon: /* @__PURE__ */ jsx(TableIcon, {}),
|
|
39
|
+
label: "Table",
|
|
40
|
+
value: KEYS.table
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
icon: /* @__PURE__ */ jsx(FileCodeIcon, {}),
|
|
44
|
+
label: "Code",
|
|
45
|
+
value: KEYS.codeBlock
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
icon: /* @__PURE__ */ jsx(QuoteIcon, {}),
|
|
49
|
+
label: "Quote",
|
|
50
|
+
value: KEYS.blockquote
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
icon: /* @__PURE__ */ jsx(MinusIcon, {}),
|
|
54
|
+
label: "Divider",
|
|
55
|
+
value: KEYS.hr
|
|
56
|
+
}
|
|
57
|
+
].map((item) => ({
|
|
58
|
+
...item,
|
|
59
|
+
onSelect: (editor, value) => {
|
|
60
|
+
insertBlock(editor, value);
|
|
61
|
+
}
|
|
62
|
+
}))
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
group: "Lists",
|
|
66
|
+
items: [
|
|
67
|
+
{
|
|
68
|
+
icon: /* @__PURE__ */ jsx(ListIcon, {}),
|
|
69
|
+
label: "Bulleted list",
|
|
70
|
+
value: KEYS.ul
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
icon: /* @__PURE__ */ jsx(ListOrderedIcon, {}),
|
|
74
|
+
label: "Numbered list",
|
|
75
|
+
value: KEYS.ol
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
icon: /* @__PURE__ */ jsx(SquareIcon, {}),
|
|
79
|
+
label: "To-do list",
|
|
80
|
+
value: KEYS.listTodo
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
icon: /* @__PURE__ */ jsx(ChevronRightIcon, {}),
|
|
84
|
+
label: "Toggle list",
|
|
85
|
+
value: KEYS.toggle
|
|
86
|
+
}
|
|
87
|
+
].map((item) => ({
|
|
88
|
+
...item,
|
|
89
|
+
onSelect: (editor, value) => {
|
|
90
|
+
insertBlock(editor, value);
|
|
91
|
+
}
|
|
92
|
+
}))
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
group: "Media",
|
|
96
|
+
items: [{
|
|
97
|
+
icon: /* @__PURE__ */ jsx(ImageIcon, {}),
|
|
98
|
+
label: "Image",
|
|
99
|
+
value: KEYS.img
|
|
100
|
+
}, {
|
|
101
|
+
icon: /* @__PURE__ */ jsx(FilmIcon, {}),
|
|
102
|
+
label: "Embed",
|
|
103
|
+
value: KEYS.mediaEmbed
|
|
104
|
+
}].map((item) => ({
|
|
105
|
+
...item,
|
|
106
|
+
onSelect: (editor, value) => {
|
|
107
|
+
insertBlock(editor, value);
|
|
108
|
+
}
|
|
109
|
+
}))
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
group: "Advanced blocks",
|
|
113
|
+
items: [
|
|
114
|
+
{
|
|
115
|
+
icon: /* @__PURE__ */ jsx(TableOfContentsIcon, {}),
|
|
116
|
+
label: "Table of contents",
|
|
117
|
+
value: KEYS.toc
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
icon: /* @__PURE__ */ jsx(Columns3Icon, {}),
|
|
121
|
+
label: "3 columns",
|
|
122
|
+
value: "action_three_columns"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
focusEditor: false,
|
|
126
|
+
icon: /* @__PURE__ */ jsx(RadicalIcon, {}),
|
|
127
|
+
label: "Equation",
|
|
128
|
+
value: KEYS.equation
|
|
129
|
+
}
|
|
130
|
+
].map((item) => ({
|
|
131
|
+
...item,
|
|
132
|
+
onSelect: (editor, value) => {
|
|
133
|
+
insertBlock(editor, value);
|
|
134
|
+
}
|
|
135
|
+
}))
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
group: "Inline",
|
|
139
|
+
items: [
|
|
140
|
+
{
|
|
141
|
+
icon: /* @__PURE__ */ jsx(Link2Icon, {}),
|
|
142
|
+
label: "Link",
|
|
143
|
+
value: KEYS.link
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
focusEditor: true,
|
|
147
|
+
icon: /* @__PURE__ */ jsx(CalendarIcon, {}),
|
|
148
|
+
label: "Date",
|
|
149
|
+
value: KEYS.date
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
focusEditor: false,
|
|
153
|
+
icon: /* @__PURE__ */ jsx(RadicalIcon, {}),
|
|
154
|
+
label: "Inline Equation",
|
|
155
|
+
value: KEYS.inlineEquation
|
|
156
|
+
}
|
|
157
|
+
].map((item) => ({
|
|
158
|
+
...item,
|
|
159
|
+
onSelect: (editor, value) => {
|
|
160
|
+
insertInlineElement(editor, value);
|
|
161
|
+
}
|
|
162
|
+
}))
|
|
163
|
+
}
|
|
164
|
+
];
|
|
165
|
+
function InsertToolbarButton(props) {
|
|
166
|
+
const editor = useEditorRef();
|
|
167
|
+
const [open, setOpen] = React$1.useState(false);
|
|
168
|
+
return /* @__PURE__ */ jsxs(DropdownMenu, {
|
|
169
|
+
open,
|
|
170
|
+
onOpenChange: setOpen,
|
|
171
|
+
modal: false,
|
|
172
|
+
...props,
|
|
173
|
+
children: [/* @__PURE__ */ jsx(DropdownMenuTrigger, {
|
|
174
|
+
asChild: true,
|
|
175
|
+
children: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
176
|
+
pressed: open,
|
|
177
|
+
tooltip: "Insert",
|
|
178
|
+
isDropdown: true,
|
|
179
|
+
children: /* @__PURE__ */ jsx(PlusIcon, {})
|
|
180
|
+
})
|
|
181
|
+
}), /* @__PURE__ */ jsx(DropdownMenuContent, {
|
|
182
|
+
className: "flex min-w-[180px] max-h-[500px] flex-col overflow-y-auto",
|
|
183
|
+
align: "start",
|
|
184
|
+
children: groups.map(({ group, items: nestedItems }) => /* @__PURE__ */ jsx(ToolbarMenuGroup, {
|
|
185
|
+
label: group,
|
|
186
|
+
children: nestedItems.map(({ icon, label, value, onSelect }) => /* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
187
|
+
onSelect: () => {
|
|
188
|
+
onSelect(editor, value);
|
|
189
|
+
editor.tf.focus();
|
|
190
|
+
},
|
|
191
|
+
children: [icon, label]
|
|
192
|
+
}, value))
|
|
193
|
+
}, group))
|
|
194
|
+
})]
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
//#endregion
|
|
199
|
+
export { InsertToolbarButton };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { SlateLeaf } from "platejs/static";
|
|
3
|
+
|
|
4
|
+
//#region src/components/editor/ui/kbd-node-static.tsx
|
|
5
|
+
function KbdLeafStatic(props) {
|
|
6
|
+
return /* @__PURE__ */ jsx(SlateLeaf, {
|
|
7
|
+
...props,
|
|
8
|
+
as: "kbd",
|
|
9
|
+
className: "rounded border border-border bg-muted px-1.5 py-0.5 font-mono text-sm shadow-[rgba(255,_255,_255,_0.1)_0px_0.5px_0px_0px_inset,_rgb(248,_249,_250)_0px_1px_5px_0px_inset,_rgb(193,_200,_205)_0px_0px_0px_0.5px,_rgb(193,_200,_205)_0px_2px_1px_-1px,_rgb(193,_200,_205)_0px_1px_0px_0px] dark:shadow-[rgba(255,_255,_255,_0.1)_0px_0.5px_0px_0px_inset,_rgb(26,_29,_30)_0px_1px_5px_0px_inset,_rgb(76,_81,_85)_0px_0px_0px_0.5px,_rgb(76,_81,_85)_0px_2px_1px_-1px,_rgb(76,_81,_85)_0px_1px_0px_0px]",
|
|
10
|
+
children: props.children
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
//#endregion
|
|
15
|
+
export { KbdLeafStatic };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import { PlateLeaf } from "platejs/react";
|
|
5
|
+
|
|
6
|
+
//#region src/components/editor/ui/kbd-node.tsx
|
|
7
|
+
function KbdLeaf(props) {
|
|
8
|
+
return /* @__PURE__ */ jsx(PlateLeaf, {
|
|
9
|
+
...props,
|
|
10
|
+
as: "kbd",
|
|
11
|
+
className: "rounded border border-border bg-muted px-1.5 py-0.5 font-mono text-sm shadow-[rgba(255,_255,_255,_0.1)_0px_0.5px_0px_0px_inset,_rgb(248,_249,_250)_0px_1px_5px_0px_inset,_rgb(193,_200,_205)_0px_0px_0px_0.5px,_rgb(193,_200,_205)_0px_2px_1px_-1px,_rgb(193,_200,_205)_0px_1px_0px_0px] dark:shadow-[rgba(255,_255,_255,_0.1)_0px_0.5px_0px_0px_inset,_rgb(26,_29,_30)_0px_1px_5px_0px_inset,_rgb(76,_81,_85)_0px_0px_0px_0.5px,_rgb(76,_81,_85)_0px_2px_1px_-1px,_rgb(76,_81,_85)_0px_1px_0px_0px]",
|
|
12
|
+
children: props.children
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
//#endregion
|
|
17
|
+
export { KbdLeaf };
|