@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,422 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Button } from "../../ui/button.mjs";
|
|
5
|
+
import { Avatar, AvatarFallback, AvatarImage } from "../../ui/avatar.mjs";
|
|
6
|
+
import { BasicMarksKit } from "../plugins/basic-marks-kit.mjs";
|
|
7
|
+
import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuTrigger } from "../../ui/dropdown-menu.mjs";
|
|
8
|
+
import { Editor, EditorContainer } from "./editor.mjs";
|
|
9
|
+
import { discussionPlugin } from "../plugins/discussion-kit.mjs";
|
|
10
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
11
|
+
import { Plate, useEditorPlugin, useEditorRef, usePlateEditor, usePluginOption } from "platejs/react";
|
|
12
|
+
import * as React$1 from "react";
|
|
13
|
+
import { KEYS, NodeApi, nanoid } from "platejs";
|
|
14
|
+
import { getCommentKey, getDraftCommentKey } from "@platejs/comment";
|
|
15
|
+
import { ArrowUpIcon, CheckIcon, MoreHorizontalIcon, PencilIcon, TrashIcon, XIcon } from "lucide-react";
|
|
16
|
+
import { CommentPlugin, useCommentId } from "@platejs/comment/react";
|
|
17
|
+
import { differenceInDays, differenceInHours, differenceInMinutes, format } from "date-fns";
|
|
18
|
+
|
|
19
|
+
//#region src/components/editor/ui/comment.tsx
|
|
20
|
+
function Comment(props) {
|
|
21
|
+
const { comment, discussionLength, documentContent, editingId, index, setEditingId, showDocumentContent = false, onEditorClick } = props;
|
|
22
|
+
const editor = useEditorRef();
|
|
23
|
+
const userInfo = usePluginOption(discussionPlugin, "user", comment.userId);
|
|
24
|
+
const currentUserId = usePluginOption(discussionPlugin, "currentUserId");
|
|
25
|
+
const resolveDiscussion = async (id) => {
|
|
26
|
+
const updatedDiscussions = editor.getOption(discussionPlugin, "discussions").map((discussion) => {
|
|
27
|
+
if (discussion.id === id) return {
|
|
28
|
+
...discussion,
|
|
29
|
+
isResolved: true
|
|
30
|
+
};
|
|
31
|
+
return discussion;
|
|
32
|
+
});
|
|
33
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
34
|
+
};
|
|
35
|
+
const removeDiscussion = async (id) => {
|
|
36
|
+
const updatedDiscussions = editor.getOption(discussionPlugin, "discussions").filter((discussion) => discussion.id !== id);
|
|
37
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
38
|
+
};
|
|
39
|
+
const updateComment = async (input) => {
|
|
40
|
+
const updatedDiscussions = editor.getOption(discussionPlugin, "discussions").map((discussion) => {
|
|
41
|
+
if (discussion.id === input.discussionId) {
|
|
42
|
+
const updatedComments = discussion.comments.map((comment$1) => {
|
|
43
|
+
if (comment$1.id === input.id) return {
|
|
44
|
+
...comment$1,
|
|
45
|
+
contentRich: input.contentRich,
|
|
46
|
+
isEdited: true,
|
|
47
|
+
updatedAt: /* @__PURE__ */ new Date()
|
|
48
|
+
};
|
|
49
|
+
return comment$1;
|
|
50
|
+
});
|
|
51
|
+
return {
|
|
52
|
+
...discussion,
|
|
53
|
+
comments: updatedComments
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
return discussion;
|
|
57
|
+
});
|
|
58
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
59
|
+
};
|
|
60
|
+
const { tf } = useEditorPlugin(CommentPlugin);
|
|
61
|
+
const isMyComment = currentUserId === comment.userId;
|
|
62
|
+
const initialValue = comment.contentRich;
|
|
63
|
+
const commentEditor = useCommentEditor({
|
|
64
|
+
id: comment.id,
|
|
65
|
+
value: initialValue
|
|
66
|
+
}, [initialValue]);
|
|
67
|
+
const onCancel = () => {
|
|
68
|
+
setEditingId(null);
|
|
69
|
+
commentEditor.tf.replaceNodes(initialValue, {
|
|
70
|
+
at: [],
|
|
71
|
+
children: true
|
|
72
|
+
});
|
|
73
|
+
};
|
|
74
|
+
const onSave = () => {
|
|
75
|
+
updateComment({
|
|
76
|
+
id: comment.id,
|
|
77
|
+
contentRich: commentEditor.children,
|
|
78
|
+
discussionId: comment.discussionId,
|
|
79
|
+
isEdited: true
|
|
80
|
+
});
|
|
81
|
+
setEditingId(null);
|
|
82
|
+
};
|
|
83
|
+
const onResolveComment = () => {
|
|
84
|
+
resolveDiscussion(comment.discussionId);
|
|
85
|
+
tf.comment.unsetMark({ id: comment.discussionId });
|
|
86
|
+
};
|
|
87
|
+
const isFirst = index === 0;
|
|
88
|
+
const isLast = index === discussionLength - 1;
|
|
89
|
+
const isEditing = editingId && editingId === comment.id;
|
|
90
|
+
const [hovering, setHovering] = React$1.useState(false);
|
|
91
|
+
const [dropdownOpen, setDropdownOpen] = React$1.useState(false);
|
|
92
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
93
|
+
onMouseEnter: () => setHovering(true),
|
|
94
|
+
onMouseLeave: () => setHovering(false),
|
|
95
|
+
children: [
|
|
96
|
+
/* @__PURE__ */ jsxs("div", {
|
|
97
|
+
className: "relative flex items-center",
|
|
98
|
+
children: [
|
|
99
|
+
/* @__PURE__ */ jsxs(Avatar, {
|
|
100
|
+
className: "size-5",
|
|
101
|
+
children: [/* @__PURE__ */ jsx(AvatarImage, {
|
|
102
|
+
alt: userInfo?.name,
|
|
103
|
+
src: userInfo?.avatarUrl
|
|
104
|
+
}), /* @__PURE__ */ jsx(AvatarFallback, { children: userInfo?.name?.[0] })]
|
|
105
|
+
}),
|
|
106
|
+
/* @__PURE__ */ jsx("h4", {
|
|
107
|
+
className: "mx-2 font-semibold text-sm leading-none",
|
|
108
|
+
children: userInfo?.name
|
|
109
|
+
}),
|
|
110
|
+
/* @__PURE__ */ jsxs("div", {
|
|
111
|
+
className: "text-muted-foreground/80 text-xs leading-none",
|
|
112
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
113
|
+
className: "mr-1",
|
|
114
|
+
children: formatCommentDate(new Date(comment.createdAt))
|
|
115
|
+
}), comment.isEdited && /* @__PURE__ */ jsx("span", { children: "(edited)" })]
|
|
116
|
+
}),
|
|
117
|
+
isMyComment && (hovering || dropdownOpen) && /* @__PURE__ */ jsxs("div", {
|
|
118
|
+
className: "absolute top-0 right-0 flex space-x-1",
|
|
119
|
+
children: [index === 0 && /* @__PURE__ */ jsx(Button, {
|
|
120
|
+
variant: "ghost",
|
|
121
|
+
className: "h-6 p-1 text-muted-foreground",
|
|
122
|
+
onClick: onResolveComment,
|
|
123
|
+
type: "button",
|
|
124
|
+
children: /* @__PURE__ */ jsx(CheckIcon, { className: "size-4" })
|
|
125
|
+
}), /* @__PURE__ */ jsx(CommentMoreDropdown, {
|
|
126
|
+
onCloseAutoFocus: () => {
|
|
127
|
+
setTimeout(() => {
|
|
128
|
+
commentEditor.tf.focus({ edge: "endEditor" });
|
|
129
|
+
}, 0);
|
|
130
|
+
},
|
|
131
|
+
onRemoveComment: () => {
|
|
132
|
+
if (discussionLength === 1) {
|
|
133
|
+
tf.comment.unsetMark({ id: comment.discussionId });
|
|
134
|
+
removeDiscussion(comment.discussionId);
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
comment,
|
|
138
|
+
dropdownOpen,
|
|
139
|
+
setDropdownOpen,
|
|
140
|
+
setEditingId
|
|
141
|
+
})]
|
|
142
|
+
})
|
|
143
|
+
]
|
|
144
|
+
}),
|
|
145
|
+
isFirst && showDocumentContent && /* @__PURE__ */ jsxs("div", {
|
|
146
|
+
className: "relative mt-1 flex pl-[32px] text-sm text-subtle-foreground",
|
|
147
|
+
children: [
|
|
148
|
+
discussionLength > 1 && /* @__PURE__ */ jsx("div", { className: "absolute top-[5px] left-3 h-full w-0.5 shrink-0 bg-muted" }),
|
|
149
|
+
/* @__PURE__ */ jsx("div", { className: "my-px w-0.5 shrink-0 bg-highlight" }),
|
|
150
|
+
documentContent && /* @__PURE__ */ jsx("div", {
|
|
151
|
+
className: "ml-2",
|
|
152
|
+
children: documentContent
|
|
153
|
+
})
|
|
154
|
+
]
|
|
155
|
+
}),
|
|
156
|
+
/* @__PURE__ */ jsxs("div", {
|
|
157
|
+
className: "relative my-1 pl-[26px]",
|
|
158
|
+
children: [!isLast && /* @__PURE__ */ jsx("div", { className: "absolute top-0 left-3 h-full w-0.5 shrink-0 bg-muted" }), /* @__PURE__ */ jsx(Plate, {
|
|
159
|
+
readOnly: !isEditing,
|
|
160
|
+
editor: commentEditor,
|
|
161
|
+
children: /* @__PURE__ */ jsxs(EditorContainer, {
|
|
162
|
+
variant: "comment",
|
|
163
|
+
children: [/* @__PURE__ */ jsx(Editor, {
|
|
164
|
+
variant: "comment",
|
|
165
|
+
className: "w-auto grow",
|
|
166
|
+
onClick: () => onEditorClick?.()
|
|
167
|
+
}), isEditing && /* @__PURE__ */ jsxs("div", {
|
|
168
|
+
className: "ml-auto flex shrink-0 gap-1",
|
|
169
|
+
children: [/* @__PURE__ */ jsx(Button, {
|
|
170
|
+
size: "icon",
|
|
171
|
+
variant: "ghost",
|
|
172
|
+
className: "size-[28px]",
|
|
173
|
+
onClick: (e) => {
|
|
174
|
+
e.stopPropagation();
|
|
175
|
+
onCancel();
|
|
176
|
+
},
|
|
177
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
178
|
+
className: "flex size-5 shrink-0 items-center justify-center rounded-[50%] bg-primary/40",
|
|
179
|
+
children: /* @__PURE__ */ jsx(XIcon, { className: "size-3 stroke-[3px] text-background" })
|
|
180
|
+
})
|
|
181
|
+
}), /* @__PURE__ */ jsx(Button, {
|
|
182
|
+
size: "icon",
|
|
183
|
+
variant: "ghost",
|
|
184
|
+
onClick: (e) => {
|
|
185
|
+
e.stopPropagation();
|
|
186
|
+
onSave();
|
|
187
|
+
},
|
|
188
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
189
|
+
className: "flex size-5 shrink-0 items-center justify-center rounded-[50%] bg-brand",
|
|
190
|
+
children: /* @__PURE__ */ jsx(CheckIcon, { className: "size-3 stroke-[3px] text-background" })
|
|
191
|
+
})
|
|
192
|
+
})]
|
|
193
|
+
})]
|
|
194
|
+
})
|
|
195
|
+
})]
|
|
196
|
+
})
|
|
197
|
+
]
|
|
198
|
+
});
|
|
199
|
+
}
|
|
200
|
+
function CommentMoreDropdown(props) {
|
|
201
|
+
const { comment, dropdownOpen, setDropdownOpen, setEditingId, onCloseAutoFocus, onRemoveComment } = props;
|
|
202
|
+
const editor = useEditorRef();
|
|
203
|
+
const selectedEditCommentRef = React$1.useRef(false);
|
|
204
|
+
const onDeleteComment = React$1.useCallback(() => {
|
|
205
|
+
if (!comment.id) return alert("You are operating too quickly, please try again later.");
|
|
206
|
+
const updatedDiscussions = editor.getOption(discussionPlugin, "discussions").map((discussion) => {
|
|
207
|
+
if (discussion.id !== comment.discussionId) return discussion;
|
|
208
|
+
const commentIndex = discussion.comments.findIndex((c) => c.id === comment.id);
|
|
209
|
+
if (commentIndex === -1) return discussion;
|
|
210
|
+
return {
|
|
211
|
+
...discussion,
|
|
212
|
+
comments: [...discussion.comments.slice(0, commentIndex), ...discussion.comments.slice(commentIndex + 1)]
|
|
213
|
+
};
|
|
214
|
+
});
|
|
215
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
216
|
+
onRemoveComment?.();
|
|
217
|
+
}, [
|
|
218
|
+
comment.discussionId,
|
|
219
|
+
comment.id,
|
|
220
|
+
editor,
|
|
221
|
+
onRemoveComment
|
|
222
|
+
]);
|
|
223
|
+
const onEditComment = React$1.useCallback(() => {
|
|
224
|
+
selectedEditCommentRef.current = true;
|
|
225
|
+
if (!comment.id) return alert("You are operating too quickly, please try again later.");
|
|
226
|
+
setEditingId(comment.id);
|
|
227
|
+
}, [comment.id, setEditingId]);
|
|
228
|
+
return /* @__PURE__ */ jsxs(DropdownMenu, {
|
|
229
|
+
open: dropdownOpen,
|
|
230
|
+
onOpenChange: setDropdownOpen,
|
|
231
|
+
modal: false,
|
|
232
|
+
children: [/* @__PURE__ */ jsx(DropdownMenuTrigger, {
|
|
233
|
+
asChild: true,
|
|
234
|
+
onClick: (e) => e.stopPropagation(),
|
|
235
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
236
|
+
variant: "ghost",
|
|
237
|
+
className: cn("h-6 p-1 text-muted-foreground"),
|
|
238
|
+
children: /* @__PURE__ */ jsx(MoreHorizontalIcon, { className: "size-4" })
|
|
239
|
+
})
|
|
240
|
+
}), /* @__PURE__ */ jsx(DropdownMenuContent, {
|
|
241
|
+
className: "w-48",
|
|
242
|
+
onCloseAutoFocus: (e) => {
|
|
243
|
+
if (selectedEditCommentRef.current) {
|
|
244
|
+
onCloseAutoFocus?.();
|
|
245
|
+
selectedEditCommentRef.current = false;
|
|
246
|
+
}
|
|
247
|
+
return e.preventDefault();
|
|
248
|
+
},
|
|
249
|
+
children: /* @__PURE__ */ jsxs(DropdownMenuGroup, { children: [/* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
250
|
+
onClick: onEditComment,
|
|
251
|
+
children: [/* @__PURE__ */ jsx(PencilIcon, { className: "size-4" }), "Edit comment"]
|
|
252
|
+
}), /* @__PURE__ */ jsxs(DropdownMenuItem, {
|
|
253
|
+
onClick: onDeleteComment,
|
|
254
|
+
children: [/* @__PURE__ */ jsx(TrashIcon, { className: "size-4" }), "Delete comment"]
|
|
255
|
+
})] })
|
|
256
|
+
})]
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
const useCommentEditor = (options = {}, deps = []) => {
|
|
260
|
+
return usePlateEditor({
|
|
261
|
+
id: "comment",
|
|
262
|
+
plugins: BasicMarksKit,
|
|
263
|
+
value: [],
|
|
264
|
+
...options
|
|
265
|
+
}, deps);
|
|
266
|
+
};
|
|
267
|
+
function CommentCreateForm({ autoFocus = false, className, discussionId: discussionIdProp, focusOnMount = false }) {
|
|
268
|
+
const discussions = usePluginOption(discussionPlugin, "discussions");
|
|
269
|
+
const editor = useEditorRef();
|
|
270
|
+
const commentId = useCommentId();
|
|
271
|
+
const discussionId = discussionIdProp ?? commentId;
|
|
272
|
+
const userInfo = usePluginOption(discussionPlugin, "currentUser");
|
|
273
|
+
const [commentValue, setCommentValue] = React$1.useState();
|
|
274
|
+
const commentContent = React$1.useMemo(() => commentValue ? NodeApi.string({
|
|
275
|
+
children: commentValue,
|
|
276
|
+
type: KEYS.p
|
|
277
|
+
}) : "", [commentValue]);
|
|
278
|
+
const commentEditor = useCommentEditor();
|
|
279
|
+
React$1.useEffect(() => {
|
|
280
|
+
if (commentEditor && focusOnMount) commentEditor.tf.focus();
|
|
281
|
+
}, [commentEditor, focusOnMount]);
|
|
282
|
+
const onAddComment = React$1.useCallback(async () => {
|
|
283
|
+
if (!commentValue) return;
|
|
284
|
+
commentEditor.tf.reset();
|
|
285
|
+
if (discussionId) {
|
|
286
|
+
const discussion = discussions.find((d) => d.id === discussionId);
|
|
287
|
+
if (!discussion) {
|
|
288
|
+
const newDiscussion$1 = {
|
|
289
|
+
id: discussionId,
|
|
290
|
+
comments: [{
|
|
291
|
+
id: nanoid(),
|
|
292
|
+
contentRich: commentValue,
|
|
293
|
+
createdAt: /* @__PURE__ */ new Date(),
|
|
294
|
+
discussionId,
|
|
295
|
+
isEdited: false,
|
|
296
|
+
userId: editor.getOption(discussionPlugin, "currentUserId")
|
|
297
|
+
}],
|
|
298
|
+
createdAt: /* @__PURE__ */ new Date(),
|
|
299
|
+
isResolved: false,
|
|
300
|
+
userId: editor.getOption(discussionPlugin, "currentUserId")
|
|
301
|
+
};
|
|
302
|
+
editor.setOption(discussionPlugin, "discussions", [...discussions, newDiscussion$1]);
|
|
303
|
+
return;
|
|
304
|
+
}
|
|
305
|
+
const comment = {
|
|
306
|
+
id: nanoid(),
|
|
307
|
+
contentRich: commentValue,
|
|
308
|
+
createdAt: /* @__PURE__ */ new Date(),
|
|
309
|
+
discussionId,
|
|
310
|
+
isEdited: false,
|
|
311
|
+
userId: editor.getOption(discussionPlugin, "currentUserId")
|
|
312
|
+
};
|
|
313
|
+
const updatedDiscussion = {
|
|
314
|
+
...discussion,
|
|
315
|
+
comments: [...discussion.comments, comment]
|
|
316
|
+
};
|
|
317
|
+
const updatedDiscussions = discussions.filter((d) => d.id !== discussionId).concat(updatedDiscussion);
|
|
318
|
+
editor.setOption(discussionPlugin, "discussions", updatedDiscussions);
|
|
319
|
+
return;
|
|
320
|
+
}
|
|
321
|
+
const commentsNodeEntry = editor.getApi(CommentPlugin).comment.nodes({
|
|
322
|
+
at: [],
|
|
323
|
+
isDraft: true
|
|
324
|
+
});
|
|
325
|
+
if (commentsNodeEntry.length === 0) return;
|
|
326
|
+
const documentContent = commentsNodeEntry.map(([node]) => node.text).join("");
|
|
327
|
+
const _discussionId = nanoid();
|
|
328
|
+
const newDiscussion = {
|
|
329
|
+
id: _discussionId,
|
|
330
|
+
comments: [{
|
|
331
|
+
id: nanoid(),
|
|
332
|
+
contentRich: commentValue,
|
|
333
|
+
createdAt: /* @__PURE__ */ new Date(),
|
|
334
|
+
discussionId: _discussionId,
|
|
335
|
+
isEdited: false,
|
|
336
|
+
userId: editor.getOption(discussionPlugin, "currentUserId")
|
|
337
|
+
}],
|
|
338
|
+
createdAt: /* @__PURE__ */ new Date(),
|
|
339
|
+
documentContent,
|
|
340
|
+
isResolved: false,
|
|
341
|
+
userId: editor.getOption(discussionPlugin, "currentUserId")
|
|
342
|
+
};
|
|
343
|
+
editor.setOption(discussionPlugin, "discussions", [...discussions, newDiscussion]);
|
|
344
|
+
const id = newDiscussion.id;
|
|
345
|
+
commentsNodeEntry.forEach(([, path]) => {
|
|
346
|
+
editor.tf.setNodes({ [getCommentKey(id)]: true }, {
|
|
347
|
+
at: path,
|
|
348
|
+
split: true
|
|
349
|
+
});
|
|
350
|
+
editor.tf.unsetNodes([getDraftCommentKey()], { at: path });
|
|
351
|
+
});
|
|
352
|
+
}, [
|
|
353
|
+
commentValue,
|
|
354
|
+
commentEditor.tf,
|
|
355
|
+
discussionId,
|
|
356
|
+
editor,
|
|
357
|
+
discussions
|
|
358
|
+
]);
|
|
359
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
360
|
+
className: cn("flex w-full", className),
|
|
361
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
362
|
+
className: "mt-2 mr-1 shrink-0",
|
|
363
|
+
children: /* @__PURE__ */ jsxs(Avatar, {
|
|
364
|
+
className: "size-5",
|
|
365
|
+
children: [/* @__PURE__ */ jsx(AvatarImage, {
|
|
366
|
+
alt: userInfo?.name,
|
|
367
|
+
src: userInfo?.avatarUrl
|
|
368
|
+
}), /* @__PURE__ */ jsx(AvatarFallback, { children: userInfo?.name?.[0] })]
|
|
369
|
+
})
|
|
370
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
371
|
+
className: "relative flex grow gap-2",
|
|
372
|
+
children: /* @__PURE__ */ jsx(Plate, {
|
|
373
|
+
onChange: ({ value }) => {
|
|
374
|
+
setCommentValue(value);
|
|
375
|
+
},
|
|
376
|
+
editor: commentEditor,
|
|
377
|
+
children: /* @__PURE__ */ jsxs(EditorContainer, {
|
|
378
|
+
variant: "comment",
|
|
379
|
+
children: [/* @__PURE__ */ jsx(Editor, {
|
|
380
|
+
variant: "comment",
|
|
381
|
+
className: "min-h-[25px] grow pt-0.5 pr-8",
|
|
382
|
+
onKeyDown: (e) => {
|
|
383
|
+
if (e.key === "Enter" && !e.shiftKey) {
|
|
384
|
+
e.preventDefault();
|
|
385
|
+
onAddComment();
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
placeholder: "Reply...",
|
|
389
|
+
autoComplete: "off",
|
|
390
|
+
autoFocus
|
|
391
|
+
}), /* @__PURE__ */ jsx(Button, {
|
|
392
|
+
size: "icon",
|
|
393
|
+
variant: "ghost",
|
|
394
|
+
className: "absolute right-0.5 bottom-0.5 ml-auto size-6 shrink-0",
|
|
395
|
+
disabled: commentContent.trim().length === 0,
|
|
396
|
+
onClick: (e) => {
|
|
397
|
+
e.stopPropagation();
|
|
398
|
+
onAddComment();
|
|
399
|
+
},
|
|
400
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
401
|
+
className: "flex size-6 items-center justify-center rounded-full",
|
|
402
|
+
children: /* @__PURE__ */ jsx(ArrowUpIcon, {})
|
|
403
|
+
})
|
|
404
|
+
})]
|
|
405
|
+
})
|
|
406
|
+
})
|
|
407
|
+
})]
|
|
408
|
+
});
|
|
409
|
+
}
|
|
410
|
+
const formatCommentDate = (date) => {
|
|
411
|
+
const now = /* @__PURE__ */ new Date();
|
|
412
|
+
const diffMinutes = differenceInMinutes(now, date);
|
|
413
|
+
const diffHours = differenceInHours(now, date);
|
|
414
|
+
const diffDays = differenceInDays(now, date);
|
|
415
|
+
if (diffMinutes < 60) return `${diffMinutes}m`;
|
|
416
|
+
if (diffHours < 24) return `${diffHours}h`;
|
|
417
|
+
if (diffDays < 2) return `${diffDays}d`;
|
|
418
|
+
return format(date, "MM/dd/yyyy");
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
//#endregion
|
|
422
|
+
export { Comment, CommentCreateForm, formatCommentDate };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
import { usePluginOption } from "platejs/react";
|
|
6
|
+
import { RangeApi } from "platejs";
|
|
7
|
+
import { AIChatPlugin } from "@platejs/ai/react";
|
|
8
|
+
import { useCursorOverlay } from "@platejs/selection/react";
|
|
9
|
+
|
|
10
|
+
//#region src/components/editor/ui/cursor-overlay.tsx
|
|
11
|
+
function CursorOverlay() {
|
|
12
|
+
const { cursors } = useCursorOverlay();
|
|
13
|
+
return /* @__PURE__ */ jsx(Fragment, { children: cursors.map((cursor) => /* @__PURE__ */ jsx(Cursor, { ...cursor }, cursor.id)) });
|
|
14
|
+
}
|
|
15
|
+
function Cursor({ id, caretPosition, data, selection, selectionRects }) {
|
|
16
|
+
const streaming = usePluginOption(AIChatPlugin, "streaming");
|
|
17
|
+
const { style, selectionStyle = style } = data ?? {};
|
|
18
|
+
const isCursor = RangeApi.isCollapsed(selection);
|
|
19
|
+
if (streaming) return null;
|
|
20
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [selectionRects.map((position, i) => /* @__PURE__ */ jsx("div", {
|
|
21
|
+
className: cn("pointer-events-none absolute z-10", id === "selection" && "bg-brand/25", id === "selection" && isCursor && "bg-primary"),
|
|
22
|
+
style: {
|
|
23
|
+
...selectionStyle,
|
|
24
|
+
...position
|
|
25
|
+
}
|
|
26
|
+
}, i)), caretPosition && /* @__PURE__ */ jsx("div", {
|
|
27
|
+
className: cn("pointer-events-none absolute z-10 w-0.5", id === "drag" && "w-px bg-brand"),
|
|
28
|
+
style: {
|
|
29
|
+
...caretPosition,
|
|
30
|
+
...style
|
|
31
|
+
}
|
|
32
|
+
})] });
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
//#endregion
|
|
36
|
+
export { CursorOverlay };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { SlateElement } from "platejs/static";
|
|
3
|
+
|
|
4
|
+
//#region src/components/editor/ui/date-node-static.tsx
|
|
5
|
+
function DateElementStatic(props) {
|
|
6
|
+
const { element } = props;
|
|
7
|
+
return /* @__PURE__ */ jsxs(SlateElement, {
|
|
8
|
+
className: "inline-block",
|
|
9
|
+
...props,
|
|
10
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
11
|
+
className: "w-fit rounded-sm bg-muted px-1 text-muted-foreground",
|
|
12
|
+
children: element.date ? (() => {
|
|
13
|
+
const today = /* @__PURE__ */ new Date();
|
|
14
|
+
const elementDate = new Date(element.date);
|
|
15
|
+
const isToday = elementDate.getDate() === today.getDate() && elementDate.getMonth() === today.getMonth() && elementDate.getFullYear() === today.getFullYear();
|
|
16
|
+
const isYesterday = new Date(today.setDate(today.getDate() - 1)).toDateString() === elementDate.toDateString();
|
|
17
|
+
const isTomorrow = new Date(today.setDate(today.getDate() + 2)).toDateString() === elementDate.toDateString();
|
|
18
|
+
if (isToday) return "Today";
|
|
19
|
+
if (isYesterday) return "Yesterday";
|
|
20
|
+
if (isTomorrow) return "Tomorrow";
|
|
21
|
+
return elementDate.toLocaleDateString(void 0, {
|
|
22
|
+
day: "numeric",
|
|
23
|
+
month: "long",
|
|
24
|
+
year: "numeric"
|
|
25
|
+
});
|
|
26
|
+
})() : /* @__PURE__ */ jsx("span", { children: "Pick a date" })
|
|
27
|
+
}), props.children]
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
//#endregion
|
|
32
|
+
export { DateElementStatic };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Popover, PopoverContent, PopoverTrigger } from "../../ui/popover.mjs";
|
|
5
|
+
import { Calendar } from "../../ui/calendar.mjs";
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
import { PlateElement, useReadOnly } from "platejs/react";
|
|
8
|
+
|
|
9
|
+
//#region src/components/editor/ui/date-node.tsx
|
|
10
|
+
function DateElement(props) {
|
|
11
|
+
const { editor, element } = props;
|
|
12
|
+
const readOnly = useReadOnly();
|
|
13
|
+
const trigger = /* @__PURE__ */ jsx("span", {
|
|
14
|
+
className: cn("w-fit cursor-pointer rounded-sm bg-muted px-1 text-muted-foreground"),
|
|
15
|
+
contentEditable: false,
|
|
16
|
+
draggable: true,
|
|
17
|
+
children: element.date ? (() => {
|
|
18
|
+
const today = /* @__PURE__ */ new Date();
|
|
19
|
+
const elementDate = new Date(element.date);
|
|
20
|
+
const isToday = elementDate.getDate() === today.getDate() && elementDate.getMonth() === today.getMonth() && elementDate.getFullYear() === today.getFullYear();
|
|
21
|
+
const isYesterday = new Date(today.setDate(today.getDate() - 1)).toDateString() === elementDate.toDateString();
|
|
22
|
+
const isTomorrow = new Date(today.setDate(today.getDate() + 2)).toDateString() === elementDate.toDateString();
|
|
23
|
+
if (isToday) return "Today";
|
|
24
|
+
if (isYesterday) return "Yesterday";
|
|
25
|
+
if (isTomorrow) return "Tomorrow";
|
|
26
|
+
return elementDate.toLocaleDateString(void 0, {
|
|
27
|
+
day: "numeric",
|
|
28
|
+
month: "long",
|
|
29
|
+
year: "numeric"
|
|
30
|
+
});
|
|
31
|
+
})() : /* @__PURE__ */ jsx("span", { children: "Pick a date" })
|
|
32
|
+
});
|
|
33
|
+
if (readOnly) return trigger;
|
|
34
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
35
|
+
...props,
|
|
36
|
+
className: "inline-block",
|
|
37
|
+
attributes: {
|
|
38
|
+
...props.attributes,
|
|
39
|
+
contentEditable: false
|
|
40
|
+
},
|
|
41
|
+
children: [/* @__PURE__ */ jsxs(Popover, { children: [/* @__PURE__ */ jsx(PopoverTrigger, {
|
|
42
|
+
asChild: true,
|
|
43
|
+
children: trigger
|
|
44
|
+
}), /* @__PURE__ */ jsx(PopoverContent, {
|
|
45
|
+
className: "w-auto p-0",
|
|
46
|
+
children: /* @__PURE__ */ jsx(Calendar, {
|
|
47
|
+
selected: new Date(element.date),
|
|
48
|
+
onSelect: (date) => {
|
|
49
|
+
if (!date) return;
|
|
50
|
+
editor.tf.setNodes({ date: date.toDateString() }, { at: element });
|
|
51
|
+
},
|
|
52
|
+
mode: "single",
|
|
53
|
+
initialFocus: true
|
|
54
|
+
})
|
|
55
|
+
})] }), props.children]
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
//#endregion
|
|
60
|
+
export { DateElement };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { cva } from "class-variance-authority";
|
|
4
|
+
import { PlateStatic } from "platejs/static";
|
|
5
|
+
|
|
6
|
+
//#region src/components/editor/ui/editor-static.tsx
|
|
7
|
+
const editorVariants = cva(cn("group/editor", "relative w-full cursor-text select-text overflow-x-hidden whitespace-pre-wrap break-words", "rounded-md ring-offset-background focus-visible:outline-none", "placeholder:text-muted-foreground/80 **:data-slate-placeholder:top-[auto_!important] **:data-slate-placeholder:text-muted-foreground/80 **:data-slate-placeholder:opacity-100!", "[&_strong]:font-bold"), {
|
|
8
|
+
defaultVariants: { variant: "none" },
|
|
9
|
+
variants: {
|
|
10
|
+
disabled: { true: "cursor-not-allowed opacity-50" },
|
|
11
|
+
focused: { true: "ring-2 ring-ring ring-offset-2" },
|
|
12
|
+
variant: {
|
|
13
|
+
ai: "w-full px-0 text-base md:text-sm",
|
|
14
|
+
aiChat: "max-h-[min(70vh,320px)] w-full max-w-[700px] overflow-y-auto px-5 py-3 text-base md:text-sm",
|
|
15
|
+
default: "size-full px-16 pt-4 pb-72 text-base sm:px-[max(64px,calc(50%-350px))]",
|
|
16
|
+
demo: "size-full px-16 pt-4 pb-72 text-base sm:px-[max(64px,calc(50%-350px))]",
|
|
17
|
+
fullWidth: "size-full px-16 pt-4 pb-72 text-base sm:px-24",
|
|
18
|
+
none: "",
|
|
19
|
+
select: "px-3 py-2 text-base data-readonly:w-fit"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
function EditorStatic({ className, variant, ...props }) {
|
|
24
|
+
return /* @__PURE__ */ jsx(PlateStatic, {
|
|
25
|
+
className: cn(editorVariants({ variant }), className),
|
|
26
|
+
...props
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
//#endregion
|
|
31
|
+
export { EditorStatic };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
import { PlateContainer, PlateContent, PlateView } from "platejs/react";
|
|
6
|
+
import { cva } from "class-variance-authority";
|
|
7
|
+
|
|
8
|
+
//#region src/components/editor/ui/editor.tsx
|
|
9
|
+
const editorContainerVariants = cva("w-full cursor-text select-text caret-primary selection:bg-brand/25 focus-visible:outline-none [&_.slate-selection-area]:z-50 [&_.slate-selection-area]:border [&_.slate-selection-area]:border-brand/25 [&_.slate-selection-area]:bg-brand/15", {
|
|
10
|
+
defaultVariants: { variant: "card" },
|
|
11
|
+
variants: { variant: {
|
|
12
|
+
comment: cn("flex flex-wrap justify-between gap-1 px-1 py-0.5 text-sm overflow-y-auto rounded-md border-[1.5px] border-transparent bg-transparent", "has-[[data-slate-editor]:focus]:border-brand/50 has-[[data-slate-editor]:focus]:ring-2 has-[[data-slate-editor]:focus]:ring-brand/30", "has-aria-disabled:border-input has-aria-disabled:bg-muted"),
|
|
13
|
+
card: "border bg-card text-card-foreground rounded-xl",
|
|
14
|
+
select: cn("group overflow-y-auto rounded-md border border-input ring-offset-background focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2", "has-data-readonly:w-fit has-data-readonly:cursor-default has-data-readonly:border-transparent has-data-readonly:focus-within:[box-shadow:none]")
|
|
15
|
+
} }
|
|
16
|
+
});
|
|
17
|
+
function EditorContainer({ className, variant, ...props }) {
|
|
18
|
+
return /* @__PURE__ */ jsx(PlateContainer, {
|
|
19
|
+
className: cn("ignore-click-outside/toolbar", editorContainerVariants({ variant }), className),
|
|
20
|
+
...props
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
const editorVariants = cva(cn("group/editor", "relative w-full cursor-text select-text overflow-x-hidden whitespace-pre-wrap break-words", "rounded-md ring-offset-background focus-visible:outline-none", "**:data-slate-placeholder:!top-1/2 **:data-slate-placeholder:-translate-y-1/2 placeholder:text-muted-foreground/80 **:data-slate-placeholder:text-muted-foreground/80 **:data-slate-placeholder:opacity-100!", "[&_strong]:font-bold"), {
|
|
24
|
+
defaultVariants: { variant: "default" },
|
|
25
|
+
variants: {
|
|
26
|
+
disabled: { true: "cursor-not-allowed opacity-50" },
|
|
27
|
+
focused: { true: "ring-2 ring-ring ring-offset-2" },
|
|
28
|
+
variant: {
|
|
29
|
+
ai: "w-full px-0 text-base md:text-sm",
|
|
30
|
+
aiChat: "max-h-[min(70vh,320px)] w-full max-w-[700px] overflow-y-auto px-3 py-2 text-base md:text-sm",
|
|
31
|
+
comment: "rounded-none border-none bg-transparent text-sm",
|
|
32
|
+
default: "size-full px-8 py-4 text-base",
|
|
33
|
+
fullWidth: "size-full px-16 pt-4 pb-72 text-base sm:px-24",
|
|
34
|
+
none: "",
|
|
35
|
+
select: "px-3 py-2 text-base data-readonly:w-fit"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
const Editor = ({ className, disabled, focused, variant, ref, ...props }) => /* @__PURE__ */ jsx(PlateContent, {
|
|
40
|
+
ref,
|
|
41
|
+
className: cn(editorVariants({
|
|
42
|
+
disabled,
|
|
43
|
+
focused,
|
|
44
|
+
variant
|
|
45
|
+
}), className),
|
|
46
|
+
disabled,
|
|
47
|
+
disableDefaultStyles: true,
|
|
48
|
+
...props
|
|
49
|
+
});
|
|
50
|
+
Editor.displayName = "Editor";
|
|
51
|
+
function EditorView({ className, variant, ...props }) {
|
|
52
|
+
return /* @__PURE__ */ jsx(PlateView, {
|
|
53
|
+
...props,
|
|
54
|
+
className: cn(editorVariants({ variant }), className)
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
EditorView.displayName = "EditorView";
|
|
58
|
+
|
|
59
|
+
//#endregion
|
|
60
|
+
export { Editor, EditorContainer };
|