@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,68 @@
|
|
|
1
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { SlateElement } from "platejs/static";
|
|
4
|
+
import { BaseTablePlugin } from "@platejs/table";
|
|
5
|
+
|
|
6
|
+
//#region src/components/editor/ui/table-node-static.tsx
|
|
7
|
+
function TableElementStatic({ children, ...props }) {
|
|
8
|
+
const { disableMarginLeft } = props.editor.getOptions(BaseTablePlugin);
|
|
9
|
+
const marginLeft = disableMarginLeft ? 0 : props.element.marginLeft;
|
|
10
|
+
return /* @__PURE__ */ jsx(SlateElement, {
|
|
11
|
+
...props,
|
|
12
|
+
className: "overflow-x-auto py-5",
|
|
13
|
+
style: { paddingLeft: marginLeft },
|
|
14
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
15
|
+
className: "group/table relative w-fit",
|
|
16
|
+
children: /* @__PURE__ */ jsx("table", {
|
|
17
|
+
className: "mr-0 ml-px table h-px table-fixed border-collapse",
|
|
18
|
+
children: /* @__PURE__ */ jsx("tbody", {
|
|
19
|
+
className: "min-w-full",
|
|
20
|
+
children
|
|
21
|
+
})
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
function TableRowElementStatic(props) {
|
|
27
|
+
return /* @__PURE__ */ jsx(SlateElement, {
|
|
28
|
+
...props,
|
|
29
|
+
as: "tr",
|
|
30
|
+
className: "h-full",
|
|
31
|
+
children: props.children
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
function TableCellElementStatic({ isHeader, ...props }) {
|
|
35
|
+
const { editor, element } = props;
|
|
36
|
+
const { api } = editor.getPlugin(BaseTablePlugin);
|
|
37
|
+
const { minHeight, width } = api.table.getCellSize({ element });
|
|
38
|
+
const borders = api.table.getCellBorders({ element });
|
|
39
|
+
return /* @__PURE__ */ jsx(SlateElement, {
|
|
40
|
+
...props,
|
|
41
|
+
as: isHeader ? "th" : "td",
|
|
42
|
+
className: cn("h-full overflow-visible border-none bg-background p-0", element.background ? "bg-(--cellBackground)" : "bg-background", isHeader && "text-left font-normal *:m-0", "before:size-full", "before:absolute before:box-border before:select-none before:content-['']", borders && cn(borders.bottom?.size && "before:border-b before:border-b-border", borders.right?.size && "before:border-r before:border-r-border", borders.left?.size && "before:border-l before:border-l-border", borders.top?.size && "before:border-t before:border-t-border")),
|
|
43
|
+
style: {
|
|
44
|
+
"--cellBackground": element.background,
|
|
45
|
+
maxWidth: width || 240,
|
|
46
|
+
minWidth: width || 120
|
|
47
|
+
},
|
|
48
|
+
attributes: {
|
|
49
|
+
...props.attributes,
|
|
50
|
+
colSpan: api.table.getColSpan(element),
|
|
51
|
+
rowSpan: api.table.getRowSpan(element)
|
|
52
|
+
},
|
|
53
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
54
|
+
className: "relative z-20 box-border h-full px-4 py-2",
|
|
55
|
+
style: { minHeight },
|
|
56
|
+
children: props.children
|
|
57
|
+
})
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
function TableCellHeaderElementStatic(props) {
|
|
61
|
+
return /* @__PURE__ */ jsx(TableCellElementStatic, {
|
|
62
|
+
...props,
|
|
63
|
+
isHeader: true
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
//#endregion
|
|
68
|
+
export { TableCellElementStatic, TableCellHeaderElementStatic, TableElementStatic, TableRowElementStatic };
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Button } from "../../ui/button.mjs";
|
|
5
|
+
import { Popover as Popover$1, PopoverContent } from "../../ui/popover.mjs";
|
|
6
|
+
import { DropdownMenu as DropdownMenu$1, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuPortal, DropdownMenuTrigger } from "../../ui/dropdown-menu.mjs";
|
|
7
|
+
import { blockSelectionVariants } from "./block-selection.mjs";
|
|
8
|
+
import { Toolbar as Toolbar$1, ToolbarButton, ToolbarGroup, ToolbarMenuGroup } from "../../ui/toolbar.mjs";
|
|
9
|
+
import { ColorDropdownMenuItems, DEFAULT_COLORS } from "./font-color-toolbar-button.mjs";
|
|
10
|
+
import { ResizeHandle } from "./resize-handle.mjs";
|
|
11
|
+
import { BorderAllIcon, BorderBottomIcon, BorderLeftIcon, BorderNoneIcon, BorderRightIcon, BorderTopIcon } from "./table-icons.mjs";
|
|
12
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
13
|
+
import { PlateElement, useComposedRef, useEditorPlugin, useEditorRef, useEditorSelector, useElement, useElementSelector, useFocusedLast, usePluginOption, useReadOnly, useRemoveNodeButton, useSelected, withHOC } from "platejs/react";
|
|
14
|
+
import * as React$1 from "react";
|
|
15
|
+
import { KEYS, PathApi } from "platejs";
|
|
16
|
+
import { BlockSelectionPlugin, useBlockSelected } from "@platejs/selection/react";
|
|
17
|
+
import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, CombineIcon, EraserIcon, Grid2X2Icon, GripVertical, PaintBucketIcon, SquareSplitHorizontalIcon, Trash2Icon, XIcon } from "lucide-react";
|
|
18
|
+
import { Popover } from "radix-ui";
|
|
19
|
+
import { setCellBackground } from "@platejs/table";
|
|
20
|
+
import { useDraggable, useDropLine } from "@platejs/dnd";
|
|
21
|
+
import { TablePlugin, TableProvider, useTableBordersDropdownMenuContentState, useTableCellElement, useTableCellElementResizable, useTableElement, useTableMergeState } from "@platejs/table/react";
|
|
22
|
+
|
|
23
|
+
//#region src/components/editor/ui/table-node.tsx
|
|
24
|
+
const TableElement = withHOC(TableProvider, function TableElement$1({ children, ...props }) {
|
|
25
|
+
const readOnly = useReadOnly();
|
|
26
|
+
const isSelectionAreaVisible = usePluginOption(BlockSelectionPlugin, "isSelectionAreaVisible");
|
|
27
|
+
const hasControls = !readOnly && !isSelectionAreaVisible;
|
|
28
|
+
const { isSelectingCell, marginLeft, props: tableProps } = useTableElement();
|
|
29
|
+
const isSelectingTable = useBlockSelected(props.element.id);
|
|
30
|
+
const content = /* @__PURE__ */ jsx(PlateElement, {
|
|
31
|
+
...props,
|
|
32
|
+
className: cn("overflow-x-auto py-5", hasControls && "-ml-2 *:data-[slot=block-selection]:left-2"),
|
|
33
|
+
style: { paddingLeft: marginLeft },
|
|
34
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
35
|
+
className: "group/table relative w-fit",
|
|
36
|
+
children: [/* @__PURE__ */ jsx("table", {
|
|
37
|
+
className: cn("mr-0 ml-px table h-px table-fixed border-collapse", isSelectingCell && "selection:bg-transparent"),
|
|
38
|
+
...tableProps,
|
|
39
|
+
children: /* @__PURE__ */ jsx("tbody", {
|
|
40
|
+
className: "min-w-full",
|
|
41
|
+
children
|
|
42
|
+
})
|
|
43
|
+
}), isSelectingTable && /* @__PURE__ */ jsx("div", {
|
|
44
|
+
className: blockSelectionVariants(),
|
|
45
|
+
contentEditable: false
|
|
46
|
+
})]
|
|
47
|
+
})
|
|
48
|
+
});
|
|
49
|
+
if (readOnly) return content;
|
|
50
|
+
return /* @__PURE__ */ jsx(TableFloatingToolbar, { children: content });
|
|
51
|
+
});
|
|
52
|
+
function TableFloatingToolbar({ children, ...props }) {
|
|
53
|
+
const { tf } = useEditorPlugin(TablePlugin);
|
|
54
|
+
const selected = useSelected();
|
|
55
|
+
const { props: buttonProps } = useRemoveNodeButton({ element: useElement() });
|
|
56
|
+
const collapsedInside = useEditorSelector((editor) => selected && editor.api.isCollapsed(), [selected]);
|
|
57
|
+
const isFocusedLast = useFocusedLast();
|
|
58
|
+
const { canMerge, canSplit } = useTableMergeState();
|
|
59
|
+
return /* @__PURE__ */ jsxs(Popover$1, {
|
|
60
|
+
open: isFocusedLast && (canMerge || canSplit || collapsedInside),
|
|
61
|
+
modal: false,
|
|
62
|
+
children: [/* @__PURE__ */ jsx(Popover.Anchor, {
|
|
63
|
+
asChild: true,
|
|
64
|
+
children
|
|
65
|
+
}), /* @__PURE__ */ jsx(PopoverContent, {
|
|
66
|
+
asChild: true,
|
|
67
|
+
onOpenAutoFocus: (e) => e.preventDefault(),
|
|
68
|
+
contentEditable: false,
|
|
69
|
+
...props,
|
|
70
|
+
children: /* @__PURE__ */ jsxs(Toolbar$1, {
|
|
71
|
+
className: "flex w-auto max-w-[80vw] flex-row overflow-x-auto rounded-md border bg-popover p-1 shadow-md print:hidden [scrollbar-width:none]",
|
|
72
|
+
contentEditable: false,
|
|
73
|
+
children: [
|
|
74
|
+
/* @__PURE__ */ jsxs(ToolbarGroup, { children: [
|
|
75
|
+
/* @__PURE__ */ jsx(ColorDropdownMenu, {
|
|
76
|
+
tooltip: "Background color",
|
|
77
|
+
children: /* @__PURE__ */ jsx(PaintBucketIcon, {})
|
|
78
|
+
}),
|
|
79
|
+
canMerge && /* @__PURE__ */ jsx(ToolbarButton, {
|
|
80
|
+
onClick: () => tf.table.merge(),
|
|
81
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
82
|
+
tooltip: "Merge cells",
|
|
83
|
+
children: /* @__PURE__ */ jsx(CombineIcon, {})
|
|
84
|
+
}),
|
|
85
|
+
canSplit && /* @__PURE__ */ jsx(ToolbarButton, {
|
|
86
|
+
onClick: () => tf.table.split(),
|
|
87
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
88
|
+
tooltip: "Split cell",
|
|
89
|
+
children: /* @__PURE__ */ jsx(SquareSplitHorizontalIcon, {})
|
|
90
|
+
}),
|
|
91
|
+
/* @__PURE__ */ jsxs(DropdownMenu$1, {
|
|
92
|
+
modal: false,
|
|
93
|
+
children: [/* @__PURE__ */ jsx(DropdownMenuTrigger, {
|
|
94
|
+
asChild: true,
|
|
95
|
+
children: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
96
|
+
tooltip: "Cell borders",
|
|
97
|
+
children: /* @__PURE__ */ jsx(Grid2X2Icon, {})
|
|
98
|
+
})
|
|
99
|
+
}), /* @__PURE__ */ jsx(DropdownMenuPortal, { children: /* @__PURE__ */ jsx(TableBordersDropdownMenuContent, {}) })]
|
|
100
|
+
}),
|
|
101
|
+
collapsedInside && /* @__PURE__ */ jsx(ToolbarGroup, { children: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
102
|
+
tooltip: "Delete table",
|
|
103
|
+
...buttonProps,
|
|
104
|
+
children: /* @__PURE__ */ jsx(Trash2Icon, {})
|
|
105
|
+
}) })
|
|
106
|
+
] }),
|
|
107
|
+
collapsedInside && /* @__PURE__ */ jsxs(ToolbarGroup, { children: [
|
|
108
|
+
/* @__PURE__ */ jsx(ToolbarButton, {
|
|
109
|
+
onClick: () => {
|
|
110
|
+
tf.insert.tableRow({ before: true });
|
|
111
|
+
},
|
|
112
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
113
|
+
tooltip: "Insert row before",
|
|
114
|
+
children: /* @__PURE__ */ jsx(ArrowUp, {})
|
|
115
|
+
}),
|
|
116
|
+
/* @__PURE__ */ jsx(ToolbarButton, {
|
|
117
|
+
onClick: () => {
|
|
118
|
+
tf.insert.tableRow();
|
|
119
|
+
},
|
|
120
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
121
|
+
tooltip: "Insert row after",
|
|
122
|
+
children: /* @__PURE__ */ jsx(ArrowDown, {})
|
|
123
|
+
}),
|
|
124
|
+
/* @__PURE__ */ jsx(ToolbarButton, {
|
|
125
|
+
onClick: () => {
|
|
126
|
+
tf.remove.tableRow();
|
|
127
|
+
},
|
|
128
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
129
|
+
tooltip: "Delete row",
|
|
130
|
+
children: /* @__PURE__ */ jsx(XIcon, {})
|
|
131
|
+
})
|
|
132
|
+
] }),
|
|
133
|
+
collapsedInside && /* @__PURE__ */ jsxs(ToolbarGroup, { children: [
|
|
134
|
+
/* @__PURE__ */ jsx(ToolbarButton, {
|
|
135
|
+
onClick: () => {
|
|
136
|
+
tf.insert.tableColumn({ before: true });
|
|
137
|
+
},
|
|
138
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
139
|
+
tooltip: "Insert column before",
|
|
140
|
+
children: /* @__PURE__ */ jsx(ArrowLeft, {})
|
|
141
|
+
}),
|
|
142
|
+
/* @__PURE__ */ jsx(ToolbarButton, {
|
|
143
|
+
onClick: () => {
|
|
144
|
+
tf.insert.tableColumn();
|
|
145
|
+
},
|
|
146
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
147
|
+
tooltip: "Insert column after",
|
|
148
|
+
children: /* @__PURE__ */ jsx(ArrowRight, {})
|
|
149
|
+
}),
|
|
150
|
+
/* @__PURE__ */ jsx(ToolbarButton, {
|
|
151
|
+
onClick: () => {
|
|
152
|
+
tf.remove.tableColumn();
|
|
153
|
+
},
|
|
154
|
+
onMouseDown: (e) => e.preventDefault(),
|
|
155
|
+
tooltip: "Delete column",
|
|
156
|
+
children: /* @__PURE__ */ jsx(XIcon, {})
|
|
157
|
+
})
|
|
158
|
+
] })
|
|
159
|
+
]
|
|
160
|
+
})
|
|
161
|
+
})]
|
|
162
|
+
});
|
|
163
|
+
}
|
|
164
|
+
function TableBordersDropdownMenuContent(props) {
|
|
165
|
+
const editor = useEditorRef();
|
|
166
|
+
const { getOnSelectTableBorder, hasBottomBorder, hasLeftBorder, hasNoBorders, hasOuterBorders, hasRightBorder, hasTopBorder } = useTableBordersDropdownMenuContentState();
|
|
167
|
+
return /* @__PURE__ */ jsxs(DropdownMenuContent, {
|
|
168
|
+
className: "min-w-[220px]",
|
|
169
|
+
onCloseAutoFocus: (e) => {
|
|
170
|
+
e.preventDefault();
|
|
171
|
+
editor.tf.focus();
|
|
172
|
+
},
|
|
173
|
+
align: "start",
|
|
174
|
+
side: "right",
|
|
175
|
+
sideOffset: 0,
|
|
176
|
+
...props,
|
|
177
|
+
children: [/* @__PURE__ */ jsxs(DropdownMenuGroup, { children: [
|
|
178
|
+
/* @__PURE__ */ jsxs(DropdownMenuCheckboxItem, {
|
|
179
|
+
checked: hasTopBorder,
|
|
180
|
+
onCheckedChange: getOnSelectTableBorder("top"),
|
|
181
|
+
children: [/* @__PURE__ */ jsx(BorderTopIcon, {}), /* @__PURE__ */ jsx("div", { children: "Top Border" })]
|
|
182
|
+
}),
|
|
183
|
+
/* @__PURE__ */ jsxs(DropdownMenuCheckboxItem, {
|
|
184
|
+
checked: hasRightBorder,
|
|
185
|
+
onCheckedChange: getOnSelectTableBorder("right"),
|
|
186
|
+
children: [/* @__PURE__ */ jsx(BorderRightIcon, {}), /* @__PURE__ */ jsx("div", { children: "Right Border" })]
|
|
187
|
+
}),
|
|
188
|
+
/* @__PURE__ */ jsxs(DropdownMenuCheckboxItem, {
|
|
189
|
+
checked: hasBottomBorder,
|
|
190
|
+
onCheckedChange: getOnSelectTableBorder("bottom"),
|
|
191
|
+
children: [/* @__PURE__ */ jsx(BorderBottomIcon, {}), /* @__PURE__ */ jsx("div", { children: "Bottom Border" })]
|
|
192
|
+
}),
|
|
193
|
+
/* @__PURE__ */ jsxs(DropdownMenuCheckboxItem, {
|
|
194
|
+
checked: hasLeftBorder,
|
|
195
|
+
onCheckedChange: getOnSelectTableBorder("left"),
|
|
196
|
+
children: [/* @__PURE__ */ jsx(BorderLeftIcon, {}), /* @__PURE__ */ jsx("div", { children: "Left Border" })]
|
|
197
|
+
})
|
|
198
|
+
] }), /* @__PURE__ */ jsxs(DropdownMenuGroup, { children: [/* @__PURE__ */ jsxs(DropdownMenuCheckboxItem, {
|
|
199
|
+
checked: hasNoBorders,
|
|
200
|
+
onCheckedChange: getOnSelectTableBorder("none"),
|
|
201
|
+
children: [/* @__PURE__ */ jsx(BorderNoneIcon, {}), /* @__PURE__ */ jsx("div", { children: "No Border" })]
|
|
202
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuCheckboxItem, {
|
|
203
|
+
checked: hasOuterBorders,
|
|
204
|
+
onCheckedChange: getOnSelectTableBorder("outer"),
|
|
205
|
+
children: [/* @__PURE__ */ jsx(BorderAllIcon, {}), /* @__PURE__ */ jsx("div", { children: "Outside Borders" })]
|
|
206
|
+
})] })]
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
function ColorDropdownMenu({ children, tooltip }) {
|
|
210
|
+
const [open, setOpen] = React$1.useState(false);
|
|
211
|
+
const editor = useEditorRef();
|
|
212
|
+
const selectedCells = usePluginOption(TablePlugin, "selectedCells");
|
|
213
|
+
const onUpdateColor = React$1.useCallback((color) => {
|
|
214
|
+
setOpen(false);
|
|
215
|
+
setCellBackground(editor, {
|
|
216
|
+
color,
|
|
217
|
+
selectedCells: selectedCells ?? []
|
|
218
|
+
});
|
|
219
|
+
}, [selectedCells, editor]);
|
|
220
|
+
const onClearColor = React$1.useCallback(() => {
|
|
221
|
+
setOpen(false);
|
|
222
|
+
setCellBackground(editor, {
|
|
223
|
+
color: null,
|
|
224
|
+
selectedCells: selectedCells ?? []
|
|
225
|
+
});
|
|
226
|
+
}, [selectedCells, editor]);
|
|
227
|
+
return /* @__PURE__ */ jsxs(DropdownMenu$1, {
|
|
228
|
+
open,
|
|
229
|
+
onOpenChange: setOpen,
|
|
230
|
+
modal: false,
|
|
231
|
+
children: [/* @__PURE__ */ jsx(DropdownMenuTrigger, {
|
|
232
|
+
asChild: true,
|
|
233
|
+
children: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
234
|
+
tooltip,
|
|
235
|
+
children
|
|
236
|
+
})
|
|
237
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuContent, {
|
|
238
|
+
align: "start",
|
|
239
|
+
children: [/* @__PURE__ */ jsx(ToolbarMenuGroup, {
|
|
240
|
+
label: "Colors",
|
|
241
|
+
children: /* @__PURE__ */ jsx(ColorDropdownMenuItems, {
|
|
242
|
+
className: "px-2",
|
|
243
|
+
colors: DEFAULT_COLORS,
|
|
244
|
+
updateColor: onUpdateColor
|
|
245
|
+
})
|
|
246
|
+
}), /* @__PURE__ */ jsx(DropdownMenuGroup, { children: /* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
247
|
+
className: "p-2",
|
|
248
|
+
onClick: onClearColor,
|
|
249
|
+
children: [/* @__PURE__ */ jsx(EraserIcon, {}), /* @__PURE__ */ jsx("span", { children: "Clear" })]
|
|
250
|
+
}) })]
|
|
251
|
+
})]
|
|
252
|
+
});
|
|
253
|
+
}
|
|
254
|
+
function TableRowElement({ children, ...props }) {
|
|
255
|
+
const { element } = props;
|
|
256
|
+
const readOnly = useReadOnly();
|
|
257
|
+
const selected = useSelected();
|
|
258
|
+
const editor = useEditorRef();
|
|
259
|
+
const isSelectionAreaVisible = usePluginOption(BlockSelectionPlugin, "isSelectionAreaVisible");
|
|
260
|
+
const hasControls = !readOnly && !isSelectionAreaVisible;
|
|
261
|
+
const { isDragging, nodeRef, previewRef, handleRef } = useDraggable({
|
|
262
|
+
element,
|
|
263
|
+
type: element.type,
|
|
264
|
+
canDropNode: ({ dragEntry, dropEntry }) => PathApi.equals(PathApi.parent(dragEntry[1]), PathApi.parent(dropEntry[1])),
|
|
265
|
+
onDropHandler: (_, { dragItem }) => {
|
|
266
|
+
const dragElement = dragItem.element;
|
|
267
|
+
if (dragElement) editor.tf.select(dragElement);
|
|
268
|
+
}
|
|
269
|
+
});
|
|
270
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
271
|
+
...props,
|
|
272
|
+
ref: useComposedRef(props.ref, previewRef, nodeRef),
|
|
273
|
+
as: "tr",
|
|
274
|
+
className: cn("group/row", isDragging && "opacity-50"),
|
|
275
|
+
attributes: {
|
|
276
|
+
...props.attributes,
|
|
277
|
+
"data-selected": selected ? "true" : void 0
|
|
278
|
+
},
|
|
279
|
+
children: [hasControls && /* @__PURE__ */ jsxs("td", {
|
|
280
|
+
className: "w-2 select-none",
|
|
281
|
+
contentEditable: false,
|
|
282
|
+
children: [/* @__PURE__ */ jsx(RowDragHandle, { dragRef: handleRef }), /* @__PURE__ */ jsx(RowDropLine, {})]
|
|
283
|
+
}), children]
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
function RowDragHandle({ dragRef }) {
|
|
287
|
+
const editor = useEditorRef();
|
|
288
|
+
const element = useElement();
|
|
289
|
+
return /* @__PURE__ */ jsx(Button, {
|
|
290
|
+
ref: dragRef,
|
|
291
|
+
variant: "outline",
|
|
292
|
+
className: cn("-translate-y-1/2 absolute top-1/2 left-0 z-51 h-6 w-4 p-0 focus-visible:ring-0 focus-visible:ring-offset-0", "cursor-grab active:cursor-grabbing", "opacity-0 transition-opacity duration-100 group-hover/row:opacity-100 group-has-data-[resizing=\"true\"]/row:opacity-0"),
|
|
293
|
+
onClick: () => {
|
|
294
|
+
editor.tf.select(element);
|
|
295
|
+
},
|
|
296
|
+
children: /* @__PURE__ */ jsx(GripVertical, { className: "text-muted-foreground" })
|
|
297
|
+
});
|
|
298
|
+
}
|
|
299
|
+
function RowDropLine() {
|
|
300
|
+
const { dropLine } = useDropLine();
|
|
301
|
+
if (!dropLine) return null;
|
|
302
|
+
return /* @__PURE__ */ jsx("div", { className: cn("absolute inset-x-0 left-2 z-50 h-0.5 bg-brand/50", dropLine === "top" ? "-top-px" : "-bottom-px") });
|
|
303
|
+
}
|
|
304
|
+
function TableCellElement({ isHeader, ...props }) {
|
|
305
|
+
const { api } = useEditorPlugin(TablePlugin);
|
|
306
|
+
const readOnly = useReadOnly();
|
|
307
|
+
const element = props.element;
|
|
308
|
+
const tableId = useElementSelector(([node]) => node.id, [], { key: KEYS.table });
|
|
309
|
+
const rowId = useElementSelector(([node]) => node.id, [], { key: KEYS.tr });
|
|
310
|
+
const isSelectingTable = useBlockSelected(tableId);
|
|
311
|
+
const isSelectingRow = useBlockSelected(rowId) || isSelectingTable;
|
|
312
|
+
const isSelectionAreaVisible = usePluginOption(BlockSelectionPlugin, "isSelectionAreaVisible");
|
|
313
|
+
const { borders, colIndex, colSpan, minHeight, rowIndex, selected, width } = useTableCellElement();
|
|
314
|
+
const { bottomProps, hiddenLeft, leftProps, rightProps } = useTableCellElementResizable({
|
|
315
|
+
colIndex,
|
|
316
|
+
colSpan,
|
|
317
|
+
rowIndex
|
|
318
|
+
});
|
|
319
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
320
|
+
...props,
|
|
321
|
+
as: isHeader ? "th" : "td",
|
|
322
|
+
className: cn("h-full overflow-visible border-none bg-background p-0", element.background ? "bg-(--cellBackground)" : "bg-background", isHeader && "text-left *:m-0", "before:size-full", selected && "before:z-10 before:bg-brand/5", "before:absolute before:box-border before:select-none before:content-['']", borders.bottom?.size && "before:border-b before:border-b-border", borders.right?.size && "before:border-r before:border-r-border", borders.left?.size && "before:border-l before:border-l-border", borders.top?.size && "before:border-t before:border-t-border"),
|
|
323
|
+
style: {
|
|
324
|
+
"--cellBackground": element.background,
|
|
325
|
+
maxWidth: width || 240,
|
|
326
|
+
minWidth: width || 120
|
|
327
|
+
},
|
|
328
|
+
attributes: {
|
|
329
|
+
...props.attributes,
|
|
330
|
+
colSpan: api.table.getColSpan(element),
|
|
331
|
+
rowSpan: api.table.getRowSpan(element)
|
|
332
|
+
},
|
|
333
|
+
children: [
|
|
334
|
+
/* @__PURE__ */ jsx("div", {
|
|
335
|
+
className: "relative z-20 box-border h-full px-3 py-2",
|
|
336
|
+
style: { minHeight },
|
|
337
|
+
children: props.children
|
|
338
|
+
}),
|
|
339
|
+
!isSelectionAreaVisible && /* @__PURE__ */ jsx("div", {
|
|
340
|
+
className: "group absolute top-0 size-full select-none",
|
|
341
|
+
contentEditable: false,
|
|
342
|
+
suppressContentEditableWarning: true,
|
|
343
|
+
children: !readOnly && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
344
|
+
/* @__PURE__ */ jsx(ResizeHandle, {
|
|
345
|
+
...rightProps,
|
|
346
|
+
className: "-top-2 -right-1 h-[calc(100%_+_8px)] w-2 hover:bg-ring/50 data-[resizing=true]:bg-ring/50"
|
|
347
|
+
}),
|
|
348
|
+
/* @__PURE__ */ jsx(ResizeHandle, {
|
|
349
|
+
...bottomProps,
|
|
350
|
+
className: "-bottom-1 h-2"
|
|
351
|
+
}),
|
|
352
|
+
!hiddenLeft && /* @__PURE__ */ jsx(ResizeHandle, {
|
|
353
|
+
...leftProps,
|
|
354
|
+
className: "-left-1 top-0 w-2",
|
|
355
|
+
"data-resizer-left": colIndex === 0 ? "true" : void 0
|
|
356
|
+
}),
|
|
357
|
+
colIndex === 0 && /* @__PURE__ */ jsx("div", { className: cn("absolute top-0 z-30 h-full w-1 bg-ring", "left-[-1.5px]", "fade-in hidden animate-in group-has-[[data-resizer-left]:hover]/table:block group-has-[[data-resizer-left][data-resizing=\"true\"]]/table:block") })
|
|
358
|
+
] })
|
|
359
|
+
}),
|
|
360
|
+
isSelectingRow && /* @__PURE__ */ jsx("div", {
|
|
361
|
+
className: blockSelectionVariants(),
|
|
362
|
+
contentEditable: false
|
|
363
|
+
})
|
|
364
|
+
]
|
|
365
|
+
});
|
|
366
|
+
}
|
|
367
|
+
function TableCellHeaderElement(props) {
|
|
368
|
+
return /* @__PURE__ */ jsx(TableCellElement, {
|
|
369
|
+
...props,
|
|
370
|
+
isHeader: true
|
|
371
|
+
});
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
//#endregion
|
|
375
|
+
export { TableCellElement, TableCellHeaderElement, TableElement, TableRowElement };
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "../../ui/dropdown-menu.mjs";
|
|
5
|
+
import { ToolbarButton } from "../../ui/toolbar.mjs";
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
import { useEditorPlugin, useEditorSelector } from "platejs/react";
|
|
8
|
+
import * as React$1 from "react";
|
|
9
|
+
import { KEYS } from "platejs";
|
|
10
|
+
import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Combine, Grid3x3Icon, Table, Trash2Icon, Ungroup, XIcon } from "lucide-react";
|
|
11
|
+
import { TablePlugin, useTableMergeState } from "@platejs/table/react";
|
|
12
|
+
|
|
13
|
+
//#region src/components/editor/ui/table-toolbar-button.tsx
|
|
14
|
+
function TableToolbarButton(props) {
|
|
15
|
+
const tableSelected = useEditorSelector((editor$1) => editor$1.api.some({ match: { type: KEYS.table } }), []);
|
|
16
|
+
const { editor, tf } = useEditorPlugin(TablePlugin);
|
|
17
|
+
const [open, setOpen] = React$1.useState(false);
|
|
18
|
+
const mergeState = useTableMergeState();
|
|
19
|
+
return /* @__PURE__ */ jsxs(DropdownMenu, {
|
|
20
|
+
open,
|
|
21
|
+
onOpenChange: setOpen,
|
|
22
|
+
modal: false,
|
|
23
|
+
...props,
|
|
24
|
+
children: [/* @__PURE__ */ jsx(DropdownMenuTrigger, {
|
|
25
|
+
asChild: true,
|
|
26
|
+
children: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
27
|
+
pressed: open,
|
|
28
|
+
tooltip: "Table",
|
|
29
|
+
isDropdown: true,
|
|
30
|
+
children: /* @__PURE__ */ jsx(Table, {})
|
|
31
|
+
})
|
|
32
|
+
}), /* @__PURE__ */ jsx(DropdownMenuContent, {
|
|
33
|
+
className: "flex w-[180px] min-w-0 flex-col",
|
|
34
|
+
align: "start",
|
|
35
|
+
children: /* @__PURE__ */ jsxs(DropdownMenuGroup, { children: [
|
|
36
|
+
/* @__PURE__ */ jsxs(DropdownMenuSub, { children: [/* @__PURE__ */ jsxs(DropdownMenuSubTrigger, {
|
|
37
|
+
className: "gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
38
|
+
children: [/* @__PURE__ */ jsx(Grid3x3Icon, { className: "size-4" }), /* @__PURE__ */ jsx("span", { children: "Table" })]
|
|
39
|
+
}), /* @__PURE__ */ jsx(DropdownMenuSubContent, {
|
|
40
|
+
className: "m-0 p-0",
|
|
41
|
+
children: /* @__PURE__ */ jsx(TablePicker, {})
|
|
42
|
+
})] }),
|
|
43
|
+
/* @__PURE__ */ jsxs(DropdownMenuSub, { children: [/* @__PURE__ */ jsxs(DropdownMenuSubTrigger, {
|
|
44
|
+
className: "gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
45
|
+
disabled: !tableSelected,
|
|
46
|
+
children: [/* @__PURE__ */ jsx("div", { className: "size-4" }), /* @__PURE__ */ jsx("span", { children: "Cell" })]
|
|
47
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuSubContent, { children: [/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
48
|
+
className: "min-w-[180px]",
|
|
49
|
+
disabled: !mergeState.canMerge,
|
|
50
|
+
onSelect: () => {
|
|
51
|
+
tf.table.merge();
|
|
52
|
+
editor.tf.focus();
|
|
53
|
+
},
|
|
54
|
+
children: [/* @__PURE__ */ jsx(Combine, {}), "Merge cells"]
|
|
55
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
56
|
+
className: "min-w-[180px]",
|
|
57
|
+
disabled: !mergeState.canSplit,
|
|
58
|
+
onSelect: () => {
|
|
59
|
+
tf.table.split();
|
|
60
|
+
editor.tf.focus();
|
|
61
|
+
},
|
|
62
|
+
children: [/* @__PURE__ */ jsx(Ungroup, {}), "Split cell"]
|
|
63
|
+
})] })] }),
|
|
64
|
+
/* @__PURE__ */ jsxs(DropdownMenuSub, { children: [/* @__PURE__ */ jsxs(DropdownMenuSubTrigger, {
|
|
65
|
+
className: "gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
66
|
+
disabled: !tableSelected,
|
|
67
|
+
children: [/* @__PURE__ */ jsx("div", { className: "size-4" }), /* @__PURE__ */ jsx("span", { children: "Row" })]
|
|
68
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuSubContent, { children: [
|
|
69
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
70
|
+
className: "min-w-[180px]",
|
|
71
|
+
disabled: !tableSelected,
|
|
72
|
+
onSelect: () => {
|
|
73
|
+
tf.insert.tableRow({ before: true });
|
|
74
|
+
editor.tf.focus();
|
|
75
|
+
},
|
|
76
|
+
children: [/* @__PURE__ */ jsx(ArrowUp, {}), "Insert row before"]
|
|
77
|
+
}),
|
|
78
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
79
|
+
className: "min-w-[180px]",
|
|
80
|
+
disabled: !tableSelected,
|
|
81
|
+
onSelect: () => {
|
|
82
|
+
tf.insert.tableRow();
|
|
83
|
+
editor.tf.focus();
|
|
84
|
+
},
|
|
85
|
+
children: [/* @__PURE__ */ jsx(ArrowDown, {}), "Insert row after"]
|
|
86
|
+
}),
|
|
87
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
88
|
+
className: "min-w-[180px]",
|
|
89
|
+
disabled: !tableSelected,
|
|
90
|
+
onSelect: () => {
|
|
91
|
+
tf.remove.tableRow();
|
|
92
|
+
editor.tf.focus();
|
|
93
|
+
},
|
|
94
|
+
children: [/* @__PURE__ */ jsx(XIcon, {}), "Delete row"]
|
|
95
|
+
})
|
|
96
|
+
] })] }),
|
|
97
|
+
/* @__PURE__ */ jsxs(DropdownMenuSub, { children: [/* @__PURE__ */ jsxs(DropdownMenuSubTrigger, {
|
|
98
|
+
className: "gap-2 data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
99
|
+
disabled: !tableSelected,
|
|
100
|
+
children: [/* @__PURE__ */ jsx("div", { className: "size-4" }), /* @__PURE__ */ jsx("span", { children: "Column" })]
|
|
101
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuSubContent, { children: [
|
|
102
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
103
|
+
className: "min-w-[180px]",
|
|
104
|
+
disabled: !tableSelected,
|
|
105
|
+
onSelect: () => {
|
|
106
|
+
tf.insert.tableColumn({ before: true });
|
|
107
|
+
editor.tf.focus();
|
|
108
|
+
},
|
|
109
|
+
children: [/* @__PURE__ */ jsx(ArrowLeft, {}), "Insert column before"]
|
|
110
|
+
}),
|
|
111
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
112
|
+
className: "min-w-[180px]",
|
|
113
|
+
disabled: !tableSelected,
|
|
114
|
+
onSelect: () => {
|
|
115
|
+
tf.insert.tableColumn();
|
|
116
|
+
editor.tf.focus();
|
|
117
|
+
},
|
|
118
|
+
children: [/* @__PURE__ */ jsx(ArrowRight, {}), "Insert column after"]
|
|
119
|
+
}),
|
|
120
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
121
|
+
className: "min-w-[180px]",
|
|
122
|
+
disabled: !tableSelected,
|
|
123
|
+
onSelect: () => {
|
|
124
|
+
tf.remove.tableColumn();
|
|
125
|
+
editor.tf.focus();
|
|
126
|
+
},
|
|
127
|
+
children: [/* @__PURE__ */ jsx(XIcon, {}), "Delete column"]
|
|
128
|
+
})
|
|
129
|
+
] })] }),
|
|
130
|
+
/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
131
|
+
className: "min-w-[180px]",
|
|
132
|
+
disabled: !tableSelected,
|
|
133
|
+
onSelect: () => {
|
|
134
|
+
tf.remove.table();
|
|
135
|
+
editor.tf.focus();
|
|
136
|
+
},
|
|
137
|
+
children: [/* @__PURE__ */ jsx(Trash2Icon, {}), "Delete table"]
|
|
138
|
+
})
|
|
139
|
+
] })
|
|
140
|
+
})]
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
function TablePicker() {
|
|
144
|
+
const { editor, tf } = useEditorPlugin(TablePlugin);
|
|
145
|
+
const [tablePicker, setTablePicker] = React$1.useState({
|
|
146
|
+
grid: Array.from({ length: 8 }, () => Array.from({ length: 8 }).fill(0)),
|
|
147
|
+
size: {
|
|
148
|
+
colCount: 0,
|
|
149
|
+
rowCount: 0
|
|
150
|
+
}
|
|
151
|
+
});
|
|
152
|
+
const onCellMove = (rowIndex, colIndex) => {
|
|
153
|
+
const newGrid = [...tablePicker.grid];
|
|
154
|
+
for (let i = 0; i < newGrid.length; i++) for (let j = 0; j < newGrid[i].length; j++) newGrid[i][j] = i >= 0 && i <= rowIndex && j >= 0 && j <= colIndex ? 1 : 0;
|
|
155
|
+
setTablePicker({
|
|
156
|
+
grid: newGrid,
|
|
157
|
+
size: {
|
|
158
|
+
colCount: colIndex + 1,
|
|
159
|
+
rowCount: rowIndex + 1
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
};
|
|
163
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
164
|
+
className: "flex! m-0 flex-col p-0",
|
|
165
|
+
onClick: () => {
|
|
166
|
+
tf.insert.table(tablePicker.size, { select: true });
|
|
167
|
+
editor.tf.focus();
|
|
168
|
+
},
|
|
169
|
+
role: "button",
|
|
170
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
171
|
+
className: "grid size-[130px] grid-cols-8 gap-0.5 p-1",
|
|
172
|
+
children: tablePicker.grid.map((rows, rowIndex) => rows.map((value, columIndex) => /* @__PURE__ */ jsx("div", {
|
|
173
|
+
className: cn("col-span-1 size-3 border border-solid bg-secondary", !!value && "border-current"),
|
|
174
|
+
onMouseMove: () => {
|
|
175
|
+
onCellMove(rowIndex, columIndex);
|
|
176
|
+
}
|
|
177
|
+
}, `(${rowIndex},${columIndex})`)))
|
|
178
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
179
|
+
className: "text-center text-current text-xs",
|
|
180
|
+
children: [
|
|
181
|
+
tablePicker.size.rowCount,
|
|
182
|
+
" x ",
|
|
183
|
+
tablePicker.size.colCount
|
|
184
|
+
]
|
|
185
|
+
})]
|
|
186
|
+
});
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
//#endregion
|
|
190
|
+
export { TableToolbarButton };
|