@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,577 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { getCommentKey, getDraftCommentKey } from "@platejs/comment";
|
|
4
|
+
import { CommentPlugin, useCommentId } from "@platejs/comment/react";
|
|
5
|
+
import { differenceInDays, differenceInHours, differenceInMinutes, format } from "date-fns";
|
|
6
|
+
import {
|
|
7
|
+
ArrowUpIcon,
|
|
8
|
+
CheckIcon,
|
|
9
|
+
MoreHorizontalIcon,
|
|
10
|
+
PencilIcon,
|
|
11
|
+
TrashIcon,
|
|
12
|
+
XIcon,
|
|
13
|
+
} from "lucide-react";
|
|
14
|
+
import { KEYS, NodeApi, nanoid, type Value } from "platejs";
|
|
15
|
+
import type { CreatePlateEditorOptions } from "platejs/react";
|
|
16
|
+
import {
|
|
17
|
+
Plate,
|
|
18
|
+
useEditorPlugin,
|
|
19
|
+
useEditorRef,
|
|
20
|
+
usePlateEditor,
|
|
21
|
+
usePluginOption,
|
|
22
|
+
} from "platejs/react";
|
|
23
|
+
import * as React from "react";
|
|
24
|
+
import { BasicMarksKit } from "@/components/editor/plugins/basic-marks-kit";
|
|
25
|
+
import { discussionPlugin, type TDiscussion } from "@/components/editor/plugins/discussion-kit";
|
|
26
|
+
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
27
|
+
import { Button } from "@/components/ui/button";
|
|
28
|
+
import {
|
|
29
|
+
DropdownMenu,
|
|
30
|
+
DropdownMenuContent,
|
|
31
|
+
DropdownMenuGroup,
|
|
32
|
+
DropdownMenuItem,
|
|
33
|
+
DropdownMenuTrigger,
|
|
34
|
+
} from "@/components/ui/dropdown-menu";
|
|
35
|
+
import { cn } from "@/lib/utils";
|
|
36
|
+
|
|
37
|
+
import { Editor, EditorContainer } from "./editor";
|
|
38
|
+
|
|
39
|
+
export type TComment = {
|
|
40
|
+
id: string;
|
|
41
|
+
contentRich: Value;
|
|
42
|
+
createdAt: Date;
|
|
43
|
+
discussionId: string;
|
|
44
|
+
isEdited: boolean;
|
|
45
|
+
userId: string;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export function Comment(props: {
|
|
49
|
+
comment: TComment;
|
|
50
|
+
discussionLength: number;
|
|
51
|
+
editingId: string | null;
|
|
52
|
+
index: number;
|
|
53
|
+
setEditingId: React.Dispatch<React.SetStateAction<string | null>>;
|
|
54
|
+
documentContent?: string;
|
|
55
|
+
showDocumentContent?: boolean;
|
|
56
|
+
onEditorClick?: () => void;
|
|
57
|
+
}) {
|
|
58
|
+
const {
|
|
59
|
+
comment,
|
|
60
|
+
discussionLength,
|
|
61
|
+
documentContent,
|
|
62
|
+
editingId,
|
|
63
|
+
index,
|
|
64
|
+
setEditingId,
|
|
65
|
+
showDocumentContent = false,
|
|
66
|
+
onEditorClick,
|
|
67
|
+
} = props;
|
|
68
|
+
|
|
69
|
+
const editor = useEditorRef();
|
|
70
|
+
const userInfo = usePluginOption(discussionPlugin, "user", comment.userId);
|
|
71
|
+
const currentUserId = usePluginOption(discussionPlugin, "currentUserId");
|
|
72
|
+
|
|
73
|
+
const resolveDiscussion = async (id: string) => {
|
|
74
|
+
const updatedDiscussions = editor
|
|
75
|
+
.getOption(discussionPlugin, "discussions")
|
|
76
|
+
.map((discussion) => {
|
|
77
|
+
if (discussion.id === id) {
|
|
78
|
+
return { ...discussion, isResolved: true };
|
|
79
|
+
}
|
|
80
|
+
return discussion;
|
|
81
|
+
});
|
|
82
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const removeDiscussion = async (id: string) => {
|
|
86
|
+
const updatedDiscussions = editor
|
|
87
|
+
.getOption(discussionPlugin, "discussions")
|
|
88
|
+
.filter((discussion) => discussion.id !== id);
|
|
89
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
const updateComment = async (input: {
|
|
93
|
+
id: string;
|
|
94
|
+
contentRich: Value;
|
|
95
|
+
discussionId: string;
|
|
96
|
+
isEdited: boolean;
|
|
97
|
+
}) => {
|
|
98
|
+
const updatedDiscussions = editor
|
|
99
|
+
.getOption(discussionPlugin, "discussions")
|
|
100
|
+
.map((discussion) => {
|
|
101
|
+
if (discussion.id === input.discussionId) {
|
|
102
|
+
const updatedComments = discussion.comments.map((comment) => {
|
|
103
|
+
if (comment.id === input.id) {
|
|
104
|
+
return {
|
|
105
|
+
...comment,
|
|
106
|
+
contentRich: input.contentRich,
|
|
107
|
+
isEdited: true,
|
|
108
|
+
updatedAt: new Date(),
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
return comment;
|
|
112
|
+
});
|
|
113
|
+
return { ...discussion, comments: updatedComments };
|
|
114
|
+
}
|
|
115
|
+
return discussion;
|
|
116
|
+
});
|
|
117
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
const { tf } = useEditorPlugin(CommentPlugin);
|
|
121
|
+
|
|
122
|
+
// Replace to your own backend or refer to potion
|
|
123
|
+
const isMyComment = currentUserId === comment.userId;
|
|
124
|
+
|
|
125
|
+
const initialValue = comment.contentRich;
|
|
126
|
+
|
|
127
|
+
const commentEditor = useCommentEditor(
|
|
128
|
+
{
|
|
129
|
+
id: comment.id,
|
|
130
|
+
value: initialValue,
|
|
131
|
+
},
|
|
132
|
+
[initialValue],
|
|
133
|
+
);
|
|
134
|
+
|
|
135
|
+
const onCancel = () => {
|
|
136
|
+
setEditingId(null);
|
|
137
|
+
commentEditor.tf.replaceNodes(initialValue, {
|
|
138
|
+
at: [],
|
|
139
|
+
children: true,
|
|
140
|
+
});
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
const onSave = () => {
|
|
144
|
+
void updateComment({
|
|
145
|
+
id: comment.id,
|
|
146
|
+
contentRich: commentEditor.children,
|
|
147
|
+
discussionId: comment.discussionId,
|
|
148
|
+
isEdited: true,
|
|
149
|
+
});
|
|
150
|
+
setEditingId(null);
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
const onResolveComment = () => {
|
|
154
|
+
void resolveDiscussion(comment.discussionId);
|
|
155
|
+
tf.comment.unsetMark({ id: comment.discussionId });
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
const isFirst = index === 0;
|
|
159
|
+
const isLast = index === discussionLength - 1;
|
|
160
|
+
const isEditing = editingId && editingId === comment.id;
|
|
161
|
+
|
|
162
|
+
const [hovering, setHovering] = React.useState(false);
|
|
163
|
+
const [dropdownOpen, setDropdownOpen] = React.useState(false);
|
|
164
|
+
|
|
165
|
+
return (
|
|
166
|
+
<div onMouseEnter={() => setHovering(true)} onMouseLeave={() => setHovering(false)}>
|
|
167
|
+
<div className="relative flex items-center">
|
|
168
|
+
<Avatar className="size-5">
|
|
169
|
+
<AvatarImage alt={userInfo?.name} src={userInfo?.avatarUrl} />
|
|
170
|
+
<AvatarFallback>{userInfo?.name?.[0]}</AvatarFallback>
|
|
171
|
+
</Avatar>
|
|
172
|
+
<h4 className="mx-2 font-semibold text-sm leading-none">
|
|
173
|
+
{/* Replace to your own backend or refer to potion */}
|
|
174
|
+
{userInfo?.name}
|
|
175
|
+
</h4>
|
|
176
|
+
|
|
177
|
+
<div className="text-muted-foreground/80 text-xs leading-none">
|
|
178
|
+
<span className="mr-1">{formatCommentDate(new Date(comment.createdAt))}</span>
|
|
179
|
+
{comment.isEdited && <span>(edited)</span>}
|
|
180
|
+
</div>
|
|
181
|
+
|
|
182
|
+
{isMyComment && (hovering || dropdownOpen) && (
|
|
183
|
+
<div className="absolute top-0 right-0 flex space-x-1">
|
|
184
|
+
{index === 0 && (
|
|
185
|
+
<Button
|
|
186
|
+
variant="ghost"
|
|
187
|
+
className="h-6 p-1 text-muted-foreground"
|
|
188
|
+
onClick={onResolveComment}
|
|
189
|
+
type="button"
|
|
190
|
+
>
|
|
191
|
+
<CheckIcon className="size-4" />
|
|
192
|
+
</Button>
|
|
193
|
+
)}
|
|
194
|
+
|
|
195
|
+
<CommentMoreDropdown
|
|
196
|
+
onCloseAutoFocus={() => {
|
|
197
|
+
setTimeout(() => {
|
|
198
|
+
commentEditor.tf.focus({ edge: "endEditor" });
|
|
199
|
+
}, 0);
|
|
200
|
+
}}
|
|
201
|
+
onRemoveComment={() => {
|
|
202
|
+
if (discussionLength === 1) {
|
|
203
|
+
tf.comment.unsetMark({ id: comment.discussionId });
|
|
204
|
+
void removeDiscussion(comment.discussionId);
|
|
205
|
+
}
|
|
206
|
+
}}
|
|
207
|
+
comment={comment}
|
|
208
|
+
dropdownOpen={dropdownOpen}
|
|
209
|
+
setDropdownOpen={setDropdownOpen}
|
|
210
|
+
setEditingId={setEditingId}
|
|
211
|
+
/>
|
|
212
|
+
</div>
|
|
213
|
+
)}
|
|
214
|
+
</div>
|
|
215
|
+
|
|
216
|
+
{isFirst && showDocumentContent && (
|
|
217
|
+
<div className="relative mt-1 flex pl-[32px] text-sm text-subtle-foreground">
|
|
218
|
+
{discussionLength > 1 && (
|
|
219
|
+
<div className="absolute top-[5px] left-3 h-full w-0.5 shrink-0 bg-muted" />
|
|
220
|
+
)}
|
|
221
|
+
<div className="my-px w-0.5 shrink-0 bg-highlight" />
|
|
222
|
+
{documentContent && <div className="ml-2">{documentContent}</div>}
|
|
223
|
+
</div>
|
|
224
|
+
)}
|
|
225
|
+
|
|
226
|
+
<div className="relative my-1 pl-[26px]">
|
|
227
|
+
{!isLast && <div className="absolute top-0 left-3 h-full w-0.5 shrink-0 bg-muted" />}
|
|
228
|
+
<Plate readOnly={!isEditing} editor={commentEditor}>
|
|
229
|
+
<EditorContainer variant="comment">
|
|
230
|
+
<Editor variant="comment" className="w-auto grow" onClick={() => onEditorClick?.()} />
|
|
231
|
+
|
|
232
|
+
{isEditing && (
|
|
233
|
+
<div className="ml-auto flex shrink-0 gap-1">
|
|
234
|
+
<Button
|
|
235
|
+
size="icon"
|
|
236
|
+
variant="ghost"
|
|
237
|
+
className="size-[28px]"
|
|
238
|
+
onClick={(e: React.MouseEvent<HTMLButtonElement>) => {
|
|
239
|
+
e.stopPropagation();
|
|
240
|
+
void onCancel();
|
|
241
|
+
}}
|
|
242
|
+
>
|
|
243
|
+
<div className="flex size-5 shrink-0 items-center justify-center rounded-[50%] bg-primary/40">
|
|
244
|
+
<XIcon className="size-3 stroke-[3px] text-background" />
|
|
245
|
+
</div>
|
|
246
|
+
</Button>
|
|
247
|
+
|
|
248
|
+
<Button
|
|
249
|
+
size="icon"
|
|
250
|
+
variant="ghost"
|
|
251
|
+
onClick={(e: React.MouseEvent<HTMLButtonElement>) => {
|
|
252
|
+
e.stopPropagation();
|
|
253
|
+
void onSave();
|
|
254
|
+
}}
|
|
255
|
+
>
|
|
256
|
+
<div className="flex size-5 shrink-0 items-center justify-center rounded-[50%] bg-brand">
|
|
257
|
+
<CheckIcon className="size-3 stroke-[3px] text-background" />
|
|
258
|
+
</div>
|
|
259
|
+
</Button>
|
|
260
|
+
</div>
|
|
261
|
+
)}
|
|
262
|
+
</EditorContainer>
|
|
263
|
+
</Plate>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
function CommentMoreDropdown(props: {
|
|
270
|
+
comment: TComment;
|
|
271
|
+
dropdownOpen: boolean;
|
|
272
|
+
setDropdownOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
273
|
+
setEditingId: React.Dispatch<React.SetStateAction<string | null>>;
|
|
274
|
+
onCloseAutoFocus?: () => void;
|
|
275
|
+
onRemoveComment?: () => void;
|
|
276
|
+
}) {
|
|
277
|
+
const {
|
|
278
|
+
comment,
|
|
279
|
+
dropdownOpen,
|
|
280
|
+
setDropdownOpen,
|
|
281
|
+
setEditingId,
|
|
282
|
+
onCloseAutoFocus,
|
|
283
|
+
onRemoveComment,
|
|
284
|
+
} = props;
|
|
285
|
+
|
|
286
|
+
const editor = useEditorRef();
|
|
287
|
+
|
|
288
|
+
const selectedEditCommentRef = React.useRef<boolean>(false);
|
|
289
|
+
|
|
290
|
+
const onDeleteComment = React.useCallback(() => {
|
|
291
|
+
if (!comment.id) return alert("You are operating too quickly, please try again later.");
|
|
292
|
+
|
|
293
|
+
// Find and update the discussion
|
|
294
|
+
const updatedDiscussions = editor
|
|
295
|
+
.getOption(discussionPlugin, "discussions")
|
|
296
|
+
.map((discussion) => {
|
|
297
|
+
if (discussion.id !== comment.discussionId) {
|
|
298
|
+
return discussion;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
const commentIndex = discussion.comments.findIndex((c) => c.id === comment.id);
|
|
302
|
+
if (commentIndex === -1) {
|
|
303
|
+
return discussion;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
return {
|
|
307
|
+
...discussion,
|
|
308
|
+
comments: [
|
|
309
|
+
...discussion.comments.slice(0, commentIndex),
|
|
310
|
+
...discussion.comments.slice(commentIndex + 1),
|
|
311
|
+
],
|
|
312
|
+
};
|
|
313
|
+
});
|
|
314
|
+
|
|
315
|
+
// Save back to session storage
|
|
316
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
317
|
+
onRemoveComment?.();
|
|
318
|
+
}, [comment.discussionId, comment.id, editor, onRemoveComment]);
|
|
319
|
+
|
|
320
|
+
const onEditComment = React.useCallback(() => {
|
|
321
|
+
selectedEditCommentRef.current = true;
|
|
322
|
+
|
|
323
|
+
if (!comment.id) return alert("You are operating too quickly, please try again later.");
|
|
324
|
+
|
|
325
|
+
setEditingId(comment.id);
|
|
326
|
+
}, [comment.id, setEditingId]);
|
|
327
|
+
|
|
328
|
+
return (
|
|
329
|
+
<DropdownMenu open={dropdownOpen} onOpenChange={setDropdownOpen} modal={false}>
|
|
330
|
+
<DropdownMenuTrigger asChild onClick={(e) => e.stopPropagation()}>
|
|
331
|
+
<Button variant="ghost" className={cn("h-6 p-1 text-muted-foreground")}>
|
|
332
|
+
<MoreHorizontalIcon className="size-4" />
|
|
333
|
+
</Button>
|
|
334
|
+
</DropdownMenuTrigger>
|
|
335
|
+
<DropdownMenuContent
|
|
336
|
+
className="w-48"
|
|
337
|
+
onCloseAutoFocus={(e) => {
|
|
338
|
+
if (selectedEditCommentRef.current) {
|
|
339
|
+
onCloseAutoFocus?.();
|
|
340
|
+
selectedEditCommentRef.current = false;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
return e.preventDefault();
|
|
344
|
+
}}
|
|
345
|
+
>
|
|
346
|
+
<DropdownMenuGroup>
|
|
347
|
+
<DropdownMenuItem onClick={onEditComment}>
|
|
348
|
+
<PencilIcon className="size-4" />
|
|
349
|
+
Edit comment
|
|
350
|
+
</DropdownMenuItem>
|
|
351
|
+
<DropdownMenuItem onClick={onDeleteComment}>
|
|
352
|
+
<TrashIcon className="size-4" />
|
|
353
|
+
Delete comment
|
|
354
|
+
</DropdownMenuItem>
|
|
355
|
+
</DropdownMenuGroup>
|
|
356
|
+
</DropdownMenuContent>
|
|
357
|
+
</DropdownMenu>
|
|
358
|
+
);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
const useCommentEditor = (
|
|
362
|
+
options: Omit<CreatePlateEditorOptions, "plugins"> = {},
|
|
363
|
+
deps: any[] = [],
|
|
364
|
+
) => {
|
|
365
|
+
const commentEditor = usePlateEditor(
|
|
366
|
+
{
|
|
367
|
+
id: "comment",
|
|
368
|
+
plugins: BasicMarksKit,
|
|
369
|
+
value: [],
|
|
370
|
+
...options,
|
|
371
|
+
},
|
|
372
|
+
deps,
|
|
373
|
+
);
|
|
374
|
+
|
|
375
|
+
return commentEditor;
|
|
376
|
+
};
|
|
377
|
+
|
|
378
|
+
export function CommentCreateForm({
|
|
379
|
+
autoFocus = false,
|
|
380
|
+
className,
|
|
381
|
+
discussionId: discussionIdProp,
|
|
382
|
+
focusOnMount = false,
|
|
383
|
+
}: {
|
|
384
|
+
autoFocus?: boolean;
|
|
385
|
+
className?: string;
|
|
386
|
+
discussionId?: string;
|
|
387
|
+
focusOnMount?: boolean;
|
|
388
|
+
}) {
|
|
389
|
+
const discussions = usePluginOption(discussionPlugin, "discussions");
|
|
390
|
+
|
|
391
|
+
const editor = useEditorRef();
|
|
392
|
+
const commentId = useCommentId();
|
|
393
|
+
const discussionId = discussionIdProp ?? commentId;
|
|
394
|
+
|
|
395
|
+
const userInfo = usePluginOption(discussionPlugin, "currentUser");
|
|
396
|
+
const [commentValue, setCommentValue] = React.useState<Value | undefined>();
|
|
397
|
+
const commentContent = React.useMemo(
|
|
398
|
+
() => (commentValue ? NodeApi.string({ children: commentValue, type: KEYS.p }) : ""),
|
|
399
|
+
[commentValue],
|
|
400
|
+
);
|
|
401
|
+
const commentEditor = useCommentEditor();
|
|
402
|
+
|
|
403
|
+
React.useEffect(() => {
|
|
404
|
+
if (commentEditor && focusOnMount) {
|
|
405
|
+
commentEditor.tf.focus();
|
|
406
|
+
}
|
|
407
|
+
}, [commentEditor, focusOnMount]);
|
|
408
|
+
|
|
409
|
+
const onAddComment = React.useCallback(async () => {
|
|
410
|
+
if (!commentValue) return;
|
|
411
|
+
|
|
412
|
+
commentEditor.tf.reset();
|
|
413
|
+
|
|
414
|
+
if (discussionId) {
|
|
415
|
+
// Get existing discussion
|
|
416
|
+
const discussion = discussions.find((d) => d.id === discussionId);
|
|
417
|
+
if (!discussion) {
|
|
418
|
+
// Mock creating suggestion
|
|
419
|
+
const newDiscussion: TDiscussion = {
|
|
420
|
+
id: discussionId,
|
|
421
|
+
comments: [
|
|
422
|
+
{
|
|
423
|
+
id: nanoid(),
|
|
424
|
+
contentRich: commentValue,
|
|
425
|
+
createdAt: new Date(),
|
|
426
|
+
discussionId,
|
|
427
|
+
isEdited: false,
|
|
428
|
+
userId: editor.getOption(discussionPlugin, "currentUserId"),
|
|
429
|
+
},
|
|
430
|
+
],
|
|
431
|
+
createdAt: new Date(),
|
|
432
|
+
isResolved: false,
|
|
433
|
+
userId: editor.getOption(discussionPlugin, "currentUserId"),
|
|
434
|
+
};
|
|
435
|
+
|
|
436
|
+
editor.setOption(discussionPlugin, "discussions", [...discussions, newDiscussion]);
|
|
437
|
+
return;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
// Create reply comment
|
|
441
|
+
const comment: TComment = {
|
|
442
|
+
id: nanoid(),
|
|
443
|
+
contentRich: commentValue,
|
|
444
|
+
createdAt: new Date(),
|
|
445
|
+
discussionId,
|
|
446
|
+
isEdited: false,
|
|
447
|
+
userId: editor.getOption(discussionPlugin, "currentUserId"),
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
// Add reply to discussion comments
|
|
451
|
+
const updatedDiscussion = {
|
|
452
|
+
...discussion,
|
|
453
|
+
comments: [...discussion.comments, comment],
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
// Filter out old discussion and add updated one
|
|
457
|
+
const updatedDiscussions = discussions
|
|
458
|
+
.filter((d) => d.id !== discussionId)
|
|
459
|
+
.concat(updatedDiscussion);
|
|
460
|
+
|
|
461
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
462
|
+
|
|
463
|
+
return;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
const commentsNodeEntry = editor.getApi(CommentPlugin).comment.nodes({ at: [], isDraft: true });
|
|
467
|
+
|
|
468
|
+
if (commentsNodeEntry.length === 0) return;
|
|
469
|
+
|
|
470
|
+
const documentContent = commentsNodeEntry.map(([node]) => node.text).join("");
|
|
471
|
+
|
|
472
|
+
const _discussionId = nanoid();
|
|
473
|
+
// Mock creating new discussion
|
|
474
|
+
const newDiscussion: TDiscussion = {
|
|
475
|
+
id: _discussionId,
|
|
476
|
+
comments: [
|
|
477
|
+
{
|
|
478
|
+
id: nanoid(),
|
|
479
|
+
contentRich: commentValue,
|
|
480
|
+
createdAt: new Date(),
|
|
481
|
+
discussionId: _discussionId,
|
|
482
|
+
isEdited: false,
|
|
483
|
+
userId: editor.getOption(discussionPlugin, "currentUserId"),
|
|
484
|
+
},
|
|
485
|
+
],
|
|
486
|
+
createdAt: new Date(),
|
|
487
|
+
documentContent,
|
|
488
|
+
isResolved: false,
|
|
489
|
+
userId: editor.getOption(discussionPlugin, "currentUserId"),
|
|
490
|
+
};
|
|
491
|
+
|
|
492
|
+
editor.setOption(discussionPlugin, "discussions", [...discussions, newDiscussion]);
|
|
493
|
+
|
|
494
|
+
const id = newDiscussion.id;
|
|
495
|
+
|
|
496
|
+
commentsNodeEntry.forEach(([, path]) => {
|
|
497
|
+
editor.tf.setNodes(
|
|
498
|
+
{
|
|
499
|
+
[getCommentKey(id)]: true,
|
|
500
|
+
},
|
|
501
|
+
{ at: path, split: true },
|
|
502
|
+
);
|
|
503
|
+
editor.tf.unsetNodes([getDraftCommentKey()], { at: path });
|
|
504
|
+
});
|
|
505
|
+
}, [commentValue, commentEditor.tf, discussionId, editor, discussions]);
|
|
506
|
+
|
|
507
|
+
return (
|
|
508
|
+
<div className={cn("flex w-full", className)}>
|
|
509
|
+
<div className="mt-2 mr-1 shrink-0">
|
|
510
|
+
{/* Replace to your own backend or refer to potion */}
|
|
511
|
+
<Avatar className="size-5">
|
|
512
|
+
<AvatarImage alt={userInfo?.name} src={userInfo?.avatarUrl} />
|
|
513
|
+
<AvatarFallback>{userInfo?.name?.[0]}</AvatarFallback>
|
|
514
|
+
</Avatar>
|
|
515
|
+
</div>
|
|
516
|
+
|
|
517
|
+
<div className="relative flex grow gap-2">
|
|
518
|
+
<Plate
|
|
519
|
+
onChange={({ value }) => {
|
|
520
|
+
setCommentValue(value);
|
|
521
|
+
}}
|
|
522
|
+
editor={commentEditor}
|
|
523
|
+
>
|
|
524
|
+
<EditorContainer variant="comment">
|
|
525
|
+
<Editor
|
|
526
|
+
variant="comment"
|
|
527
|
+
className="min-h-[25px] grow pt-0.5 pr-8"
|
|
528
|
+
onKeyDown={(e) => {
|
|
529
|
+
if (e.key === "Enter" && !e.shiftKey) {
|
|
530
|
+
e.preventDefault();
|
|
531
|
+
onAddComment();
|
|
532
|
+
}
|
|
533
|
+
}}
|
|
534
|
+
placeholder="Reply..."
|
|
535
|
+
autoComplete="off"
|
|
536
|
+
autoFocus={autoFocus}
|
|
537
|
+
/>
|
|
538
|
+
|
|
539
|
+
<Button
|
|
540
|
+
size="icon"
|
|
541
|
+
variant="ghost"
|
|
542
|
+
className="absolute right-0.5 bottom-0.5 ml-auto size-6 shrink-0"
|
|
543
|
+
disabled={commentContent.trim().length === 0}
|
|
544
|
+
onClick={(e) => {
|
|
545
|
+
e.stopPropagation();
|
|
546
|
+
onAddComment();
|
|
547
|
+
}}
|
|
548
|
+
>
|
|
549
|
+
<div className="flex size-6 items-center justify-center rounded-full">
|
|
550
|
+
<ArrowUpIcon />
|
|
551
|
+
</div>
|
|
552
|
+
</Button>
|
|
553
|
+
</EditorContainer>
|
|
554
|
+
</Plate>
|
|
555
|
+
</div>
|
|
556
|
+
</div>
|
|
557
|
+
);
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export const formatCommentDate = (date: Date) => {
|
|
561
|
+
const now = new Date();
|
|
562
|
+
const diffMinutes = differenceInMinutes(now, date);
|
|
563
|
+
const diffHours = differenceInHours(now, date);
|
|
564
|
+
const diffDays = differenceInDays(now, date);
|
|
565
|
+
|
|
566
|
+
if (diffMinutes < 60) {
|
|
567
|
+
return `${diffMinutes}m`;
|
|
568
|
+
}
|
|
569
|
+
if (diffHours < 24) {
|
|
570
|
+
return `${diffHours}h`;
|
|
571
|
+
}
|
|
572
|
+
if (diffDays < 2) {
|
|
573
|
+
return `${diffDays}d`;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
return format(date, "MM/dd/yyyy");
|
|
577
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { AIChatPlugin } from "@platejs/ai/react";
|
|
4
|
+
import {
|
|
5
|
+
type CursorData,
|
|
6
|
+
type CursorOverlayState,
|
|
7
|
+
useCursorOverlay,
|
|
8
|
+
} from "@platejs/selection/react";
|
|
9
|
+
import { RangeApi } from "platejs";
|
|
10
|
+
import { usePluginOption } from "platejs/react";
|
|
11
|
+
|
|
12
|
+
import { cn } from "@/lib/utils";
|
|
13
|
+
|
|
14
|
+
export function CursorOverlay() {
|
|
15
|
+
const { cursors } = useCursorOverlay();
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<>
|
|
19
|
+
{cursors.map((cursor) => (
|
|
20
|
+
<Cursor key={cursor.id} {...cursor} />
|
|
21
|
+
))}
|
|
22
|
+
</>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function Cursor({
|
|
27
|
+
id,
|
|
28
|
+
caretPosition,
|
|
29
|
+
data,
|
|
30
|
+
selection,
|
|
31
|
+
selectionRects,
|
|
32
|
+
}: CursorOverlayState<CursorData>) {
|
|
33
|
+
const streaming = usePluginOption(AIChatPlugin, "streaming");
|
|
34
|
+
const { style, selectionStyle = style } = data ?? ({} as CursorData);
|
|
35
|
+
const isCursor = RangeApi.isCollapsed(selection);
|
|
36
|
+
|
|
37
|
+
if (streaming) return null;
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<>
|
|
41
|
+
{selectionRects.map((position, i) => (
|
|
42
|
+
<div
|
|
43
|
+
key={i}
|
|
44
|
+
className={cn(
|
|
45
|
+
"pointer-events-none absolute z-10",
|
|
46
|
+
id === "selection" && "bg-brand/25",
|
|
47
|
+
id === "selection" && isCursor && "bg-primary",
|
|
48
|
+
)}
|
|
49
|
+
style={{
|
|
50
|
+
...selectionStyle,
|
|
51
|
+
...position,
|
|
52
|
+
}}
|
|
53
|
+
/>
|
|
54
|
+
))}
|
|
55
|
+
{caretPosition && (
|
|
56
|
+
<div
|
|
57
|
+
className={cn(
|
|
58
|
+
"pointer-events-none absolute z-10 w-0.5",
|
|
59
|
+
id === "drag" && "w-px bg-brand",
|
|
60
|
+
)}
|
|
61
|
+
style={{ ...caretPosition, ...style }}
|
|
62
|
+
/>
|
|
63
|
+
)}
|
|
64
|
+
</>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { TDateElement } from "platejs";
|
|
2
|
+
import type { SlateElementProps } from "platejs/static";
|
|
3
|
+
|
|
4
|
+
import { SlateElement } from "platejs/static";
|
|
5
|
+
|
|
6
|
+
export function DateElementStatic(props: SlateElementProps<TDateElement>) {
|
|
7
|
+
const { element } = props;
|
|
8
|
+
|
|
9
|
+
return (
|
|
10
|
+
<SlateElement className="inline-block" {...props}>
|
|
11
|
+
<span className="w-fit rounded-sm bg-muted px-1 text-muted-foreground">
|
|
12
|
+
{element.date ? (
|
|
13
|
+
(() => {
|
|
14
|
+
const today = new Date();
|
|
15
|
+
const elementDate = new Date(element.date);
|
|
16
|
+
const isToday =
|
|
17
|
+
elementDate.getDate() === today.getDate() &&
|
|
18
|
+
elementDate.getMonth() === today.getMonth() &&
|
|
19
|
+
elementDate.getFullYear() === today.getFullYear();
|
|
20
|
+
|
|
21
|
+
const isYesterday =
|
|
22
|
+
new Date(today.setDate(today.getDate() - 1)).toDateString() ===
|
|
23
|
+
elementDate.toDateString();
|
|
24
|
+
const isTomorrow =
|
|
25
|
+
new Date(today.setDate(today.getDate() + 2)).toDateString() ===
|
|
26
|
+
elementDate.toDateString();
|
|
27
|
+
|
|
28
|
+
if (isToday) return "Today";
|
|
29
|
+
if (isYesterday) return "Yesterday";
|
|
30
|
+
if (isTomorrow) return "Tomorrow";
|
|
31
|
+
|
|
32
|
+
return elementDate.toLocaleDateString(undefined, {
|
|
33
|
+
day: "numeric",
|
|
34
|
+
month: "long",
|
|
35
|
+
year: "numeric",
|
|
36
|
+
});
|
|
37
|
+
})()
|
|
38
|
+
) : (
|
|
39
|
+
<span>Pick a date</span>
|
|
40
|
+
)}
|
|
41
|
+
</span>
|
|
42
|
+
{props.children}
|
|
43
|
+
</SlateElement>
|
|
44
|
+
);
|
|
45
|
+
}
|