@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,46 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { InlineCombobox, InlineComboboxContent, InlineComboboxEmpty, InlineComboboxInput, InlineComboboxItem, InlineComboboxList } from "./inline-combobox.mjs";
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
import { PlateElement, usePluginOption } from "platejs/react";
|
|
6
|
+
import * as React$1 from "react";
|
|
7
|
+
import { EmojiPlugin } from "@platejs/emoji/react";
|
|
8
|
+
import { EmojiInlineIndexSearch, insertEmoji } from "@platejs/emoji";
|
|
9
|
+
|
|
10
|
+
//#region src/components/editor/ui/emoji-node.tsx
|
|
11
|
+
const TRAILING_COLON_REGEX = /:$/;
|
|
12
|
+
function EmojiInputElement(props) {
|
|
13
|
+
const { children, editor, element } = props;
|
|
14
|
+
const data = usePluginOption(EmojiPlugin, "data");
|
|
15
|
+
const [value, setValue] = React$1.useState("");
|
|
16
|
+
const deferredValue = React$1.useDeferredValue(value);
|
|
17
|
+
const filteredEmojis = React$1.useMemo(() => {
|
|
18
|
+
if (deferredValue.trim().length === 0) return [];
|
|
19
|
+
return EmojiInlineIndexSearch.getInstance(data).search(deferredValue.replace(TRAILING_COLON_REGEX, "")).get();
|
|
20
|
+
}, [data, deferredValue]);
|
|
21
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
22
|
+
as: "span",
|
|
23
|
+
...props,
|
|
24
|
+
children: [/* @__PURE__ */ jsxs(InlineCombobox, {
|
|
25
|
+
inputValue: value,
|
|
26
|
+
onInputValueChange: setValue,
|
|
27
|
+
element,
|
|
28
|
+
trigger: ":",
|
|
29
|
+
filteredItems: filteredEmojis,
|
|
30
|
+
children: [/* @__PURE__ */ jsx(InlineComboboxInput, {}), /* @__PURE__ */ jsxs(InlineComboboxContent, { children: [/* @__PURE__ */ jsx(InlineComboboxEmpty, { children: "No results" }), /* @__PURE__ */ jsx(InlineComboboxList, { children: (emoji) => /* @__PURE__ */ jsxs(InlineComboboxItem, {
|
|
31
|
+
value: emoji,
|
|
32
|
+
onClick: () => {
|
|
33
|
+
insertEmoji(editor, emoji);
|
|
34
|
+
},
|
|
35
|
+
children: [
|
|
36
|
+
emoji.skins[0].native,
|
|
37
|
+
" ",
|
|
38
|
+
emoji.name
|
|
39
|
+
]
|
|
40
|
+
}, emoji.id) })] })]
|
|
41
|
+
}), children]
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
//#endregion
|
|
46
|
+
export { EmojiInputElement };
|
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Button } from "../../ui/button.mjs";
|
|
5
|
+
import { Tooltip as Tooltip$1, TooltipContent, TooltipProvider, TooltipTrigger } from "../../ui/tooltip.mjs";
|
|
6
|
+
import { ToolbarButton } from "../../ui/toolbar.mjs";
|
|
7
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
8
|
+
import * as React$1 from "react";
|
|
9
|
+
import { AppleIcon, ClockIcon, CompassIcon, FlagIcon, LeafIcon, LightbulbIcon, MusicIcon, SearchIcon, SmileIcon, StarIcon, XIcon } from "lucide-react";
|
|
10
|
+
import { Popover } from "radix-ui";
|
|
11
|
+
import { useEmojiDropdownMenuState } from "@platejs/emoji/react";
|
|
12
|
+
import { EmojiSettings } from "@platejs/emoji";
|
|
13
|
+
|
|
14
|
+
//#region src/components/editor/ui/emoji-toolbar-button.tsx
|
|
15
|
+
function EmojiToolbarButton({ options, ...props }) {
|
|
16
|
+
const { emojiPickerState, isOpen, setIsOpen } = useEmojiDropdownMenuState(options);
|
|
17
|
+
return /* @__PURE__ */ jsx(EmojiPopover, {
|
|
18
|
+
control: /* @__PURE__ */ jsx(ToolbarButton, {
|
|
19
|
+
pressed: isOpen,
|
|
20
|
+
tooltip: "Emoji",
|
|
21
|
+
isDropdown: true,
|
|
22
|
+
...props,
|
|
23
|
+
children: /* @__PURE__ */ jsx(SmileIcon, {})
|
|
24
|
+
}),
|
|
25
|
+
isOpen,
|
|
26
|
+
setIsOpen,
|
|
27
|
+
children: /* @__PURE__ */ jsx(EmojiPicker, {
|
|
28
|
+
...emojiPickerState,
|
|
29
|
+
isOpen,
|
|
30
|
+
setIsOpen,
|
|
31
|
+
settings: options?.settings
|
|
32
|
+
})
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
function EmojiPopover({ children, control, isOpen, setIsOpen }) {
|
|
36
|
+
return /* @__PURE__ */ jsxs(Popover.Root, {
|
|
37
|
+
open: isOpen,
|
|
38
|
+
onOpenChange: setIsOpen,
|
|
39
|
+
children: [/* @__PURE__ */ jsx(Popover.Trigger, {
|
|
40
|
+
asChild: true,
|
|
41
|
+
children: control
|
|
42
|
+
}), /* @__PURE__ */ jsx(Popover.Portal, { children: /* @__PURE__ */ jsx(Popover.Content, {
|
|
43
|
+
className: "z-100",
|
|
44
|
+
children
|
|
45
|
+
}) })]
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
function EmojiPicker({ clearSearch, emoji, emojiLibrary, focusedCategory, hasFound, i18n, icons = {
|
|
49
|
+
categories: emojiCategoryIcons,
|
|
50
|
+
search: emojiSearchIcons
|
|
51
|
+
}, isSearching, refs, searchResult, searchValue, setSearch, settings = EmojiSettings, visibleCategories, handleCategoryClick, onMouseOver, onSelectEmoji }) {
|
|
52
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
53
|
+
className: cn("flex flex-col rounded-xl bg-popover text-popover-foreground", "h-[23rem] w-80 border shadow-md"),
|
|
54
|
+
children: [
|
|
55
|
+
/* @__PURE__ */ jsx(EmojiPickerNavigation, {
|
|
56
|
+
onClick: handleCategoryClick,
|
|
57
|
+
emojiLibrary,
|
|
58
|
+
focusedCategory,
|
|
59
|
+
i18n,
|
|
60
|
+
icons
|
|
61
|
+
}),
|
|
62
|
+
/* @__PURE__ */ jsx(EmojiPickerSearchBar, {
|
|
63
|
+
i18n,
|
|
64
|
+
searchValue,
|
|
65
|
+
setSearch,
|
|
66
|
+
children: /* @__PURE__ */ jsx(EmojiPickerSearchAndClear, {
|
|
67
|
+
clearSearch,
|
|
68
|
+
i18n,
|
|
69
|
+
searchValue
|
|
70
|
+
})
|
|
71
|
+
}),
|
|
72
|
+
/* @__PURE__ */ jsx(EmojiPickerContent, {
|
|
73
|
+
onMouseOver,
|
|
74
|
+
onSelectEmoji,
|
|
75
|
+
emojiLibrary,
|
|
76
|
+
i18n,
|
|
77
|
+
isSearching,
|
|
78
|
+
refs,
|
|
79
|
+
searchResult,
|
|
80
|
+
settings,
|
|
81
|
+
visibleCategories
|
|
82
|
+
}),
|
|
83
|
+
/* @__PURE__ */ jsx(EmojiPickerPreview, {
|
|
84
|
+
emoji,
|
|
85
|
+
hasFound,
|
|
86
|
+
i18n,
|
|
87
|
+
isSearching
|
|
88
|
+
})
|
|
89
|
+
]
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
const EmojiButton = React$1.memo(function EmojiButton$1({ emoji, index, onMouseOver, onSelect }) {
|
|
93
|
+
return /* @__PURE__ */ jsxs("button", {
|
|
94
|
+
className: "group relative flex size-9 cursor-pointer items-center justify-center border-none bg-transparent text-2xl leading-none",
|
|
95
|
+
onClick: () => onSelect(emoji),
|
|
96
|
+
onMouseEnter: () => onMouseOver(emoji),
|
|
97
|
+
onMouseLeave: () => onMouseOver(),
|
|
98
|
+
"aria-label": emoji.skins[0].native,
|
|
99
|
+
"data-index": index,
|
|
100
|
+
tabIndex: -1,
|
|
101
|
+
type: "button",
|
|
102
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
103
|
+
className: "absolute inset-0 rounded-full opacity-0 group-hover:opacity-100",
|
|
104
|
+
"aria-hidden": "true"
|
|
105
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
106
|
+
className: "relative",
|
|
107
|
+
style: { fontFamily: "\"Apple Color Emoji\", \"Segoe UI Emoji\", NotoColorEmoji, \"Noto Color Emoji\", \"Segoe UI Symbol\", \"Android Emoji\", EmojiSymbols" },
|
|
108
|
+
"data-emoji-set": "native",
|
|
109
|
+
children: emoji.skins[0].native
|
|
110
|
+
})]
|
|
111
|
+
});
|
|
112
|
+
});
|
|
113
|
+
const RowOfButtons = React$1.memo(function RowOfButtons$1({ emojiLibrary, row, onMouseOver, onSelectEmoji }) {
|
|
114
|
+
return /* @__PURE__ */ jsx("div", {
|
|
115
|
+
className: "flex",
|
|
116
|
+
"data-index": row.id,
|
|
117
|
+
children: row.elements.map((emojiId, index) => /* @__PURE__ */ jsx(EmojiButton, {
|
|
118
|
+
onMouseOver,
|
|
119
|
+
onSelect: onSelectEmoji,
|
|
120
|
+
emoji: emojiLibrary.getEmoji(emojiId),
|
|
121
|
+
index
|
|
122
|
+
}, emojiId))
|
|
123
|
+
}, row.id);
|
|
124
|
+
});
|
|
125
|
+
function EmojiPickerContent({ emojiLibrary, i18n, isSearching = false, refs, searchResult, settings = EmojiSettings, visibleCategories, onMouseOver, onSelectEmoji }) {
|
|
126
|
+
const getRowWidth = settings.perLine.value * settings.buttonSize.value;
|
|
127
|
+
const isCategoryVisible = React$1.useCallback((categoryId) => visibleCategories.has(categoryId) ? visibleCategories.get(categoryId) : false, [visibleCategories]);
|
|
128
|
+
const EmojiList = React$1.useCallback(() => emojiLibrary.getGrid().sections().map(({ id: categoryId }) => {
|
|
129
|
+
const section = emojiLibrary.getGrid().section(categoryId);
|
|
130
|
+
const { buttonSize } = settings;
|
|
131
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
132
|
+
ref: section.root,
|
|
133
|
+
style: { width: getRowWidth },
|
|
134
|
+
"data-id": categoryId,
|
|
135
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
136
|
+
className: "-top-px sticky z-1 bg-popover/90 p-1 py-2 font-semibold text-sm backdrop-blur-xs",
|
|
137
|
+
children: i18n.categories[categoryId]
|
|
138
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
139
|
+
className: "relative flex flex-wrap",
|
|
140
|
+
style: { height: section.getRows().length * buttonSize.value },
|
|
141
|
+
children: isCategoryVisible(categoryId) && section.getRows().map((row) => /* @__PURE__ */ jsx(RowOfButtons, {
|
|
142
|
+
onMouseOver,
|
|
143
|
+
onSelectEmoji,
|
|
144
|
+
emojiLibrary,
|
|
145
|
+
row
|
|
146
|
+
}, row.id))
|
|
147
|
+
})]
|
|
148
|
+
}, categoryId);
|
|
149
|
+
}), [
|
|
150
|
+
emojiLibrary,
|
|
151
|
+
getRowWidth,
|
|
152
|
+
i18n.categories,
|
|
153
|
+
isCategoryVisible,
|
|
154
|
+
onSelectEmoji,
|
|
155
|
+
onMouseOver,
|
|
156
|
+
settings
|
|
157
|
+
]);
|
|
158
|
+
const SearchList = React$1.useCallback(() => /* @__PURE__ */ jsxs("div", {
|
|
159
|
+
style: { width: getRowWidth },
|
|
160
|
+
"data-id": "search",
|
|
161
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
162
|
+
className: "-top-px sticky z-1 bg-popover/90 p-1 py-2 font-semibold text-card-foreground text-sm backdrop-blur-xs",
|
|
163
|
+
children: i18n.searchResult
|
|
164
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
165
|
+
className: "relative flex flex-wrap",
|
|
166
|
+
children: searchResult.map((emoji, index) => /* @__PURE__ */ jsx(EmojiButton, {
|
|
167
|
+
onMouseOver,
|
|
168
|
+
onSelect: onSelectEmoji,
|
|
169
|
+
emoji: emojiLibrary.getEmoji(emoji.id),
|
|
170
|
+
index
|
|
171
|
+
}, emoji.id))
|
|
172
|
+
})]
|
|
173
|
+
}), [
|
|
174
|
+
emojiLibrary,
|
|
175
|
+
getRowWidth,
|
|
176
|
+
i18n.searchResult,
|
|
177
|
+
searchResult,
|
|
178
|
+
onSelectEmoji,
|
|
179
|
+
onMouseOver
|
|
180
|
+
]);
|
|
181
|
+
return /* @__PURE__ */ jsx("div", {
|
|
182
|
+
ref: refs.current.contentRoot,
|
|
183
|
+
className: "h-full min-h-[50%] overflow-y-auto overflow-x-hidden px-2",
|
|
184
|
+
"data-id": "scroll",
|
|
185
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
186
|
+
ref: refs.current.content,
|
|
187
|
+
className: "h-full",
|
|
188
|
+
children: isSearching ? SearchList() : EmojiList()
|
|
189
|
+
})
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
function EmojiPickerSearchBar({ children, i18n, searchValue, setSearch }) {
|
|
193
|
+
return /* @__PURE__ */ jsx("div", {
|
|
194
|
+
className: "flex items-center px-2",
|
|
195
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
196
|
+
className: "relative flex grow items-center",
|
|
197
|
+
children: [/* @__PURE__ */ jsx("input", {
|
|
198
|
+
className: "block w-full appearance-none rounded-full border-0 bg-muted px-10 py-2 text-sm outline-none placeholder:text-muted-foreground focus-visible:outline-none",
|
|
199
|
+
value: searchValue,
|
|
200
|
+
onChange: (event) => setSearch(event.target.value),
|
|
201
|
+
placeholder: i18n.search,
|
|
202
|
+
"aria-label": "Search",
|
|
203
|
+
autoComplete: "off",
|
|
204
|
+
type: "text",
|
|
205
|
+
autoFocus: true
|
|
206
|
+
}), children]
|
|
207
|
+
})
|
|
208
|
+
});
|
|
209
|
+
}
|
|
210
|
+
function EmojiPickerSearchAndClear({ clearSearch, i18n, searchValue }) {
|
|
211
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
212
|
+
className: "flex items-center text-foreground",
|
|
213
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
214
|
+
className: cn("-translate-y-1/2 absolute top-1/2 left-2.5 z-10 flex size-5 items-center justify-center text-foreground"),
|
|
215
|
+
children: emojiSearchIcons.loupe
|
|
216
|
+
}), searchValue && /* @__PURE__ */ jsx(Button, {
|
|
217
|
+
size: "icon",
|
|
218
|
+
variant: "ghost",
|
|
219
|
+
className: cn("-translate-y-1/2 absolute top-1/2 right-0.5 flex size-8 cursor-pointer items-center justify-center rounded-full border-none bg-transparent text-popover-foreground hover:bg-transparent"),
|
|
220
|
+
onClick: clearSearch,
|
|
221
|
+
title: i18n.clear,
|
|
222
|
+
"aria-label": "Clear",
|
|
223
|
+
type: "button",
|
|
224
|
+
children: emojiSearchIcons.delete
|
|
225
|
+
})]
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
function EmojiPreview({ emoji }) {
|
|
229
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
230
|
+
className: "flex h-14 max-h-14 min-h-14 items-center border-muted border-t p-2",
|
|
231
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
232
|
+
className: "flex items-center justify-center text-2xl",
|
|
233
|
+
children: emoji?.skins[0].native
|
|
234
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
235
|
+
className: "overflow-hidden pl-2",
|
|
236
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
237
|
+
className: "truncate font-semibold text-sm",
|
|
238
|
+
children: emoji?.name
|
|
239
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
240
|
+
className: "truncate text-sm",
|
|
241
|
+
children: `:${emoji?.id}:`
|
|
242
|
+
})]
|
|
243
|
+
})]
|
|
244
|
+
});
|
|
245
|
+
}
|
|
246
|
+
function NoEmoji({ i18n }) {
|
|
247
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
248
|
+
className: "flex h-14 max-h-14 min-h-14 items-center border-muted border-t p-2",
|
|
249
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
250
|
+
className: "flex items-center justify-center text-2xl",
|
|
251
|
+
children: "😢"
|
|
252
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
253
|
+
className: "overflow-hidden pl-2",
|
|
254
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
255
|
+
className: "truncate font-bold text-sm",
|
|
256
|
+
children: i18n.searchNoResultsTitle
|
|
257
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
258
|
+
className: "truncate text-sm",
|
|
259
|
+
children: i18n.searchNoResultsSubtitle
|
|
260
|
+
})]
|
|
261
|
+
})]
|
|
262
|
+
});
|
|
263
|
+
}
|
|
264
|
+
function PickAnEmoji({ i18n }) {
|
|
265
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
266
|
+
className: "flex h-14 max-h-14 min-h-14 items-center border-muted border-t p-2",
|
|
267
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
268
|
+
className: "flex items-center justify-center text-2xl",
|
|
269
|
+
children: "☝️"
|
|
270
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
271
|
+
className: "overflow-hidden pl-2",
|
|
272
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
273
|
+
className: "truncate font-semibold text-sm",
|
|
274
|
+
children: i18n.pick
|
|
275
|
+
})
|
|
276
|
+
})]
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
function EmojiPickerPreview({ emoji, hasFound = true, i18n, isSearching = false, ...props }) {
|
|
280
|
+
const showPickEmoji = !emoji && (!isSearching || hasFound);
|
|
281
|
+
const showNoEmoji = isSearching && !hasFound;
|
|
282
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
283
|
+
emoji && !showNoEmoji && !showNoEmoji && /* @__PURE__ */ jsx(EmojiPreview, {
|
|
284
|
+
emoji,
|
|
285
|
+
...props
|
|
286
|
+
}),
|
|
287
|
+
showPickEmoji && /* @__PURE__ */ jsx(PickAnEmoji, {
|
|
288
|
+
i18n,
|
|
289
|
+
...props
|
|
290
|
+
}),
|
|
291
|
+
showNoEmoji && /* @__PURE__ */ jsx(NoEmoji, {
|
|
292
|
+
i18n,
|
|
293
|
+
...props
|
|
294
|
+
})
|
|
295
|
+
] });
|
|
296
|
+
}
|
|
297
|
+
function EmojiPickerNavigation({ emojiLibrary, focusedCategory, i18n, icons, onClick }) {
|
|
298
|
+
return /* @__PURE__ */ jsx(TooltipProvider, {
|
|
299
|
+
delayDuration: 500,
|
|
300
|
+
children: /* @__PURE__ */ jsx("nav", {
|
|
301
|
+
id: "emoji-nav",
|
|
302
|
+
className: "mb-2.5 border-0 border-b border-b-border border-solid p-1.5",
|
|
303
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
304
|
+
className: "relative flex items-center justify-evenly",
|
|
305
|
+
children: emojiLibrary.getGrid().sections().map(({ id }) => /* @__PURE__ */ jsxs(Tooltip$1, { children: [/* @__PURE__ */ jsx(TooltipTrigger, {
|
|
306
|
+
asChild: true,
|
|
307
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
308
|
+
size: "sm",
|
|
309
|
+
variant: "ghost",
|
|
310
|
+
className: cn("h-fit rounded-full fill-current p-1.5 text-muted-foreground hover:bg-muted hover:text-muted-foreground", id === focusedCategory && "pointer-events-none bg-accent fill-current text-accent-foreground"),
|
|
311
|
+
onClick: () => {
|
|
312
|
+
onClick(id);
|
|
313
|
+
},
|
|
314
|
+
"aria-label": i18n.categories[id],
|
|
315
|
+
type: "button",
|
|
316
|
+
children: /* @__PURE__ */ jsx("span", {
|
|
317
|
+
className: "inline-flex size-5 items-center justify-center",
|
|
318
|
+
children: icons.categories[id].outline
|
|
319
|
+
})
|
|
320
|
+
})
|
|
321
|
+
}), /* @__PURE__ */ jsx(TooltipContent, {
|
|
322
|
+
side: "bottom",
|
|
323
|
+
children: i18n.categories[id]
|
|
324
|
+
})] }, id))
|
|
325
|
+
})
|
|
326
|
+
})
|
|
327
|
+
});
|
|
328
|
+
}
|
|
329
|
+
const emojiCategoryIcons = {
|
|
330
|
+
activity: {
|
|
331
|
+
outline: /* @__PURE__ */ jsxs("svg", {
|
|
332
|
+
className: "size-full",
|
|
333
|
+
fill: "none",
|
|
334
|
+
stroke: "currentColor",
|
|
335
|
+
strokeLinecap: "round",
|
|
336
|
+
strokeLinejoin: "round",
|
|
337
|
+
strokeWidth: "2",
|
|
338
|
+
viewBox: "0 0 24 24",
|
|
339
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
340
|
+
children: [
|
|
341
|
+
/* @__PURE__ */ jsx("circle", {
|
|
342
|
+
cx: "12",
|
|
343
|
+
cy: "12",
|
|
344
|
+
r: "10"
|
|
345
|
+
}),
|
|
346
|
+
/* @__PURE__ */ jsx("path", { d: "M2.1 13.4A10.1 10.1 0 0 0 13.4 2.1" }),
|
|
347
|
+
/* @__PURE__ */ jsx("path", { d: "m5 4.9 14 14.2" }),
|
|
348
|
+
/* @__PURE__ */ jsx("path", { d: "M21.9 10.6a10.1 10.1 0 0 0-11.3 11.3" })
|
|
349
|
+
]
|
|
350
|
+
}),
|
|
351
|
+
solid: /* @__PURE__ */ jsxs("svg", {
|
|
352
|
+
className: "size-full",
|
|
353
|
+
fill: "none",
|
|
354
|
+
stroke: "currentColor",
|
|
355
|
+
strokeLinecap: "round",
|
|
356
|
+
strokeLinejoin: "round",
|
|
357
|
+
strokeWidth: "2",
|
|
358
|
+
viewBox: "0 0 24 24",
|
|
359
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
360
|
+
children: [
|
|
361
|
+
/* @__PURE__ */ jsx("circle", {
|
|
362
|
+
cx: "12",
|
|
363
|
+
cy: "12",
|
|
364
|
+
r: "10"
|
|
365
|
+
}),
|
|
366
|
+
/* @__PURE__ */ jsx("path", { d: "M2.1 13.4A10.1 10.1 0 0 0 13.4 2.1" }),
|
|
367
|
+
/* @__PURE__ */ jsx("path", { d: "m5 4.9 14 14.2" }),
|
|
368
|
+
/* @__PURE__ */ jsx("path", { d: "M21.9 10.6a10.1 10.1 0 0 0-11.3 11.3" })
|
|
369
|
+
]
|
|
370
|
+
})
|
|
371
|
+
},
|
|
372
|
+
custom: {
|
|
373
|
+
outline: /* @__PURE__ */ jsx(StarIcon, { className: "size-full" }),
|
|
374
|
+
solid: /* @__PURE__ */ jsx(StarIcon, { className: "size-full" })
|
|
375
|
+
},
|
|
376
|
+
flags: {
|
|
377
|
+
outline: /* @__PURE__ */ jsx(FlagIcon, { className: "size-full" }),
|
|
378
|
+
solid: /* @__PURE__ */ jsx(FlagIcon, { className: "size-full" })
|
|
379
|
+
},
|
|
380
|
+
foods: {
|
|
381
|
+
outline: /* @__PURE__ */ jsx(AppleIcon, { className: "size-full" }),
|
|
382
|
+
solid: /* @__PURE__ */ jsx(AppleIcon, { className: "size-full" })
|
|
383
|
+
},
|
|
384
|
+
frequent: {
|
|
385
|
+
outline: /* @__PURE__ */ jsx(ClockIcon, { className: "size-full" }),
|
|
386
|
+
solid: /* @__PURE__ */ jsx(ClockIcon, { className: "size-full" })
|
|
387
|
+
},
|
|
388
|
+
nature: {
|
|
389
|
+
outline: /* @__PURE__ */ jsx(LeafIcon, { className: "size-full" }),
|
|
390
|
+
solid: /* @__PURE__ */ jsx(LeafIcon, { className: "size-full" })
|
|
391
|
+
},
|
|
392
|
+
objects: {
|
|
393
|
+
outline: /* @__PURE__ */ jsx(LightbulbIcon, { className: "size-full" }),
|
|
394
|
+
solid: /* @__PURE__ */ jsx(LightbulbIcon, { className: "size-full" })
|
|
395
|
+
},
|
|
396
|
+
people: {
|
|
397
|
+
outline: /* @__PURE__ */ jsx(SmileIcon, { className: "size-full" }),
|
|
398
|
+
solid: /* @__PURE__ */ jsx(SmileIcon, { className: "size-full" })
|
|
399
|
+
},
|
|
400
|
+
places: {
|
|
401
|
+
outline: /* @__PURE__ */ jsx(CompassIcon, { className: "size-full" }),
|
|
402
|
+
solid: /* @__PURE__ */ jsx(CompassIcon, { className: "size-full" })
|
|
403
|
+
},
|
|
404
|
+
symbols: {
|
|
405
|
+
outline: /* @__PURE__ */ jsx(MusicIcon, { className: "size-full" }),
|
|
406
|
+
solid: /* @__PURE__ */ jsx(MusicIcon, { className: "size-full" })
|
|
407
|
+
}
|
|
408
|
+
};
|
|
409
|
+
const emojiSearchIcons = {
|
|
410
|
+
delete: /* @__PURE__ */ jsx(XIcon, { className: "size-4 text-current" }),
|
|
411
|
+
loupe: /* @__PURE__ */ jsx(SearchIcon, { className: "size-4 text-current" })
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
//#endregion
|
|
415
|
+
export { EmojiPicker, EmojiPopover, EmojiToolbarButton };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { RadicalIcon } from "lucide-react";
|
|
4
|
+
import { SlateElement } from "platejs/static";
|
|
5
|
+
import { getEquationHtml } from "@platejs/math";
|
|
6
|
+
|
|
7
|
+
//#region src/components/editor/ui/equation-node-static.tsx
|
|
8
|
+
function EquationElementStatic(props) {
|
|
9
|
+
const { element } = props;
|
|
10
|
+
const html = getEquationHtml({
|
|
11
|
+
element,
|
|
12
|
+
options: {
|
|
13
|
+
displayMode: true,
|
|
14
|
+
errorColor: "#cc0000",
|
|
15
|
+
fleqn: false,
|
|
16
|
+
leqno: false,
|
|
17
|
+
macros: { "\\f": "#1f(#2)" },
|
|
18
|
+
output: "htmlAndMathml",
|
|
19
|
+
strict: "warn",
|
|
20
|
+
throwOnError: false,
|
|
21
|
+
trust: false
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
return /* @__PURE__ */ jsxs(SlateElement, {
|
|
25
|
+
className: "my-1",
|
|
26
|
+
...props,
|
|
27
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
28
|
+
className: cn("group flex select-none items-center justify-center rounded-sm hover:bg-primary/10 data-[selected=true]:bg-primary/10", element.texExpression.length === 0 ? "bg-muted p-3 pr-9" : "px-2 py-1"),
|
|
29
|
+
children: element.texExpression.length > 0 ? /* @__PURE__ */ jsx("span", { dangerouslySetInnerHTML: { __html: html } }) : /* @__PURE__ */ jsxs("div", {
|
|
30
|
+
className: "flex h-7 w-full items-center gap-2 whitespace-nowrap text-muted-foreground text-sm",
|
|
31
|
+
children: [/* @__PURE__ */ jsx(RadicalIcon, { className: "size-6 text-muted-foreground/80" }), /* @__PURE__ */ jsx("div", { children: "Add a Tex equation" })]
|
|
32
|
+
})
|
|
33
|
+
}), props.children]
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
function InlineEquationElementStatic(props) {
|
|
37
|
+
const html = getEquationHtml({
|
|
38
|
+
element: props.element,
|
|
39
|
+
options: {
|
|
40
|
+
displayMode: true,
|
|
41
|
+
errorColor: "#cc0000",
|
|
42
|
+
fleqn: false,
|
|
43
|
+
leqno: false,
|
|
44
|
+
macros: { "\\f": "#1f(#2)" },
|
|
45
|
+
output: "htmlAndMathml",
|
|
46
|
+
strict: "warn",
|
|
47
|
+
throwOnError: false,
|
|
48
|
+
trust: false
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
return /* @__PURE__ */ jsxs(SlateElement, {
|
|
52
|
+
...props,
|
|
53
|
+
className: "inline-block select-none rounded-sm [&_.katex-display]:my-0",
|
|
54
|
+
children: [/* @__PURE__ */ jsx("div", {
|
|
55
|
+
className: cn("after:-top-0.5 after:-left-1 after:absolute after:inset-0 after:z-1 after:h-[calc(100%)+4px] after:w-[calc(100%+8px)] after:rounded-sm after:content-[\"\"]", "h-6", props.element.texExpression.length === 0 && "text-muted-foreground after:bg-neutral-500/10"),
|
|
56
|
+
children: /* @__PURE__ */ jsx("span", {
|
|
57
|
+
className: cn(props.element.texExpression.length === 0 && "hidden", "font-mono leading-none"),
|
|
58
|
+
dangerouslySetInnerHTML: { __html: html }
|
|
59
|
+
})
|
|
60
|
+
}), props.children]
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
//#endregion
|
|
65
|
+
export { EquationElementStatic, InlineEquationElementStatic };
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.mjs";
|
|
4
|
+
import { Button } from "../../ui/button.mjs";
|
|
5
|
+
import { Popover, PopoverContent, PopoverTrigger } from "../../ui/popover.mjs";
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
import { PlateElement, createPrimitiveComponent, useEditorRef, useEditorSelector, useElement, useReadOnly, useSelected } from "platejs/react";
|
|
8
|
+
import * as React$1 from "react";
|
|
9
|
+
import { BlockSelectionPlugin } from "@platejs/selection/react";
|
|
10
|
+
import { CornerDownLeftIcon, RadicalIcon } from "lucide-react";
|
|
11
|
+
import { useEquationElement, useEquationInput } from "@platejs/math/react";
|
|
12
|
+
import TextareaAutosize from "react-textarea-autosize";
|
|
13
|
+
|
|
14
|
+
//#region src/components/editor/ui/equation-node.tsx
|
|
15
|
+
function EquationElement(props) {
|
|
16
|
+
const selected = useSelected();
|
|
17
|
+
const [open, setOpen] = React$1.useState(selected);
|
|
18
|
+
const katexRef = React$1.useRef(null);
|
|
19
|
+
useEquationElement({
|
|
20
|
+
element: props.element,
|
|
21
|
+
katexRef,
|
|
22
|
+
options: {
|
|
23
|
+
displayMode: true,
|
|
24
|
+
errorColor: "#cc0000",
|
|
25
|
+
fleqn: false,
|
|
26
|
+
leqno: false,
|
|
27
|
+
macros: { "\\f": "#1f(#2)" },
|
|
28
|
+
output: "htmlAndMathml",
|
|
29
|
+
strict: "warn",
|
|
30
|
+
throwOnError: false,
|
|
31
|
+
trust: false
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
35
|
+
className: "my-1",
|
|
36
|
+
...props,
|
|
37
|
+
children: [/* @__PURE__ */ jsxs(Popover, {
|
|
38
|
+
open,
|
|
39
|
+
onOpenChange: setOpen,
|
|
40
|
+
modal: false,
|
|
41
|
+
children: [/* @__PURE__ */ jsx(PopoverTrigger, {
|
|
42
|
+
asChild: true,
|
|
43
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
44
|
+
className: cn("group flex cursor-pointer select-none items-center justify-center rounded-sm hover:bg-primary/10 data-[selected=true]:bg-primary/10", props.element.texExpression.length === 0 ? "bg-muted p-3 pr-9" : "px-2 py-1"),
|
|
45
|
+
"data-selected": selected,
|
|
46
|
+
contentEditable: false,
|
|
47
|
+
role: "button",
|
|
48
|
+
children: props.element.texExpression.length > 0 ? /* @__PURE__ */ jsx("span", { ref: katexRef }) : /* @__PURE__ */ jsxs("div", {
|
|
49
|
+
className: "flex h-7 w-full items-center gap-2 whitespace-nowrap text-muted-foreground text-sm",
|
|
50
|
+
children: [/* @__PURE__ */ jsx(RadicalIcon, { className: "size-6 text-muted-foreground/80" }), /* @__PURE__ */ jsx("div", { children: "Add a Tex equation" })]
|
|
51
|
+
})
|
|
52
|
+
})
|
|
53
|
+
}), /* @__PURE__ */ jsx(EquationPopoverContent, {
|
|
54
|
+
open,
|
|
55
|
+
placeholder: "f(x) = \\begin{cases}\n x^2, &\\quad x > 0 \\\\\n 0, &\\quad x = 0 \\\\\n -x^2, &\\quad x < 0\n\\end{cases}",
|
|
56
|
+
isInline: false,
|
|
57
|
+
setOpen
|
|
58
|
+
})]
|
|
59
|
+
}), props.children]
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
function InlineEquationElement(props) {
|
|
63
|
+
const element = props.element;
|
|
64
|
+
const katexRef = React$1.useRef(null);
|
|
65
|
+
const selected = useSelected();
|
|
66
|
+
const isCollapsed = useEditorSelector((editor) => editor.api.isCollapsed(), []);
|
|
67
|
+
const [open, setOpen] = React$1.useState(selected && isCollapsed);
|
|
68
|
+
React$1.useEffect(() => {
|
|
69
|
+
if (selected && isCollapsed) setOpen(true);
|
|
70
|
+
}, [selected, isCollapsed]);
|
|
71
|
+
useEquationElement({
|
|
72
|
+
element,
|
|
73
|
+
katexRef,
|
|
74
|
+
options: {
|
|
75
|
+
displayMode: true,
|
|
76
|
+
errorColor: "#cc0000",
|
|
77
|
+
fleqn: false,
|
|
78
|
+
leqno: false,
|
|
79
|
+
macros: { "\\f": "#1f(#2)" },
|
|
80
|
+
output: "htmlAndMathml",
|
|
81
|
+
strict: "warn",
|
|
82
|
+
throwOnError: false,
|
|
83
|
+
trust: false
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
return /* @__PURE__ */ jsxs(PlateElement, {
|
|
87
|
+
...props,
|
|
88
|
+
className: cn("mx-1 inline-block select-none rounded-sm [&_.katex-display]:my-0!"),
|
|
89
|
+
children: [/* @__PURE__ */ jsxs(Popover, {
|
|
90
|
+
open,
|
|
91
|
+
onOpenChange: setOpen,
|
|
92
|
+
modal: false,
|
|
93
|
+
children: [/* @__PURE__ */ jsx(PopoverTrigger, {
|
|
94
|
+
asChild: true,
|
|
95
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
96
|
+
className: cn("after:-top-0.5 after:-left-1 after:absolute after:inset-0 after:z-1 after:h-[calc(100%)+4px] after:w-[calc(100%+8px)] after:rounded-sm after:content-[\"\"]", "h-6", (element.texExpression.length > 0 && open || selected) && "after:bg-brand/15", element.texExpression.length === 0 && "text-muted-foreground after:bg-neutral-500/10"),
|
|
97
|
+
contentEditable: false,
|
|
98
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
99
|
+
ref: katexRef,
|
|
100
|
+
className: cn(element.texExpression.length === 0 && "hidden", "font-mono leading-none")
|
|
101
|
+
}), element.texExpression.length === 0 && /* @__PURE__ */ jsxs("span", { children: [/* @__PURE__ */ jsx(RadicalIcon, { className: "mr-1 inline-block h-[19px] w-4 py-[1.5px] align-text-bottom" }), "New equation"] })]
|
|
102
|
+
})
|
|
103
|
+
}), /* @__PURE__ */ jsx(EquationPopoverContent, {
|
|
104
|
+
className: "my-auto",
|
|
105
|
+
open,
|
|
106
|
+
placeholder: "E = mc^2",
|
|
107
|
+
setOpen,
|
|
108
|
+
isInline: true
|
|
109
|
+
})]
|
|
110
|
+
}), props.children]
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
const EquationInput = createPrimitiveComponent(TextareaAutosize)({ propsHook: useEquationInput });
|
|
114
|
+
const EquationPopoverContent = ({ className, isInline, open, setOpen, ...props }) => {
|
|
115
|
+
const editor = useEditorRef();
|
|
116
|
+
const readOnly = useReadOnly();
|
|
117
|
+
const element = useElement();
|
|
118
|
+
React$1.useEffect(() => {
|
|
119
|
+
if (isInline && open) setOpen(true);
|
|
120
|
+
}, [
|
|
121
|
+
isInline,
|
|
122
|
+
open,
|
|
123
|
+
setOpen
|
|
124
|
+
]);
|
|
125
|
+
if (readOnly) return null;
|
|
126
|
+
const onClose = () => {
|
|
127
|
+
setOpen(false);
|
|
128
|
+
if (isInline) editor.tf.select(element, {
|
|
129
|
+
focus: true,
|
|
130
|
+
next: true
|
|
131
|
+
});
|
|
132
|
+
else editor.getApi(BlockSelectionPlugin).blockSelection.set(element.id);
|
|
133
|
+
};
|
|
134
|
+
return /* @__PURE__ */ jsxs(PopoverContent, {
|
|
135
|
+
className: "flex gap-2",
|
|
136
|
+
onEscapeKeyDown: (e) => {
|
|
137
|
+
e.preventDefault();
|
|
138
|
+
},
|
|
139
|
+
contentEditable: false,
|
|
140
|
+
children: [/* @__PURE__ */ jsx(EquationInput, {
|
|
141
|
+
className: cn("max-h-[50vh] grow resize-none p-2 text-sm", className),
|
|
142
|
+
state: {
|
|
143
|
+
isInline,
|
|
144
|
+
open,
|
|
145
|
+
onClose
|
|
146
|
+
},
|
|
147
|
+
autoFocus: true,
|
|
148
|
+
...props
|
|
149
|
+
}), /* @__PURE__ */ jsxs(Button, {
|
|
150
|
+
variant: "secondary",
|
|
151
|
+
className: "px-3",
|
|
152
|
+
onClick: onClose,
|
|
153
|
+
children: ["Done ", /* @__PURE__ */ jsx(CornerDownLeftIcon, { className: "size-3.5" })]
|
|
154
|
+
})]
|
|
155
|
+
});
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
//#endregion
|
|
159
|
+
export { EquationElement, InlineEquationElement };
|