@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,223 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
|
|
3
|
+
@import "tw-animate-css";
|
|
4
|
+
@import "./codeblock/styles.css";
|
|
5
|
+
|
|
6
|
+
@custom-variant dark (&:is(.dark *));
|
|
7
|
+
|
|
8
|
+
@theme inline {
|
|
9
|
+
--color-background: var(--background);
|
|
10
|
+
--color-foreground: var(--foreground);
|
|
11
|
+
--font-sans: var(--font-sans);
|
|
12
|
+
--font-mono: var(--font-geist-mono);
|
|
13
|
+
--color-sidebar-ring: var(--sidebar-ring);
|
|
14
|
+
--color-sidebar-border: var(--sidebar-border);
|
|
15
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
16
|
+
--color-sidebar-accent: var(--sidebar-accent);
|
|
17
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
18
|
+
--color-sidebar-primary: var(--sidebar-primary);
|
|
19
|
+
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
20
|
+
--color-sidebar: var(--sidebar);
|
|
21
|
+
--color-chart-5: var(--chart-5);
|
|
22
|
+
--color-chart-4: var(--chart-4);
|
|
23
|
+
--color-chart-3: var(--chart-3);
|
|
24
|
+
--color-chart-2: var(--chart-2);
|
|
25
|
+
--color-chart-1: var(--chart-1);
|
|
26
|
+
--color-ring: var(--ring);
|
|
27
|
+
--color-input: var(--input);
|
|
28
|
+
--color-border: var(--border);
|
|
29
|
+
--color-destructive: var(--destructive);
|
|
30
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
31
|
+
--color-accent: var(--accent);
|
|
32
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
33
|
+
--color-muted: var(--muted);
|
|
34
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
35
|
+
--color-secondary: var(--secondary);
|
|
36
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
37
|
+
--color-primary: var(--primary);
|
|
38
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
39
|
+
--color-popover: var(--popover);
|
|
40
|
+
--color-card-foreground: var(--card-foreground);
|
|
41
|
+
--color-card: var(--card);
|
|
42
|
+
--radius-sm: calc(var(--radius) - 4px);
|
|
43
|
+
--radius-md: calc(var(--radius) - 2px);
|
|
44
|
+
--radius-lg: var(--radius);
|
|
45
|
+
--radius-xl: calc(var(--radius) + 4px);
|
|
46
|
+
--radius-2xl: calc(var(--radius) + 8px);
|
|
47
|
+
--radius-3xl: calc(var(--radius) + 12px);
|
|
48
|
+
--radius-4xl: calc(var(--radius) + 16px);
|
|
49
|
+
--color-highlight: var(--highlight);
|
|
50
|
+
--color-brand: var(--brand);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
:root {
|
|
54
|
+
--background: oklch(1 0 0);
|
|
55
|
+
--foreground: oklch(0.141 0.005 285.823);
|
|
56
|
+
--card: oklch(1 0 0);
|
|
57
|
+
--card-foreground: oklch(0.141 0.005 285.823);
|
|
58
|
+
--popover: oklch(1 0 0);
|
|
59
|
+
--popover-foreground: oklch(0.141 0.005 285.823);
|
|
60
|
+
--primary: oklch(53.319% 0.25972 262.653);
|
|
61
|
+
--primary-foreground: oklch(0.98 0.016 73.684);
|
|
62
|
+
--secondary: oklch(0.967 0.001 286.375);
|
|
63
|
+
--secondary-foreground: oklch(0.21 0.006 285.885);
|
|
64
|
+
--muted: oklch(0.967 0.001 286.375);
|
|
65
|
+
--muted-foreground: oklch(0.552 0.016 285.938);
|
|
66
|
+
--accent: oklch(0.967 0.001 286.375);
|
|
67
|
+
--accent-foreground: oklch(0.21 0.006 285.885);
|
|
68
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
69
|
+
--border: oklch(0.92 0.004 286.32);
|
|
70
|
+
--input: oklch(0.92 0.004 286.32);
|
|
71
|
+
--ring: oklch(0.705 0.015 286.067);
|
|
72
|
+
--chart-1: oklch(0.837 0.128 66.29);
|
|
73
|
+
--chart-2: oklch(0.705 0.213 47.604);
|
|
74
|
+
--chart-3: oklch(0.646 0.222 41.116);
|
|
75
|
+
--chart-4: oklch(0.553 0.195 38.402);
|
|
76
|
+
--chart-5: oklch(0.47 0.157 37.304);
|
|
77
|
+
--radius: 0.625rem;
|
|
78
|
+
--sidebar: oklch(0.985 0 0);
|
|
79
|
+
--sidebar-foreground: oklch(0.141 0.005 285.823);
|
|
80
|
+
--sidebar-primary: oklch(0.646 0.222 41.116);
|
|
81
|
+
--sidebar-primary-foreground: oklch(0.98 0.016 73.684);
|
|
82
|
+
--sidebar-accent: oklch(0.967 0.001 286.375);
|
|
83
|
+
--sidebar-accent-foreground: oklch(0.21 0.006 285.885);
|
|
84
|
+
--sidebar-border: oklch(0.92 0.004 286.32);
|
|
85
|
+
--sidebar-ring: oklch(0.705 0.015 286.067);
|
|
86
|
+
--highlight: oklch(0.852 0.199 91.936);
|
|
87
|
+
--brand: oklch(0.623 0.214 259.815);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.dark {
|
|
91
|
+
--background: oklch(22.771% 0.00577 285.875);
|
|
92
|
+
--foreground: oklch(96.416% 0.00011 271.152);
|
|
93
|
+
--card: oklch(27.521% 0.01101 285.621);
|
|
94
|
+
--card-foreground: oklch(90.613% 0.00888 264.603);
|
|
95
|
+
--popover: oklch(18.717% 0.00202 286.054);
|
|
96
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
97
|
+
--primary: oklch(61.824% 0.20616 261.568);
|
|
98
|
+
--primary-foreground: oklch(0.98 0.016 73.684);
|
|
99
|
+
--secondary: oklch(31.034% 0.00534 285.995);
|
|
100
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
101
|
+
--muted: oklch(0.274 0.006 286.033);
|
|
102
|
+
--muted-foreground: oklch(0.705 0.015 286.067);
|
|
103
|
+
--accent: oklch(33.792% 0.00523 286.016);
|
|
104
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
105
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
106
|
+
--border: oklch(1 0 0 / 10%);
|
|
107
|
+
--input: oklch(1 0 0 / 15%);
|
|
108
|
+
--ring: oklch(0.552 0.016 285.938);
|
|
109
|
+
--chart-1: oklch(0.837 0.128 66.29);
|
|
110
|
+
--chart-2: oklch(0.705 0.213 47.604);
|
|
111
|
+
--chart-3: oklch(0.646 0.222 41.116);
|
|
112
|
+
--chart-4: oklch(0.553 0.195 38.402);
|
|
113
|
+
--chart-5: oklch(0.47 0.157 37.304);
|
|
114
|
+
--sidebar: oklch(27.521% 0.01101 285.621);
|
|
115
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
116
|
+
--sidebar-primary: oklch(0.705 0.213 47.604);
|
|
117
|
+
--sidebar-primary-foreground: oklch(0.98 0.016 73.684);
|
|
118
|
+
--sidebar-accent: oklch(33.01% 0.00526 286.01);
|
|
119
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
120
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
121
|
+
--sidebar-ring: oklch(0.552 0.016 285.938);
|
|
122
|
+
--highlight: oklch(0.852 0.199 91.936);
|
|
123
|
+
--brand: oklch(0.707 0.165 254.624);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
@layer base {
|
|
127
|
+
* {
|
|
128
|
+
@apply border-border outline-ring/50;
|
|
129
|
+
}
|
|
130
|
+
body {
|
|
131
|
+
@apply bg-background text-foreground;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@theme inline {
|
|
136
|
+
@keyframes accordion-down {
|
|
137
|
+
from {
|
|
138
|
+
height: 0;
|
|
139
|
+
}
|
|
140
|
+
to {
|
|
141
|
+
height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto));
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
@keyframes accordion-up {
|
|
146
|
+
from {
|
|
147
|
+
height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto));
|
|
148
|
+
}
|
|
149
|
+
to {
|
|
150
|
+
height: 0;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/* Custom variants */
|
|
156
|
+
@custom-variant data-open {
|
|
157
|
+
&:where([data-state="open"]),
|
|
158
|
+
&:where([data-open]:not([data-open="false"])) {
|
|
159
|
+
@slot;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@custom-variant data-closed {
|
|
164
|
+
&:where([data-state="closed"]),
|
|
165
|
+
&:where([data-closed]:not([data-closed="false"])) {
|
|
166
|
+
@slot;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@custom-variant data-checked {
|
|
171
|
+
&:where([data-state="checked"]),
|
|
172
|
+
&:where([data-checked]:not([data-checked="false"])) {
|
|
173
|
+
@slot;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
@custom-variant data-unchecked {
|
|
178
|
+
&:where([data-state="unchecked"]),
|
|
179
|
+
&:where([data-unchecked]:not([data-unchecked="false"])) {
|
|
180
|
+
@slot;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@custom-variant data-selected {
|
|
185
|
+
&:where([data-selected="true"]) {
|
|
186
|
+
@slot;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
@custom-variant data-disabled {
|
|
191
|
+
&:where([data-disabled="true"]),
|
|
192
|
+
&:where([data-disabled]:not([data-disabled="false"])) {
|
|
193
|
+
@slot;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
@custom-variant data-active {
|
|
198
|
+
&:where([data-state="active"]),
|
|
199
|
+
&:where([data-active]:not([data-active="false"])) {
|
|
200
|
+
@slot;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@custom-variant data-horizontal {
|
|
205
|
+
&:where([data-orientation="horizontal"]) {
|
|
206
|
+
@slot;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
@custom-variant data-vertical {
|
|
211
|
+
&:where([data-orientation="vertical"]) {
|
|
212
|
+
@slot;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
@utility no-scrollbar {
|
|
217
|
+
-ms-overflow-style: none;
|
|
218
|
+
scrollbar-width: none;
|
|
219
|
+
|
|
220
|
+
&::-webkit-scrollbar {
|
|
221
|
+
display: none;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { queryClient } from "@/lib/data/query";
|
|
3
|
+
import { QueryClientProvider } from "@tanstack/react-query";
|
|
4
|
+
import { ThemeProvider } from "next-themes";
|
|
5
|
+
import { ReactNode } from "react";
|
|
6
|
+
|
|
7
|
+
export function Providers({ children }: { children: ReactNode }) {
|
|
8
|
+
return (
|
|
9
|
+
<QueryClientProvider client={queryClient}>
|
|
10
|
+
<ThemeProvider attribute="class" enableSystem disableTransitionOnChange>
|
|
11
|
+
{children}
|
|
12
|
+
</ThemeProvider>
|
|
13
|
+
</QueryClientProvider>
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { Metadata } from "next";
|
|
2
|
+
import { Geist, Geist_Mono, Inter } from "next/font/google";
|
|
3
|
+
import "./globals.css";
|
|
4
|
+
import { Providers } from "./layout.client";
|
|
5
|
+
|
|
6
|
+
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" });
|
|
7
|
+
|
|
8
|
+
const geistSans = Geist({
|
|
9
|
+
variable: "--font-geist-sans",
|
|
10
|
+
subsets: ["latin"],
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
const geistMono = Geist_Mono({
|
|
14
|
+
variable: "--font-geist-mono",
|
|
15
|
+
subsets: ["latin"],
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
export const metadata: Metadata = {
|
|
19
|
+
title: "Fuma Content Studio",
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export default async function RootLayout({ children }: { children: React.ReactNode }) {
|
|
23
|
+
return (
|
|
24
|
+
<html lang="en" className={inter.variable} suppressHydrationWarning>
|
|
25
|
+
<body className={`${geistSans.variable} ${geistMono.variable}`}>
|
|
26
|
+
<Providers>{children}</Providers>
|
|
27
|
+
</body>
|
|
28
|
+
</html>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import {
|
|
5
|
+
Sidebar,
|
|
6
|
+
SidebarContent,
|
|
7
|
+
SidebarFooter,
|
|
8
|
+
SidebarGroup,
|
|
9
|
+
SidebarGroupContent,
|
|
10
|
+
SidebarHeader,
|
|
11
|
+
SidebarMenu,
|
|
12
|
+
SidebarMenuButton,
|
|
13
|
+
SidebarMenuItem,
|
|
14
|
+
} from "@/components/ui/sidebar";
|
|
15
|
+
import Link from "next/link";
|
|
16
|
+
import { FileIcon, LayersIcon, Monitor, Moon, SearchIcon, Sun } from "lucide-react";
|
|
17
|
+
import { Badge } from "./ui/badge";
|
|
18
|
+
import { usePathname } from "next/navigation";
|
|
19
|
+
import { cn } from "@/lib/utils";
|
|
20
|
+
import { useTheme } from "next-themes";
|
|
21
|
+
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "./ui/select";
|
|
22
|
+
import { Logo } from "./icons/logo";
|
|
23
|
+
import { DocumentActionsContext } from "./collection/document/actions";
|
|
24
|
+
import { eq, ilike, or, useLiveQuery } from "@tanstack/react-db";
|
|
25
|
+
import {
|
|
26
|
+
collection,
|
|
27
|
+
documentCollection,
|
|
28
|
+
type CollectionItem,
|
|
29
|
+
type DocumentItem,
|
|
30
|
+
} from "@/lib/data/store";
|
|
31
|
+
import { CollectionActionsContext } from "./collection/actions";
|
|
32
|
+
|
|
33
|
+
export function AppSidebar(props: React.ComponentProps<typeof Sidebar>) {
|
|
34
|
+
const [search, setSearch] = React.useState("");
|
|
35
|
+
const { data: items = [] } = useLiveQuery(
|
|
36
|
+
(q) => {
|
|
37
|
+
return q
|
|
38
|
+
.from({ collection })
|
|
39
|
+
.join({ docs: documentCollection }, ({ collection, docs }) =>
|
|
40
|
+
eq(collection.id, docs.collectionId),
|
|
41
|
+
)
|
|
42
|
+
.where((b) =>
|
|
43
|
+
or(ilike(b.collection.name, `${search}%`), ilike(b.docs?.name, `${search}%`)),
|
|
44
|
+
);
|
|
45
|
+
},
|
|
46
|
+
[search],
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
return (
|
|
50
|
+
<Sidebar variant="floating" {...props}>
|
|
51
|
+
<SidebarHeader>
|
|
52
|
+
<SidebarMenuButton asChild>
|
|
53
|
+
<Link href="/" className="ps-1 font-semibold text-lg font-mono">
|
|
54
|
+
<Logo className="size-6!" />
|
|
55
|
+
Fuma Content
|
|
56
|
+
</Link>
|
|
57
|
+
</SidebarMenuButton>
|
|
58
|
+
</SidebarHeader>
|
|
59
|
+
<SidebarContent>
|
|
60
|
+
<SidebarGroup>
|
|
61
|
+
<SidebarGroupContent className="flex flex-col gap-2">
|
|
62
|
+
<div className="inline-flex items-center gap-2 border rounded-full bg-secondary text-secondary-foreground px-3 transition-colors focus-within:ring-2 focus-within:ring-ring">
|
|
63
|
+
<SearchIcon className="size-4 text-muted-foreground" />
|
|
64
|
+
<input
|
|
65
|
+
placeholder="Search..."
|
|
66
|
+
className="py-1.5 focus-visible:outline-none"
|
|
67
|
+
value={search}
|
|
68
|
+
onChange={(e) => setSearch(e.target.value)}
|
|
69
|
+
/>
|
|
70
|
+
</div>
|
|
71
|
+
<SidebarMenu className="gap-0">
|
|
72
|
+
{items.map((item, i) => {
|
|
73
|
+
const subsequence = i > 0 && items[i - 1].collection.id === item.collection.id;
|
|
74
|
+
|
|
75
|
+
return (
|
|
76
|
+
<React.Fragment key={`${item.collection.id}-${item.docs?.id}`}>
|
|
77
|
+
{!subsequence && <SidebarCollectionItem item={item.collection} />}
|
|
78
|
+
{item.docs && <SidebarDocumentItem item={item.docs} />}
|
|
79
|
+
</React.Fragment>
|
|
80
|
+
);
|
|
81
|
+
})}
|
|
82
|
+
</SidebarMenu>
|
|
83
|
+
</SidebarGroupContent>
|
|
84
|
+
</SidebarGroup>
|
|
85
|
+
</SidebarContent>
|
|
86
|
+
<SidebarFooter>
|
|
87
|
+
<ThemeToggle />
|
|
88
|
+
</SidebarFooter>
|
|
89
|
+
</Sidebar>
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function SidebarDocumentItem({ item }: { item: DocumentItem }) {
|
|
94
|
+
const pathname = usePathname();
|
|
95
|
+
const href = `/collection/${item.collectionId}/${item.id}`;
|
|
96
|
+
return (
|
|
97
|
+
<DocumentActionsContext document={item}>
|
|
98
|
+
<SidebarMenuItem>
|
|
99
|
+
<SidebarMenuButton
|
|
100
|
+
tooltip={item.name}
|
|
101
|
+
isActive={pathname === href}
|
|
102
|
+
className={cn("ps-5", !pathname.startsWith(href + "/") && "text-muted-foreground")}
|
|
103
|
+
asChild
|
|
104
|
+
>
|
|
105
|
+
<Link href={href}>
|
|
106
|
+
<FileIcon className="text-muted-foreground" />
|
|
107
|
+
<span>{item.name}</span>
|
|
108
|
+
</Link>
|
|
109
|
+
</SidebarMenuButton>
|
|
110
|
+
</SidebarMenuItem>
|
|
111
|
+
</DocumentActionsContext>
|
|
112
|
+
);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function SidebarCollectionItem({ item }: { item: CollectionItem }) {
|
|
116
|
+
const pathname = usePathname();
|
|
117
|
+
const href = `/collection/${item.id}`;
|
|
118
|
+
return (
|
|
119
|
+
<CollectionActionsContext collection={item}>
|
|
120
|
+
<SidebarMenuItem>
|
|
121
|
+
<SidebarMenuButton
|
|
122
|
+
tooltip={item.name}
|
|
123
|
+
isActive={pathname === href}
|
|
124
|
+
className={cn("ps-3", !pathname.startsWith(href + "/") && "text-muted-foreground")}
|
|
125
|
+
asChild
|
|
126
|
+
>
|
|
127
|
+
<Link href={href}>
|
|
128
|
+
<LayersIcon className="text-muted-foreground" />
|
|
129
|
+
<span>{item.name}</span>
|
|
130
|
+
{item.badge && <Badge className="ms-auto">{item.badge}</Badge>}
|
|
131
|
+
</Link>
|
|
132
|
+
</SidebarMenuButton>
|
|
133
|
+
</SidebarMenuItem>
|
|
134
|
+
</CollectionActionsContext>
|
|
135
|
+
);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
function ThemeToggle() {
|
|
139
|
+
const { theme = "light", setTheme } = useTheme();
|
|
140
|
+
|
|
141
|
+
return (
|
|
142
|
+
<Select value={theme} onValueChange={setTheme}>
|
|
143
|
+
<SelectTrigger className="text-muted-foreground">
|
|
144
|
+
<SelectValue />
|
|
145
|
+
</SelectTrigger>
|
|
146
|
+
<SelectContent className="text-muted-foreground">
|
|
147
|
+
<SelectItem value="light">
|
|
148
|
+
<Sun className="size-4" />
|
|
149
|
+
Light
|
|
150
|
+
</SelectItem>
|
|
151
|
+
<SelectItem value="dark">
|
|
152
|
+
<Moon className="size-4" fill="currentColor" />
|
|
153
|
+
Dark
|
|
154
|
+
</SelectItem>
|
|
155
|
+
<SelectItem value="system">
|
|
156
|
+
<Monitor className="size-4" />
|
|
157
|
+
System
|
|
158
|
+
</SelectItem>
|
|
159
|
+
</SelectContent>
|
|
160
|
+
</Select>
|
|
161
|
+
);
|
|
162
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { type ComponentProps, lazy, Suspense } from "react";
|
|
3
|
+
|
|
4
|
+
const Editor = lazy(() => import("./mdx").then((mod) => ({ default: mod.MDXCodeEditor })));
|
|
5
|
+
|
|
6
|
+
export function MDXCodeEditorLazy(props: ComponentProps<typeof Editor>) {
|
|
7
|
+
return (
|
|
8
|
+
<Suspense
|
|
9
|
+
fallback={
|
|
10
|
+
<div className="p-2 text-sm font-mono flex items-center justify-center text-muted-foreground h-full bg-secondary border rounded-lg">
|
|
11
|
+
Loading editor...
|
|
12
|
+
</div>
|
|
13
|
+
}
|
|
14
|
+
>
|
|
15
|
+
<Editor {...props} />
|
|
16
|
+
</Suspense>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import Editor from "@monaco-editor/react";
|
|
4
|
+
import { useTheme } from "next-themes";
|
|
5
|
+
|
|
6
|
+
export function MDXCodeEditor({
|
|
7
|
+
defaultValue,
|
|
8
|
+
onValueChange,
|
|
9
|
+
}: {
|
|
10
|
+
defaultValue: string;
|
|
11
|
+
onValueChange: (value: string) => void;
|
|
12
|
+
}) {
|
|
13
|
+
const { resolvedTheme } = useTheme();
|
|
14
|
+
const [value, setValue] = useState(defaultValue);
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<Editor
|
|
18
|
+
language="mdx"
|
|
19
|
+
value={value}
|
|
20
|
+
onChange={(value = "") => {
|
|
21
|
+
setValue(value);
|
|
22
|
+
onValueChange(value);
|
|
23
|
+
}}
|
|
24
|
+
theme={resolvedTheme === "dark" ? "vs-dark" : "light"}
|
|
25
|
+
loading={
|
|
26
|
+
<pre className="ps-17 py-5 text-sm size-full">
|
|
27
|
+
<code>{value}</code>
|
|
28
|
+
</pre>
|
|
29
|
+
}
|
|
30
|
+
className="bg-secondary text-secondary-foreground overflow-hidden border rounded-lg"
|
|
31
|
+
options={{
|
|
32
|
+
minimap: { enabled: false },
|
|
33
|
+
padding: {
|
|
34
|
+
top: 20,
|
|
35
|
+
bottom: 20,
|
|
36
|
+
},
|
|
37
|
+
fontSize: 14,
|
|
38
|
+
lineHeight: 1.428571,
|
|
39
|
+
lineNumbers: "on",
|
|
40
|
+
scrollBeyondLastLine: false,
|
|
41
|
+
automaticLayout: true,
|
|
42
|
+
tabSize: 2,
|
|
43
|
+
formatOnPaste: true,
|
|
44
|
+
formatOnType: true,
|
|
45
|
+
}}
|
|
46
|
+
/>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { type ComponentProps, lazy, Suspense } from "react";
|
|
3
|
+
|
|
4
|
+
const Editor = lazy(() => import("./yaml").then((mod) => ({ default: mod.YamlEditor })));
|
|
5
|
+
|
|
6
|
+
export function YamlEditorLazy(props: ComponentProps<typeof Editor>) {
|
|
7
|
+
return (
|
|
8
|
+
<Suspense
|
|
9
|
+
fallback={
|
|
10
|
+
<div className="flex flex-col bg-secondary text-secondary-foreground overflow-hidden border rounded-lg">
|
|
11
|
+
<div className="p-2 h-[240px] text-sm font-mono flex items-center justify-center text-muted-foreground">
|
|
12
|
+
Loading editor...
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
}
|
|
16
|
+
>
|
|
17
|
+
<Editor {...props} />
|
|
18
|
+
</Suspense>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import Editor from "@monaco-editor/react";
|
|
4
|
+
import { load, dump } from "js-yaml";
|
|
5
|
+
import { useTheme } from "next-themes";
|
|
6
|
+
|
|
7
|
+
export function YamlEditor({
|
|
8
|
+
defaultValue,
|
|
9
|
+
onValueChange,
|
|
10
|
+
}: {
|
|
11
|
+
defaultValue: unknown;
|
|
12
|
+
onValueChange: (v: unknown) => void;
|
|
13
|
+
}) {
|
|
14
|
+
const { resolvedTheme } = useTheme();
|
|
15
|
+
const [error, setError] = useState<string | null>(null);
|
|
16
|
+
const [value, setValue] = useState(() => {
|
|
17
|
+
try {
|
|
18
|
+
return dump(defaultValue);
|
|
19
|
+
} catch {
|
|
20
|
+
return "";
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<div className="flex flex-col bg-secondary text-secondary-foreground overflow-hidden border rounded-lg">
|
|
26
|
+
<Editor
|
|
27
|
+
height="240px"
|
|
28
|
+
language="yaml"
|
|
29
|
+
value={value}
|
|
30
|
+
onChange={(newValue = "") => {
|
|
31
|
+
setValue(newValue);
|
|
32
|
+
try {
|
|
33
|
+
const parsed = load(newValue);
|
|
34
|
+
onValueChange(parsed);
|
|
35
|
+
setError(null);
|
|
36
|
+
} catch (e) {
|
|
37
|
+
if (e instanceof Error) {
|
|
38
|
+
setError(e.message);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}}
|
|
42
|
+
theme={resolvedTheme === "dark" ? "vs-dark" : "light"}
|
|
43
|
+
loading={
|
|
44
|
+
<pre className="ps-17 py-5 text-sm size-full">
|
|
45
|
+
<code>{value}</code>
|
|
46
|
+
</pre>
|
|
47
|
+
}
|
|
48
|
+
options={{
|
|
49
|
+
minimap: { enabled: false },
|
|
50
|
+
padding: {
|
|
51
|
+
top: 20,
|
|
52
|
+
bottom: 20,
|
|
53
|
+
},
|
|
54
|
+
fontSize: 14,
|
|
55
|
+
lineHeight: 1.428571,
|
|
56
|
+
lineNumbers: "on",
|
|
57
|
+
scrollBeyondLastLine: false,
|
|
58
|
+
automaticLayout: true,
|
|
59
|
+
tabSize: 2,
|
|
60
|
+
formatOnPaste: true,
|
|
61
|
+
formatOnType: true,
|
|
62
|
+
}}
|
|
63
|
+
/>
|
|
64
|
+
{error && (
|
|
65
|
+
<p className="p-2 text-sm font-mono border-t font-semibold bg-card text-destructive">
|
|
66
|
+
{error}
|
|
67
|
+
</p>
|
|
68
|
+
)}
|
|
69
|
+
</div>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import type { CollectionItem } from "@/lib/data/store";
|
|
3
|
+
import {
|
|
4
|
+
ContextMenu,
|
|
5
|
+
ContextMenuContent,
|
|
6
|
+
ContextMenuItem,
|
|
7
|
+
ContextMenuTrigger,
|
|
8
|
+
} from "../ui/context-menu";
|
|
9
|
+
import type { ReactElement } from "react";
|
|
10
|
+
import { useCreateDocumentDialog } from "./client";
|
|
11
|
+
import { FilePlusIcon } from "lucide-react";
|
|
12
|
+
|
|
13
|
+
export function CollectionActionsContext({
|
|
14
|
+
collection,
|
|
15
|
+
children,
|
|
16
|
+
}: {
|
|
17
|
+
collection: CollectionItem;
|
|
18
|
+
children: ReactElement;
|
|
19
|
+
}) {
|
|
20
|
+
const createDoc = useCreateDocumentDialog(collection.id);
|
|
21
|
+
|
|
22
|
+
let child = (
|
|
23
|
+
<ContextMenu>
|
|
24
|
+
<ContextMenuTrigger render={children} />
|
|
25
|
+
<ContextMenuContent>
|
|
26
|
+
{createDoc && (
|
|
27
|
+
<createDoc.trigger asChild>
|
|
28
|
+
<ContextMenuItem>
|
|
29
|
+
<FilePlusIcon />
|
|
30
|
+
Create Document
|
|
31
|
+
</ContextMenuItem>
|
|
32
|
+
</createDoc.trigger>
|
|
33
|
+
)}
|
|
34
|
+
</ContextMenuContent>
|
|
35
|
+
</ContextMenu>
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
if (createDoc) child = <createDoc.component>{child}</createDoc.component>;
|
|
39
|
+
|
|
40
|
+
return child;
|
|
41
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
Dialog,
|
|
4
|
+
DialogContent,
|
|
5
|
+
DialogTrigger,
|
|
6
|
+
DialogTitle,
|
|
7
|
+
DialogDescription,
|
|
8
|
+
} from "@/components/ui/dialog";
|
|
9
|
+
import { documentCollection, type DocumentItem } from "@/lib/data/store";
|
|
10
|
+
import { useRouter } from "next/navigation";
|
|
11
|
+
import { type ReactNode, createContext, use, useCallback, useMemo, useState } from "react";
|
|
12
|
+
import { useClientContext } from "./context";
|
|
13
|
+
|
|
14
|
+
const CreateDialogContext = createContext<{
|
|
15
|
+
open: boolean;
|
|
16
|
+
setOpen: (v: boolean) => void;
|
|
17
|
+
onCreate: (item: DocumentItem) => void;
|
|
18
|
+
} | null>(null);
|
|
19
|
+
|
|
20
|
+
export function useCreateDocumentDialog(collectionId: string) {
|
|
21
|
+
const Content = useClientContext(collectionId).dialogs?.createDocument;
|
|
22
|
+
if (!Content) return null;
|
|
23
|
+
|
|
24
|
+
return {
|
|
25
|
+
component: useCallback(
|
|
26
|
+
({ children }: { children: ReactNode }) => {
|
|
27
|
+
const [open, setOpen] = useState(false);
|
|
28
|
+
const router = useRouter();
|
|
29
|
+
|
|
30
|
+
return (
|
|
31
|
+
<Dialog open={open} onOpenChange={setOpen}>
|
|
32
|
+
{children}
|
|
33
|
+
<DialogContent>
|
|
34
|
+
<DialogTitle>Create Document</DialogTitle>
|
|
35
|
+
<DialogDescription>Enter the basic information of document.</DialogDescription>
|
|
36
|
+
<CreateDialogContext
|
|
37
|
+
value={useMemo(
|
|
38
|
+
() => ({
|
|
39
|
+
open,
|
|
40
|
+
setOpen,
|
|
41
|
+
onCreate(item) {
|
|
42
|
+
router.push(`/collection/${item.collectionId}/${item.id}`);
|
|
43
|
+
documentCollection.utils.writeInsert(item);
|
|
44
|
+
},
|
|
45
|
+
}),
|
|
46
|
+
[open, router],
|
|
47
|
+
)}
|
|
48
|
+
>
|
|
49
|
+
<Content collectionId={collectionId} useDialog={useDialog} />
|
|
50
|
+
</CreateDialogContext>
|
|
51
|
+
</DialogContent>
|
|
52
|
+
</Dialog>
|
|
53
|
+
);
|
|
54
|
+
},
|
|
55
|
+
[Content],
|
|
56
|
+
),
|
|
57
|
+
trigger: DialogTrigger,
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function useDialog() {
|
|
62
|
+
return use(CreateDialogContext)!;
|
|
63
|
+
}
|