@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,488 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Button } from "../../ui/button.mjs";
|
|
5
|
+
import { Command as Command$1, CommandGroup, CommandItem, CommandList } from "../../ui/command.mjs";
|
|
6
|
+
import { Popover, PopoverAnchor, PopoverContent } from "../../ui/popover.mjs";
|
|
7
|
+
import { commentPlugin } from "../plugins/comment-kit.mjs";
|
|
8
|
+
import { AIChatEditor } from "./ai-chat-editor.mjs";
|
|
9
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
10
|
+
import { useEditorPlugin, useEditorRef, useFocusedLast, useHotkeys, usePluginOption } from "platejs/react";
|
|
11
|
+
import * as React$1 from "react";
|
|
12
|
+
import { KEYS, NodeApi, TextApi, isHotkey } from "platejs";
|
|
13
|
+
import { AIChatPlugin, AIPlugin, useEditorChat, useLastAssistantMessage } from "@platejs/ai/react";
|
|
14
|
+
import { getTransientCommentKey } from "@platejs/comment";
|
|
15
|
+
import { BlockSelectionPlugin, useIsSelecting } from "@platejs/selection/react";
|
|
16
|
+
import { getTransientSuggestionKey } from "@platejs/suggestion";
|
|
17
|
+
import { Command } from "cmdk";
|
|
18
|
+
import { Album, BadgeHelp, BookOpenCheck, Check, CornerUpLeft, FeatherIcon, ListEnd, ListMinus, ListPlus, Loader2Icon, PauseIcon, PenLine, SmileIcon, Wand, X } from "lucide-react";
|
|
19
|
+
|
|
20
|
+
//#region src/components/editor/ui/ai-menu.tsx
|
|
21
|
+
function AIMenu() {
|
|
22
|
+
const { api, editor } = useEditorPlugin(AIChatPlugin);
|
|
23
|
+
const mode = usePluginOption(AIChatPlugin, "mode");
|
|
24
|
+
const toolName = usePluginOption(AIChatPlugin, "toolName");
|
|
25
|
+
const streaming = usePluginOption(AIChatPlugin, "streaming");
|
|
26
|
+
const isSelecting = useIsSelecting();
|
|
27
|
+
const isFocusedLast = useFocusedLast();
|
|
28
|
+
const open = usePluginOption(AIChatPlugin, "open") && isFocusedLast;
|
|
29
|
+
const [value, setValue] = React$1.useState("");
|
|
30
|
+
const [input, setInput] = React$1.useState("");
|
|
31
|
+
const { messages, status } = usePluginOption(AIChatPlugin, "chat");
|
|
32
|
+
const [anchorElement, setAnchorElement] = React$1.useState(null);
|
|
33
|
+
const content = useLastAssistantMessage()?.parts.find((part) => part.type === "text")?.text;
|
|
34
|
+
React$1.useEffect(() => {
|
|
35
|
+
if (streaming) {
|
|
36
|
+
const anchor = api.aiChat.node({ anchor: true });
|
|
37
|
+
if (!anchor) return;
|
|
38
|
+
setTimeout(() => {
|
|
39
|
+
setAnchorElement(editor.api.toDOMNode(anchor[0]));
|
|
40
|
+
}, 0);
|
|
41
|
+
}
|
|
42
|
+
}, [streaming]);
|
|
43
|
+
const setOpen = (open$1) => {
|
|
44
|
+
if (open$1) api.aiChat.show();
|
|
45
|
+
else api.aiChat.hide();
|
|
46
|
+
};
|
|
47
|
+
const show = (anchorElement$1) => {
|
|
48
|
+
setAnchorElement(anchorElement$1);
|
|
49
|
+
setOpen(true);
|
|
50
|
+
};
|
|
51
|
+
useEditorChat({
|
|
52
|
+
onOpenBlockSelection: (blocks) => {
|
|
53
|
+
if (blocks.length > 0 && blocks[blocks.length - 1].length > 0) show(editor.api.toDOMNode(blocks[blocks.length - 1][0]));
|
|
54
|
+
},
|
|
55
|
+
onOpenChange: (open$1) => {
|
|
56
|
+
if (!open$1) {
|
|
57
|
+
setAnchorElement(null);
|
|
58
|
+
setInput("");
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
onOpenCursor: () => {
|
|
62
|
+
const [ancestor] = editor.api.block({ highest: true });
|
|
63
|
+
if (!editor.api.isAt({ end: true }) && !editor.api.isEmpty(ancestor)) editor.getApi(BlockSelectionPlugin).blockSelection.set(ancestor.id);
|
|
64
|
+
show(editor.api.toDOMNode(ancestor));
|
|
65
|
+
},
|
|
66
|
+
onOpenSelection: () => {
|
|
67
|
+
const blocks = editor.api.blocks();
|
|
68
|
+
if (blocks.length > 0 && blocks[blocks.length - 1].length > 0) show(editor.api.toDOMNode(blocks[blocks.length - 1][0]));
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
useHotkeys("esc", () => {
|
|
72
|
+
api.aiChat.stop();
|
|
73
|
+
});
|
|
74
|
+
const isLoading = status === "streaming" || status === "submitted";
|
|
75
|
+
React$1.useEffect(() => {
|
|
76
|
+
if (toolName === "edit" && mode === "chat" && !isLoading) {
|
|
77
|
+
let anchorNode = editor.api.node({
|
|
78
|
+
at: [],
|
|
79
|
+
reverse: true,
|
|
80
|
+
match: (n) => !!n[KEYS.suggestion] && !!n[getTransientSuggestionKey()]
|
|
81
|
+
});
|
|
82
|
+
if (!anchorNode) anchorNode = editor.getApi(BlockSelectionPlugin).blockSelection.getNodes({
|
|
83
|
+
selectionFallback: true,
|
|
84
|
+
sort: true
|
|
85
|
+
}).at(-1);
|
|
86
|
+
if (!anchorNode) return;
|
|
87
|
+
const block = editor.api.block({ at: anchorNode[1] });
|
|
88
|
+
if (block) setAnchorElement(editor.api.toDOMNode(block[0]));
|
|
89
|
+
}
|
|
90
|
+
}, [isLoading]);
|
|
91
|
+
if (isLoading && mode === "insert") return null;
|
|
92
|
+
if (toolName === "comment") return null;
|
|
93
|
+
if (toolName === "edit" && mode === "chat" && isLoading) return null;
|
|
94
|
+
return /* @__PURE__ */ jsxs(Popover, {
|
|
95
|
+
open,
|
|
96
|
+
onOpenChange: setOpen,
|
|
97
|
+
modal: false,
|
|
98
|
+
children: [/* @__PURE__ */ jsx(PopoverAnchor, { virtualRef: { current: anchorElement } }), /* @__PURE__ */ jsx(PopoverContent, {
|
|
99
|
+
className: "border-none bg-transparent p-0 shadow-none",
|
|
100
|
+
style: { width: anchorElement?.offsetWidth },
|
|
101
|
+
onEscapeKeyDown: (e) => {
|
|
102
|
+
e.preventDefault();
|
|
103
|
+
api.aiChat.hide();
|
|
104
|
+
},
|
|
105
|
+
align: "center",
|
|
106
|
+
side: "bottom",
|
|
107
|
+
children: /* @__PURE__ */ jsxs(Command$1, {
|
|
108
|
+
className: "w-full rounded-lg border shadow-md",
|
|
109
|
+
value,
|
|
110
|
+
onValueChange: setValue,
|
|
111
|
+
children: [
|
|
112
|
+
mode === "chat" && isSelecting && content && toolName === "generate" && /* @__PURE__ */ jsx(AIChatEditor, { content }),
|
|
113
|
+
isLoading ? /* @__PURE__ */ jsxs("div", {
|
|
114
|
+
className: "flex grow select-none items-center gap-2 p-2 text-muted-foreground text-sm",
|
|
115
|
+
children: [/* @__PURE__ */ jsx(Loader2Icon, { className: "size-4 animate-spin" }), messages.length > 1 ? "Editing..." : "Thinking..."]
|
|
116
|
+
}) : /* @__PURE__ */ jsx(Command.Input, {
|
|
117
|
+
className: cn("flex h-9 w-full min-w-0 border-input bg-transparent px-3 py-1 text-base outline-none transition-[color,box-shadow] placeholder:text-muted-foreground md:text-sm dark:bg-input/30", "aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40", "border-b focus-visible:ring-transparent"),
|
|
118
|
+
value: input,
|
|
119
|
+
onKeyDown: (e) => {
|
|
120
|
+
if (isHotkey("backspace")(e) && input.length === 0) {
|
|
121
|
+
e.preventDefault();
|
|
122
|
+
api.aiChat.hide();
|
|
123
|
+
}
|
|
124
|
+
if (isHotkey("enter")(e) && !e.shiftKey && !value) {
|
|
125
|
+
e.preventDefault();
|
|
126
|
+
api.aiChat.submit(input);
|
|
127
|
+
setInput("");
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
onValueChange: setInput,
|
|
131
|
+
placeholder: "Ask AI anything...",
|
|
132
|
+
"data-plate-focus": true,
|
|
133
|
+
autoFocus: true
|
|
134
|
+
}),
|
|
135
|
+
!isLoading && /* @__PURE__ */ jsx(CommandList, { children: /* @__PURE__ */ jsx(AIMenuItems, {
|
|
136
|
+
input,
|
|
137
|
+
setInput,
|
|
138
|
+
setValue
|
|
139
|
+
}) })
|
|
140
|
+
]
|
|
141
|
+
})
|
|
142
|
+
})]
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
const AICommentIcon = () => /* @__PURE__ */ jsxs("svg", {
|
|
146
|
+
fill: "none",
|
|
147
|
+
height: "24",
|
|
148
|
+
stroke: "currentColor",
|
|
149
|
+
strokeLinecap: "round",
|
|
150
|
+
strokeLinejoin: "round",
|
|
151
|
+
strokeWidth: "2",
|
|
152
|
+
viewBox: "0 0 24 24",
|
|
153
|
+
width: "24",
|
|
154
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
155
|
+
children: [
|
|
156
|
+
/* @__PURE__ */ jsx("path", {
|
|
157
|
+
d: "M0 0h24v24H0z",
|
|
158
|
+
fill: "none",
|
|
159
|
+
stroke: "none"
|
|
160
|
+
}),
|
|
161
|
+
/* @__PURE__ */ jsx("path", { d: "M8 9h8" }),
|
|
162
|
+
/* @__PURE__ */ jsx("path", { d: "M8 13h4.5" }),
|
|
163
|
+
/* @__PURE__ */ jsx("path", { d: "M10 19l-1 -1h-3a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5" }),
|
|
164
|
+
/* @__PURE__ */ jsx("path", { d: "M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" })
|
|
165
|
+
]
|
|
166
|
+
});
|
|
167
|
+
const aiChatItems = {
|
|
168
|
+
accept: {
|
|
169
|
+
icon: /* @__PURE__ */ jsx(Check, {}),
|
|
170
|
+
label: "Accept",
|
|
171
|
+
value: "accept",
|
|
172
|
+
onSelect: ({ aiEditor, editor }) => {
|
|
173
|
+
const { mode, toolName } = editor.getOptions(AIChatPlugin);
|
|
174
|
+
if (mode === "chat" && toolName === "generate") return editor.getTransforms(AIChatPlugin).aiChat.replaceSelection(aiEditor);
|
|
175
|
+
editor.getTransforms(AIChatPlugin).aiChat.accept();
|
|
176
|
+
editor.tf.focus({ edge: "end" });
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
comment: {
|
|
180
|
+
icon: /* @__PURE__ */ jsx(AICommentIcon, {}),
|
|
181
|
+
label: "Comment",
|
|
182
|
+
value: "comment",
|
|
183
|
+
onSelect: ({ editor, input }) => {
|
|
184
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
185
|
+
mode: "insert",
|
|
186
|
+
prompt: "Please comment on the following content and provide reasonable and meaningful feedback.",
|
|
187
|
+
toolName: "comment"
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
continueWrite: {
|
|
192
|
+
icon: /* @__PURE__ */ jsx(PenLine, {}),
|
|
193
|
+
label: "Continue writing",
|
|
194
|
+
value: "continueWrite",
|
|
195
|
+
onSelect: ({ editor, input }) => {
|
|
196
|
+
const ancestorNode = editor.api.block({ highest: true });
|
|
197
|
+
if (!ancestorNode) return;
|
|
198
|
+
const isEmpty = NodeApi.string(ancestorNode[0]).trim().length === 0;
|
|
199
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
200
|
+
mode: "insert",
|
|
201
|
+
prompt: isEmpty ? `<Document>
|
|
202
|
+
{editor}
|
|
203
|
+
</Document>
|
|
204
|
+
Start writing a new paragraph AFTER <Document> ONLY ONE SENTENCE` : "Continue writing AFTER <Block> ONLY ONE SENTENCE. DONT REPEAT THE TEXT.",
|
|
205
|
+
toolName: "generate"
|
|
206
|
+
});
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
discard: {
|
|
210
|
+
icon: /* @__PURE__ */ jsx(X, {}),
|
|
211
|
+
label: "Discard",
|
|
212
|
+
shortcut: "Escape",
|
|
213
|
+
value: "discard",
|
|
214
|
+
onSelect: ({ editor }) => {
|
|
215
|
+
editor.getTransforms(AIPlugin).ai.undo();
|
|
216
|
+
editor.getApi(AIChatPlugin).aiChat.hide();
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
emojify: {
|
|
220
|
+
icon: /* @__PURE__ */ jsx(SmileIcon, {}),
|
|
221
|
+
label: "Emojify",
|
|
222
|
+
value: "emojify",
|
|
223
|
+
onSelect: ({ editor, input }) => {
|
|
224
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
225
|
+
prompt: "Emojify",
|
|
226
|
+
toolName: "edit"
|
|
227
|
+
});
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
explain: {
|
|
231
|
+
icon: /* @__PURE__ */ jsx(BadgeHelp, {}),
|
|
232
|
+
label: "Explain",
|
|
233
|
+
value: "explain",
|
|
234
|
+
onSelect: ({ editor, input }) => {
|
|
235
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
236
|
+
prompt: {
|
|
237
|
+
default: "Explain {editor}",
|
|
238
|
+
selecting: "Explain"
|
|
239
|
+
},
|
|
240
|
+
toolName: "generate"
|
|
241
|
+
});
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
fixSpelling: {
|
|
245
|
+
icon: /* @__PURE__ */ jsx(Check, {}),
|
|
246
|
+
label: "Fix spelling & grammar",
|
|
247
|
+
value: "fixSpelling",
|
|
248
|
+
onSelect: ({ editor, input }) => {
|
|
249
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
250
|
+
prompt: "Fix spelling and grammar",
|
|
251
|
+
toolName: "edit"
|
|
252
|
+
});
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
generateMarkdownSample: {
|
|
256
|
+
icon: /* @__PURE__ */ jsx(BookOpenCheck, {}),
|
|
257
|
+
label: "Generate Markdown sample",
|
|
258
|
+
value: "generateMarkdownSample",
|
|
259
|
+
onSelect: ({ editor, input }) => {
|
|
260
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
261
|
+
prompt: "Generate a markdown sample",
|
|
262
|
+
toolName: "generate"
|
|
263
|
+
});
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
generateMdxSample: {
|
|
267
|
+
icon: /* @__PURE__ */ jsx(BookOpenCheck, {}),
|
|
268
|
+
label: "Generate MDX sample",
|
|
269
|
+
value: "generateMdxSample",
|
|
270
|
+
onSelect: ({ editor, input }) => {
|
|
271
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
272
|
+
prompt: "Generate a mdx sample",
|
|
273
|
+
toolName: "generate"
|
|
274
|
+
});
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
improveWriting: {
|
|
278
|
+
icon: /* @__PURE__ */ jsx(Wand, {}),
|
|
279
|
+
label: "Improve writing",
|
|
280
|
+
value: "improveWriting",
|
|
281
|
+
onSelect: ({ editor, input }) => {
|
|
282
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
283
|
+
prompt: "Improve the writing",
|
|
284
|
+
toolName: "edit"
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
insertBelow: {
|
|
289
|
+
icon: /* @__PURE__ */ jsx(ListEnd, {}),
|
|
290
|
+
label: "Insert below",
|
|
291
|
+
value: "insertBelow",
|
|
292
|
+
onSelect: ({ aiEditor, editor }) => {
|
|
293
|
+
/** Format: 'none' Fix insert table */
|
|
294
|
+
editor.getTransforms(AIChatPlugin).aiChat.insertBelow(aiEditor, { format: "none" });
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
makeLonger: {
|
|
298
|
+
icon: /* @__PURE__ */ jsx(ListPlus, {}),
|
|
299
|
+
label: "Make longer",
|
|
300
|
+
value: "makeLonger",
|
|
301
|
+
onSelect: ({ editor, input }) => {
|
|
302
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
303
|
+
prompt: "Make longer",
|
|
304
|
+
toolName: "edit"
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
makeShorter: {
|
|
309
|
+
icon: /* @__PURE__ */ jsx(ListMinus, {}),
|
|
310
|
+
label: "Make shorter",
|
|
311
|
+
value: "makeShorter",
|
|
312
|
+
onSelect: ({ editor, input }) => {
|
|
313
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
314
|
+
prompt: "Make shorter",
|
|
315
|
+
toolName: "edit"
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
replace: {
|
|
320
|
+
icon: /* @__PURE__ */ jsx(Check, {}),
|
|
321
|
+
label: "Replace selection",
|
|
322
|
+
value: "replace",
|
|
323
|
+
onSelect: ({ aiEditor, editor }) => {
|
|
324
|
+
editor.getTransforms(AIChatPlugin).aiChat.replaceSelection(aiEditor);
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
simplifyLanguage: {
|
|
328
|
+
icon: /* @__PURE__ */ jsx(FeatherIcon, {}),
|
|
329
|
+
label: "Simplify language",
|
|
330
|
+
value: "simplifyLanguage",
|
|
331
|
+
onSelect: ({ editor, input }) => {
|
|
332
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
333
|
+
prompt: "Simplify the language",
|
|
334
|
+
toolName: "edit"
|
|
335
|
+
});
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
summarize: {
|
|
339
|
+
icon: /* @__PURE__ */ jsx(Album, {}),
|
|
340
|
+
label: "Add a summary",
|
|
341
|
+
value: "summarize",
|
|
342
|
+
onSelect: ({ editor, input }) => {
|
|
343
|
+
editor.getApi(AIChatPlugin).aiChat.submit(input, {
|
|
344
|
+
mode: "insert",
|
|
345
|
+
prompt: {
|
|
346
|
+
default: "Summarize {editor}",
|
|
347
|
+
selecting: "Summarize"
|
|
348
|
+
},
|
|
349
|
+
toolName: "generate"
|
|
350
|
+
});
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
tryAgain: {
|
|
354
|
+
icon: /* @__PURE__ */ jsx(CornerUpLeft, {}),
|
|
355
|
+
label: "Try again",
|
|
356
|
+
value: "tryAgain",
|
|
357
|
+
onSelect: ({ editor }) => {
|
|
358
|
+
editor.getApi(AIChatPlugin).aiChat.reload();
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
};
|
|
362
|
+
const menuStateItems = {
|
|
363
|
+
cursorCommand: [{ items: [
|
|
364
|
+
aiChatItems.comment,
|
|
365
|
+
aiChatItems.generateMdxSample,
|
|
366
|
+
aiChatItems.generateMarkdownSample,
|
|
367
|
+
aiChatItems.continueWrite,
|
|
368
|
+
aiChatItems.summarize,
|
|
369
|
+
aiChatItems.explain
|
|
370
|
+
] }],
|
|
371
|
+
cursorSuggestion: [{ items: [
|
|
372
|
+
aiChatItems.accept,
|
|
373
|
+
aiChatItems.discard,
|
|
374
|
+
aiChatItems.tryAgain
|
|
375
|
+
] }],
|
|
376
|
+
selectionCommand: [{ items: [
|
|
377
|
+
aiChatItems.improveWriting,
|
|
378
|
+
aiChatItems.comment,
|
|
379
|
+
aiChatItems.emojify,
|
|
380
|
+
aiChatItems.makeLonger,
|
|
381
|
+
aiChatItems.makeShorter,
|
|
382
|
+
aiChatItems.fixSpelling,
|
|
383
|
+
aiChatItems.simplifyLanguage
|
|
384
|
+
] }],
|
|
385
|
+
selectionSuggestion: [{ items: [
|
|
386
|
+
aiChatItems.accept,
|
|
387
|
+
aiChatItems.discard,
|
|
388
|
+
aiChatItems.insertBelow,
|
|
389
|
+
aiChatItems.tryAgain
|
|
390
|
+
] }]
|
|
391
|
+
};
|
|
392
|
+
const AIMenuItems = ({ input, setInput, setValue }) => {
|
|
393
|
+
const editor = useEditorRef();
|
|
394
|
+
const { messages } = usePluginOption(AIChatPlugin, "chat");
|
|
395
|
+
const aiEditor = usePluginOption(AIChatPlugin, "aiEditor");
|
|
396
|
+
const isSelecting = useIsSelecting();
|
|
397
|
+
const menuState = React$1.useMemo(() => {
|
|
398
|
+
if (messages && messages.length > 0) return isSelecting ? "selectionSuggestion" : "cursorSuggestion";
|
|
399
|
+
return isSelecting ? "selectionCommand" : "cursorCommand";
|
|
400
|
+
}, [isSelecting, messages]);
|
|
401
|
+
const menuGroups = React$1.useMemo(() => {
|
|
402
|
+
return menuStateItems[menuState];
|
|
403
|
+
}, [menuState]);
|
|
404
|
+
React$1.useEffect(() => {
|
|
405
|
+
if (menuGroups.length > 0 && menuGroups[0].items.length > 0) setValue(menuGroups[0].items[0].value);
|
|
406
|
+
}, [menuGroups, setValue]);
|
|
407
|
+
return /* @__PURE__ */ jsx(Fragment, { children: menuGroups.map((group, index) => /* @__PURE__ */ jsx(CommandGroup, {
|
|
408
|
+
heading: group.heading,
|
|
409
|
+
children: group.items.map((menuItem) => /* @__PURE__ */ jsxs(CommandItem, {
|
|
410
|
+
className: "[&_svg]:text-muted-foreground",
|
|
411
|
+
value: menuItem.value,
|
|
412
|
+
onSelect: () => {
|
|
413
|
+
menuItem.onSelect?.({
|
|
414
|
+
aiEditor,
|
|
415
|
+
editor,
|
|
416
|
+
input
|
|
417
|
+
});
|
|
418
|
+
setInput("");
|
|
419
|
+
},
|
|
420
|
+
children: [menuItem.icon, /* @__PURE__ */ jsx("span", { children: menuItem.label })]
|
|
421
|
+
}, menuItem.value))
|
|
422
|
+
}, index)) });
|
|
423
|
+
};
|
|
424
|
+
function AILoadingBar() {
|
|
425
|
+
const editor = useEditorRef();
|
|
426
|
+
const toolName = usePluginOption(AIChatPlugin, "toolName");
|
|
427
|
+
const chat = usePluginOption(AIChatPlugin, "chat");
|
|
428
|
+
const mode = usePluginOption(AIChatPlugin, "mode");
|
|
429
|
+
const { status } = chat;
|
|
430
|
+
const { api } = useEditorPlugin(AIChatPlugin);
|
|
431
|
+
const isLoading = status === "streaming" || status === "submitted";
|
|
432
|
+
const handleComments = (type) => {
|
|
433
|
+
if (type === "accept") editor.tf.unsetNodes([getTransientCommentKey()], {
|
|
434
|
+
at: [],
|
|
435
|
+
match: (n) => TextApi.isText(n) && !!n[KEYS.comment]
|
|
436
|
+
});
|
|
437
|
+
if (type === "reject") editor.getTransforms(commentPlugin).comment.unsetMark({ transient: true });
|
|
438
|
+
api.aiChat.hide();
|
|
439
|
+
};
|
|
440
|
+
useHotkeys("esc", () => {
|
|
441
|
+
api.aiChat.stop();
|
|
442
|
+
});
|
|
443
|
+
if (isLoading && (mode === "insert" || toolName === "comment" || toolName === "edit" && mode === "chat")) return /* @__PURE__ */ jsxs("div", {
|
|
444
|
+
className: cn("-translate-x-1/2 absolute bottom-4 left-1/2 z-20 flex items-center gap-3 rounded-md border border-border bg-muted px-3 py-1.5 text-muted-foreground text-sm shadow-md transition-all duration-300"),
|
|
445
|
+
children: [
|
|
446
|
+
/* @__PURE__ */ jsx("span", { className: "h-4 w-4 animate-spin rounded-full border-2 border-muted-foreground border-t-transparent" }),
|
|
447
|
+
/* @__PURE__ */ jsx("span", { children: status === "submitted" ? "Thinking..." : "Writing..." }),
|
|
448
|
+
/* @__PURE__ */ jsxs(Button, {
|
|
449
|
+
size: "sm",
|
|
450
|
+
variant: "ghost",
|
|
451
|
+
className: "flex items-center gap-1 text-xs",
|
|
452
|
+
onClick: () => api.aiChat.stop(),
|
|
453
|
+
children: [
|
|
454
|
+
/* @__PURE__ */ jsx(PauseIcon, { className: "h-4 w-4" }),
|
|
455
|
+
"Stop",
|
|
456
|
+
/* @__PURE__ */ jsx("kbd", {
|
|
457
|
+
className: "ml-1 rounded bg-border px-1 font-mono text-[10px] text-muted-foreground shadow-sm",
|
|
458
|
+
children: "Esc"
|
|
459
|
+
})
|
|
460
|
+
]
|
|
461
|
+
})
|
|
462
|
+
]
|
|
463
|
+
});
|
|
464
|
+
if (toolName === "comment" && status === "ready") return /* @__PURE__ */ jsx("div", {
|
|
465
|
+
className: cn("-translate-x-1/2 absolute bottom-4 left-1/2 z-50 flex flex-col items-center gap-0 rounded-xl border border-border/50 bg-popover p-1 text-muted-foreground text-sm shadow-xl backdrop-blur-sm", "p-3"),
|
|
466
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
467
|
+
className: "flex w-full items-center justify-between gap-3",
|
|
468
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
469
|
+
className: "flex items-center gap-5",
|
|
470
|
+
children: [/* @__PURE__ */ jsx(Button, {
|
|
471
|
+
size: "sm",
|
|
472
|
+
disabled: isLoading,
|
|
473
|
+
onClick: () => handleComments("accept"),
|
|
474
|
+
children: "Accept"
|
|
475
|
+
}), /* @__PURE__ */ jsx(Button, {
|
|
476
|
+
size: "sm",
|
|
477
|
+
disabled: isLoading,
|
|
478
|
+
onClick: () => handleComments("reject"),
|
|
479
|
+
children: "Reject"
|
|
480
|
+
})]
|
|
481
|
+
})
|
|
482
|
+
})
|
|
483
|
+
});
|
|
484
|
+
return null;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
//#endregion
|
|
488
|
+
export { AILoadingBar, AIMenu };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
import { PlateElement, PlateText, usePluginOption } from "platejs/react";
|
|
6
|
+
import { AIChatPlugin } from "@platejs/ai/react";
|
|
7
|
+
|
|
8
|
+
//#region src/components/editor/ui/ai-node.tsx
|
|
9
|
+
function AILeaf(props) {
|
|
10
|
+
const streaming = usePluginOption(AIChatPlugin, "streaming");
|
|
11
|
+
return /* @__PURE__ */ jsx(PlateText, {
|
|
12
|
+
className: cn("border-b-2 border-b-purple-100 bg-purple-50 text-purple-800", "transition-all duration-200 ease-in-out", props.editor.getApi(AIChatPlugin).aiChat.node({ streaming: true })?.[0] === props.text && streaming && "after:ml-1.5 after:inline-block after:h-3 after:w-3 after:rounded-full after:bg-primary after:align-middle after:content-[\"\"]"),
|
|
13
|
+
...props
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
function AIAnchorElement(props) {
|
|
17
|
+
return /* @__PURE__ */ jsx(PlateElement, {
|
|
18
|
+
...props,
|
|
19
|
+
children: /* @__PURE__ */ jsx("div", { className: "h-[0.1px]" })
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
export { AIAnchorElement, AILeaf };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ToolbarButton } from "../../ui/toolbar.mjs";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
import { useEditorPlugin } from "platejs/react";
|
|
6
|
+
import { AIChatPlugin } from "@platejs/ai/react";
|
|
7
|
+
|
|
8
|
+
//#region src/components/editor/ui/ai-toolbar-button.tsx
|
|
9
|
+
function AIToolbarButton(props) {
|
|
10
|
+
const { api } = useEditorPlugin(AIChatPlugin);
|
|
11
|
+
return /* @__PURE__ */ jsx(ToolbarButton, {
|
|
12
|
+
...props,
|
|
13
|
+
onClick: () => {
|
|
14
|
+
api.aiChat.show();
|
|
15
|
+
},
|
|
16
|
+
onMouseDown: (e) => {
|
|
17
|
+
e.preventDefault();
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
//#endregion
|
|
23
|
+
export { AIToolbarButton };
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { DropdownMenu, DropdownMenuContent, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuTrigger } from "../../ui/dropdown-menu.mjs";
|
|
4
|
+
import { ToolbarButton } from "../../ui/toolbar.mjs";
|
|
5
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
6
|
+
import { useEditorPlugin, useSelectionFragmentProp } from "platejs/react";
|
|
7
|
+
import * as React$1 from "react";
|
|
8
|
+
import { AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon } from "lucide-react";
|
|
9
|
+
import { TextAlignPlugin } from "@platejs/basic-styles/react";
|
|
10
|
+
|
|
11
|
+
//#region src/components/editor/ui/align-toolbar-button.tsx
|
|
12
|
+
const items = [
|
|
13
|
+
{
|
|
14
|
+
icon: AlignLeftIcon,
|
|
15
|
+
value: "left"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
icon: AlignCenterIcon,
|
|
19
|
+
value: "center"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
icon: AlignRightIcon,
|
|
23
|
+
value: "right"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
icon: AlignJustifyIcon,
|
|
27
|
+
value: "justify"
|
|
28
|
+
}
|
|
29
|
+
];
|
|
30
|
+
function AlignToolbarButton(props) {
|
|
31
|
+
const { editor, tf } = useEditorPlugin(TextAlignPlugin);
|
|
32
|
+
const value = useSelectionFragmentProp({
|
|
33
|
+
defaultValue: "start",
|
|
34
|
+
getProp: (node) => node.align
|
|
35
|
+
}) ?? "left";
|
|
36
|
+
const [open, setOpen] = React$1.useState(false);
|
|
37
|
+
const IconValue = items.find((item) => item.value === value)?.icon ?? AlignLeftIcon;
|
|
38
|
+
return /* @__PURE__ */ jsxs(DropdownMenu, {
|
|
39
|
+
open,
|
|
40
|
+
onOpenChange: setOpen,
|
|
41
|
+
modal: false,
|
|
42
|
+
...props,
|
|
43
|
+
children: [/* @__PURE__ */ jsx(DropdownMenuTrigger, {
|
|
44
|
+
asChild: true,
|
|
45
|
+
children: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
46
|
+
pressed: open,
|
|
47
|
+
tooltip: "Align",
|
|
48
|
+
isDropdown: true,
|
|
49
|
+
children: /* @__PURE__ */ jsx(IconValue, {})
|
|
50
|
+
})
|
|
51
|
+
}), /* @__PURE__ */ jsx(DropdownMenuContent, {
|
|
52
|
+
className: "min-w-0",
|
|
53
|
+
align: "start",
|
|
54
|
+
children: /* @__PURE__ */ jsx(DropdownMenuRadioGroup, {
|
|
55
|
+
value,
|
|
56
|
+
onValueChange: (value$1) => {
|
|
57
|
+
tf.textAlign.setNodes(value$1);
|
|
58
|
+
editor.tf.focus();
|
|
59
|
+
},
|
|
60
|
+
children: items.map(({ icon: Icon, value: itemValue }) => /* @__PURE__ */ jsx(DropdownMenuRadioItem, {
|
|
61
|
+
className: "pl-2 data-[state=checked]:bg-accent *:first:[span]:hidden",
|
|
62
|
+
value: itemValue,
|
|
63
|
+
children: /* @__PURE__ */ jsx(Icon, {})
|
|
64
|
+
}, itemValue))
|
|
65
|
+
})
|
|
66
|
+
})]
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
//#endregion
|
|
71
|
+
export { AlignToolbarButton };
|