@peers-app/peers-ui 0.0.14
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/.github/README.md +52 -0
- package/.github/workflows/publish.yml +45 -0
- package/babel.config.js +7 -0
- package/dist/app.d.ts +9 -0
- package/dist/app.js +54 -0
- package/dist/command-palette/command-palette-ui.d.ts +2 -0
- package/dist/command-palette/command-palette-ui.js +192 -0
- package/dist/command-palette/command-palette.d.ts +23 -0
- package/dist/command-palette/command-palette.js +371 -0
- package/dist/components/checkbox.d.ts +7 -0
- package/dist/components/checkbox.js +20 -0
- package/dist/components/group-switcher.d.ts +6 -0
- package/dist/components/group-switcher.js +301 -0
- package/dist/components/input-date.d.ts +7 -0
- package/dist/components/input-date.js +19 -0
- package/dist/components/input-datetime.d.ts +7 -0
- package/dist/components/input-datetime.js +35 -0
- package/dist/components/input-number.d.ts +9 -0
- package/dist/components/input-number.js +87 -0
- package/dist/components/input.d.ts +7 -0
- package/dist/components/input.js +20 -0
- package/dist/components/io-schema-values.d.ts +15 -0
- package/dist/components/io-schema-values.js +105 -0
- package/dist/components/io-schema.d.ts +13 -0
- package/dist/components/io-schema.js +163 -0
- package/dist/components/lazy-list.d.ts +13 -0
- package/dist/components/lazy-list.js +91 -0
- package/dist/components/lazy-sortable-list.d.ts +29 -0
- package/dist/components/lazy-sortable-list.js +12 -0
- package/dist/components/left-bar.d.ts +3 -0
- package/dist/components/left-bar.js +130 -0
- package/dist/components/list-screen.d.ts +16 -0
- package/dist/components/list-screen.js +100 -0
- package/dist/components/loading-indicator.d.ts +2 -0
- package/dist/components/loading-indicator.js +12 -0
- package/dist/components/main-content-container.d.ts +2 -0
- package/dist/components/main-content-container.js +90 -0
- package/dist/components/markdown-editor/autolink-plugin.d.ts +2 -0
- package/dist/components/markdown-editor/autolink-plugin.js +29 -0
- package/dist/components/markdown-editor/editor-inline.d.ts +3 -0
- package/dist/components/markdown-editor/editor-inline.js +13 -0
- package/dist/components/markdown-editor/editor.d.ts +18 -0
- package/dist/components/markdown-editor/editor.js +143 -0
- package/dist/components/markdown-editor/markdown-plugin.d.ts +9 -0
- package/dist/components/markdown-editor/markdown-plugin.js +194 -0
- package/dist/components/markdown-editor/mention-node.d.ts +21 -0
- package/dist/components/markdown-editor/mention-node.js +160 -0
- package/dist/components/markdown-editor/mentions-plugin.d.ts +7 -0
- package/dist/components/markdown-editor/mentions-plugin.js +268 -0
- package/dist/components/markdown-editor/theme.d.ts +46 -0
- package/dist/components/markdown-editor/theme.js +48 -0
- package/dist/components/markdown-editor/toolbar.d.ts +10 -0
- package/dist/components/markdown-editor/toolbar.js +112 -0
- package/dist/components/markdown-with-mentions.d.ts +4 -0
- package/dist/components/markdown-with-mentions.js +140 -0
- package/dist/components/message-logs/message-logs.d.ts +6 -0
- package/dist/components/message-logs/message-logs.js +307 -0
- package/dist/components/messages/avatar.d.ts +10 -0
- package/dist/components/messages/avatar.js +65 -0
- package/dist/components/messages/channel-message-list.d.ts +14 -0
- package/dist/components/messages/channel-message-list.js +158 -0
- package/dist/components/messages/channel-view.d.ts +6 -0
- package/dist/components/messages/channel-view.js +82 -0
- package/dist/components/messages/message-compose.d.ts +11 -0
- package/dist/components/messages/message-compose.js +152 -0
- package/dist/components/messages/message-display.d.ts +10 -0
- package/dist/components/messages/message-display.js +152 -0
- package/dist/components/messages/thread-message-list.d.ts +11 -0
- package/dist/components/messages/thread-message-list.js +122 -0
- package/dist/components/messages/thread-view.d.ts +6 -0
- package/dist/components/messages/thread-view.js +174 -0
- package/dist/components/off-canvas.d.ts +13 -0
- package/dist/components/off-canvas.js +89 -0
- package/dist/components/router.d.ts +6 -0
- package/dist/components/router.js +240 -0
- package/dist/components/save-button.d.ts +13 -0
- package/dist/components/save-button.js +75 -0
- package/dist/components/sortable-list.d.ts +36 -0
- package/dist/components/sortable-list.js +77 -0
- package/dist/components/tabs.d.ts +11 -0
- package/dist/components/tabs.js +69 -0
- package/dist/components/text-list-editor.tsx/text-list-editor.d.ts +6 -0
- package/dist/components/text-list-editor.tsx/text-list-editor.js +13 -0
- package/dist/components/tooltip.d.ts +11 -0
- package/dist/components/tooltip.js +20 -0
- package/dist/components/top-bar.d.ts +2 -0
- package/dist/components/top-bar.js +51 -0
- package/dist/components/typeahead/mentions-plugin.d.ts +7 -0
- package/dist/components/typeahead/mentions-plugin.js +203 -0
- package/dist/components/typeahead/typeahead-editor.d.ts +15 -0
- package/dist/components/typeahead/typeahead-editor.js +134 -0
- package/dist/components/typeahead/typeahead.d.ts +12 -0
- package/dist/components/typeahead/typeahead.js +94 -0
- package/dist/components/typeahead.d.ts +22 -0
- package/dist/components/typeahead.js +270 -0
- package/dist/globals.d.ts +29 -0
- package/dist/globals.js +148 -0
- package/dist/hooks.d.ts +34 -0
- package/dist/hooks.js +137 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +20 -0
- package/dist/layout-vars.d.ts +6 -0
- package/dist/layout-vars.js +10 -0
- package/dist/mention-configs.d.ts +18 -0
- package/dist/mention-configs.js +149 -0
- package/dist/screens/assistants/assistant-config.d.ts +5 -0
- package/dist/screens/assistants/assistant-config.js +52 -0
- package/dist/screens/assistants/assistant-details.d.ts +4 -0
- package/dist/screens/assistants/assistant-details.js +85 -0
- package/dist/screens/assistants/assistant-info.d.ts +6 -0
- package/dist/screens/assistants/assistant-info.js +28 -0
- package/dist/screens/assistants/assistant-list.d.ts +2 -0
- package/dist/screens/assistants/assistant-list.js +114 -0
- package/dist/screens/assistants/assistant-tools.d.ts +5 -0
- package/dist/screens/assistants/assistant-tools.js +38 -0
- package/dist/screens/contacts/contact-details.d.ts +6 -0
- package/dist/screens/contacts/contact-details.js +100 -0
- package/dist/screens/contacts/contact-list.d.ts +2 -0
- package/dist/screens/contacts/contact-list.js +213 -0
- package/dist/screens/contacts/index.d.ts +4 -0
- package/dist/screens/contacts/index.js +21 -0
- package/dist/screens/events/cron.d.ts +3 -0
- package/dist/screens/events/cron.js +77 -0
- package/dist/screens/events/event-details.d.ts +6 -0
- package/dist/screens/events/event-details.js +112 -0
- package/dist/screens/events/event-handlers.d.ts +7 -0
- package/dist/screens/events/event-handlers.js +84 -0
- package/dist/screens/events/event-info.d.ts +5 -0
- package/dist/screens/events/event-info.js +19 -0
- package/dist/screens/events/event-list.d.ts +2 -0
- package/dist/screens/events/event-list.js +107 -0
- package/dist/screens/events/event-schedule.d.ts +5 -0
- package/dist/screens/events/event-schedule.js +124 -0
- package/dist/screens/groups/group-details.d.ts +6 -0
- package/dist/screens/groups/group-details.js +218 -0
- package/dist/screens/groups/group-list.d.ts +2 -0
- package/dist/screens/groups/group-list.js +275 -0
- package/dist/screens/groups/group-members.d.ts +8 -0
- package/dist/screens/groups/group-members.js +315 -0
- package/dist/screens/groups/index.d.ts +6 -0
- package/dist/screens/groups/index.js +23 -0
- package/dist/screens/knowledge/knowledge-frame-details.bk.d.ts +6 -0
- package/dist/screens/knowledge/knowledge-frame-details.bk.js +84 -0
- package/dist/screens/knowledge/knowledge-frame-details.d.ts +8 -0
- package/dist/screens/knowledge/knowledge-frame-details.js +143 -0
- package/dist/screens/knowledge/knowledge-frame-list.d.ts +2 -0
- package/dist/screens/knowledge/knowledge-frame-list.js +45 -0
- package/dist/screens/knowledge/knowledge-value-details.d.ts +6 -0
- package/dist/screens/knowledge/knowledge-value-details.js +150 -0
- package/dist/screens/knowledge/knowledge-value-list-item.d.ts +5 -0
- package/dist/screens/knowledge/knowledge-value-list-item.js +39 -0
- package/dist/screens/knowledge/knowledge-value-list.d.ts +3 -0
- package/dist/screens/knowledge/knowledge-value-list.js +123 -0
- package/dist/screens/packages/package-details.d.ts +6 -0
- package/dist/screens/packages/package-details.js +82 -0
- package/dist/screens/packages/package-info.d.ts +5 -0
- package/dist/screens/packages/package-info.js +42 -0
- package/dist/screens/packages/package-list.d.ts +2 -0
- package/dist/screens/packages/package-list.js +182 -0
- package/dist/screens/packages/package-new-local.d.ts +2 -0
- package/dist/screens/packages/package-new-local.js +82 -0
- package/dist/screens/peer-types/peer-type-details.d.ts +10 -0
- package/dist/screens/peer-types/peer-type-details.js +126 -0
- package/dist/screens/peer-types/peer-type-list.d.ts +2 -0
- package/dist/screens/peer-types/peer-type-list.js +57 -0
- package/dist/screens/predicates/predicate-details.d.ts +6 -0
- package/dist/screens/predicates/predicate-details.js +103 -0
- package/dist/screens/predicates/predicate-list.d.ts +2 -0
- package/dist/screens/predicates/predicate-list.js +46 -0
- package/dist/screens/profile.d.ts +2 -0
- package/dist/screens/profile.js +66 -0
- package/dist/screens/search/global-search.d.ts +2 -0
- package/dist/screens/search/global-search.js +186 -0
- package/dist/screens/settings/color-mode-dropdown.d.ts +6 -0
- package/dist/screens/settings/color-mode-dropdown.js +63 -0
- package/dist/screens/settings/settings-page.d.ts +2 -0
- package/dist/screens/settings/settings-page.js +49 -0
- package/dist/screens/setup-user.d.ts +2 -0
- package/dist/screens/setup-user.js +270 -0
- package/dist/screens/tools/tool-code.d.ts +5 -0
- package/dist/screens/tools/tool-code.js +32 -0
- package/dist/screens/tools/tool-details.d.ts +6 -0
- package/dist/screens/tools/tool-details.js +68 -0
- package/dist/screens/tools/tool-info.d.ts +5 -0
- package/dist/screens/tools/tool-info.js +74 -0
- package/dist/screens/tools/tool-list.d.ts +2 -0
- package/dist/screens/tools/tool-list.js +123 -0
- package/dist/screens/tools/tool-schema.d.ts +5 -0
- package/dist/screens/tools/tool-schema.js +30 -0
- package/dist/screens/tools/tool-test-details.d.ts +4 -0
- package/dist/screens/tools/tool-test-details.js +54 -0
- package/dist/screens/tools/tool-test-list.d.ts +4 -0
- package/dist/screens/tools/tool-test-list.js +82 -0
- package/dist/screens/variables/variable-details.d.ts +6 -0
- package/dist/screens/variables/variable-details.js +140 -0
- package/dist/screens/variables/variable-list.d.ts +2 -0
- package/dist/screens/variables/variable-list.js +58 -0
- package/dist/screens/workflows/workflow-details.d.ts +6 -0
- package/dist/screens/workflows/workflow-details.js +122 -0
- package/dist/screens/workflows/workflow-info.d.ts +5 -0
- package/dist/screens/workflows/workflow-info.js +18 -0
- package/dist/screens/workflows/workflow-instructions.d.ts +5 -0
- package/dist/screens/workflows/workflow-instructions.js +118 -0
- package/dist/screens/workflows/workflow-list.d.ts +2 -0
- package/dist/screens/workflows/workflow-list.js +109 -0
- package/dist/screens/workflows/workflow-subscriptions.d.ts +6 -0
- package/dist/screens/workflows/workflow-subscriptions.js +81 -0
- package/dist/setupTests.d.ts +1 -0
- package/dist/setupTests.js +31 -0
- package/dist/system-apps/assistants.app.d.ts +2 -0
- package/dist/system-apps/assistants.app.js +8 -0
- package/dist/system-apps/contacts.app.d.ts +2 -0
- package/dist/system-apps/contacts.app.js +9 -0
- package/dist/system-apps/events.app.d.ts +2 -0
- package/dist/system-apps/events.app.js +8 -0
- package/dist/system-apps/groups.app.d.ts +2 -0
- package/dist/system-apps/groups.app.js +9 -0
- package/dist/system-apps/index.d.ts +19 -0
- package/dist/system-apps/index.js +90 -0
- package/dist/system-apps/knowledge-frames.app.d.ts +2 -0
- package/dist/system-apps/knowledge-frames.app.js +9 -0
- package/dist/system-apps/knowledge-values.app.d.ts +2 -0
- package/dist/system-apps/knowledge-values.app.js +9 -0
- package/dist/system-apps/packages.app.d.ts +2 -0
- package/dist/system-apps/packages.app.js +8 -0
- package/dist/system-apps/predicates.app.d.ts +2 -0
- package/dist/system-apps/predicates.app.js +8 -0
- package/dist/system-apps/profile.app.d.ts +2 -0
- package/dist/system-apps/profile.app.js +8 -0
- package/dist/system-apps/search.app.d.ts +2 -0
- package/dist/system-apps/search.app.js +9 -0
- package/dist/system-apps/settings.app.d.ts +2 -0
- package/dist/system-apps/settings.app.js +8 -0
- package/dist/system-apps/threads.app.d.ts +2 -0
- package/dist/system-apps/threads.app.js +8 -0
- package/dist/system-apps/tools.app.d.ts +2 -0
- package/dist/system-apps/tools.app.js +8 -0
- package/dist/system-apps/types.app.d.ts +2 -0
- package/dist/system-apps/types.app.js +8 -0
- package/dist/system-apps/variables.app.d.ts +2 -0
- package/dist/system-apps/variables.app.js +8 -0
- package/dist/system-apps/workflows.app.d.ts +2 -0
- package/dist/system-apps/workflows.app.js +8 -0
- package/dist/tabs-layout/tabs-layout.d.ts +5 -0
- package/dist/tabs-layout/tabs-layout.js +374 -0
- package/dist/tabs-layout/tabs-state.d.ts +26 -0
- package/dist/tabs-layout/tabs-state.js +239 -0
- package/dist/three-bar-layout/left-bar-content.d.ts +7 -0
- package/dist/three-bar-layout/left-bar-content.js +151 -0
- package/dist/three-bar-layout/right-bar-content.d.ts +2 -0
- package/dist/three-bar-layout/right-bar-content.js +64 -0
- package/dist/three-bar-layout/three-bar-layout.d.ts +5 -0
- package/dist/three-bar-layout/three-bar-layout.js +218 -0
- package/dist/ui-defaults/index.d.ts +2 -0
- package/dist/ui-defaults/index.js +4 -0
- package/dist/ui-defaults/list-screen.d.ts +6 -0
- package/dist/ui-defaults/list-screen.js +74 -0
- package/dist/ui-defaults/notes-editor.d.ts +7 -0
- package/dist/ui-defaults/notes-editor.js +41 -0
- package/dist/ui-router/routes-loader.d.ts +25 -0
- package/dist/ui-router/routes-loader.js +97 -0
- package/dist/ui-router/ui-loader.d.ts +18 -0
- package/dist/ui-router/ui-loader.js +481 -0
- package/dist/utils.d.ts +9 -0
- package/dist/utils.js +250 -0
- package/docs/conversation-tab.md +201 -0
- package/docs/getting-started.md +284 -0
- package/docs/knowledge.md +187 -0
- package/docs/tabs-ui.md +696 -0
- package/docs/user-contacts-ui.md +384 -0
- package/jest.config.js +25 -0
- package/package.json +109 -0
- package/src/app.tsx +59 -0
- package/src/command-palette/command-palette-ui.tsx +264 -0
- package/src/command-palette/command-palette.ts +364 -0
- package/src/components/checkbox.tsx +22 -0
- package/src/components/group-switcher.tsx +469 -0
- package/src/components/input-date.tsx +28 -0
- package/src/components/input-datetime.tsx +41 -0
- package/src/components/input-number.tsx +67 -0
- package/src/components/input.tsx +22 -0
- package/src/components/io-schema-values.tsx +122 -0
- package/src/components/io-schema.tsx +234 -0
- package/src/components/lazy-list.tsx +98 -0
- package/src/components/lazy-sortable-list.tsx +51 -0
- package/src/components/left-bar.tsx +264 -0
- package/src/components/list-screen.tsx +105 -0
- package/src/components/loading-indicator.tsx +9 -0
- package/src/components/main-content-container.tsx +76 -0
- package/src/components/markdown-editor/autolink-plugin.tsx +36 -0
- package/src/components/markdown-editor/editor-inline.tsx +10 -0
- package/src/components/markdown-editor/editor.tsx +152 -0
- package/src/components/markdown-editor/markdown-plugin.tsx +224 -0
- package/src/components/markdown-editor/mention-node.ts +199 -0
- package/src/components/markdown-editor/mentions-plugin.tsx +356 -0
- package/src/components/markdown-editor/theme.ts +47 -0
- package/src/components/markdown-editor/toolbar.tsx +263 -0
- package/src/components/markdown-with-mentions.tsx +183 -0
- package/src/components/message-logs/message-logs.tsx +406 -0
- package/src/components/messages/avatar.tsx +95 -0
- package/src/components/messages/channel-message-list.tsx +177 -0
- package/src/components/messages/channel-view.tsx +74 -0
- package/src/components/messages/message-compose.tsx +162 -0
- package/src/components/messages/message-display.tsx +217 -0
- package/src/components/messages/thread-message-list.tsx +126 -0
- package/src/components/messages/thread-view.tsx +214 -0
- package/src/components/off-canvas.tsx +83 -0
- package/src/components/router.tsx +224 -0
- package/src/components/save-button.tsx +109 -0
- package/src/components/sortable-list.tsx +102 -0
- package/src/components/tabs.tsx +70 -0
- package/src/components/text-list-editor.tsx/text-list-editor.tsx +13 -0
- package/src/components/tooltip.tsx +50 -0
- package/src/components/top-bar.tsx +119 -0
- package/src/components/typeahead/mentions-plugin.tsx +265 -0
- package/src/components/typeahead/typeahead-editor.tsx +140 -0
- package/src/components/typeahead/typeahead.tsx +77 -0
- package/src/components/typeahead.tsx +359 -0
- package/src/globals.tsx +162 -0
- package/src/hooks.ts +144 -0
- package/src/index.tsx +8 -0
- package/src/layout-vars.ts +8 -0
- package/src/mention-configs.ts +166 -0
- package/src/screens/assistants/assistant-config.tsx +80 -0
- package/src/screens/assistants/assistant-details.tsx +77 -0
- package/src/screens/assistants/assistant-info.tsx +45 -0
- package/src/screens/assistants/assistant-list.tsx +115 -0
- package/src/screens/assistants/assistant-tools.tsx +61 -0
- package/src/screens/contacts/contact-details.tsx +175 -0
- package/src/screens/contacts/contact-list.tsx +251 -0
- package/src/screens/contacts/index.ts +6 -0
- package/src/screens/events/cron.ts +74 -0
- package/src/screens/events/event-details.tsx +117 -0
- package/src/screens/events/event-handlers.tsx +61 -0
- package/src/screens/events/event-info.tsx +29 -0
- package/src/screens/events/event-list.tsx +104 -0
- package/src/screens/events/event-schedule.tsx +130 -0
- package/src/screens/groups/group-details.tsx +306 -0
- package/src/screens/groups/group-list.tsx +366 -0
- package/src/screens/groups/group-members.tsx +455 -0
- package/src/screens/groups/index.ts +9 -0
- package/src/screens/knowledge/knowledge-frame-details.bk.tsx +160 -0
- package/src/screens/knowledge/knowledge-frame-details.tsx +176 -0
- package/src/screens/knowledge/knowledge-frame-list.tsx +49 -0
- package/src/screens/knowledge/knowledge-value-details.tsx +181 -0
- package/src/screens/knowledge/knowledge-value-list-item.tsx +48 -0
- package/src/screens/knowledge/knowledge-value-list.tsx +131 -0
- package/src/screens/packages/package-details.tsx +117 -0
- package/src/screens/packages/package-info.tsx +83 -0
- package/src/screens/packages/package-list.tsx +191 -0
- package/src/screens/packages/package-new-local.tsx +93 -0
- package/src/screens/peer-types/peer-type-details.tsx +162 -0
- package/src/screens/peer-types/peer-type-list.tsx +74 -0
- package/src/screens/predicates/predicate-details.tsx +125 -0
- package/src/screens/predicates/predicate-list.tsx +50 -0
- package/src/screens/profile.tsx +68 -0
- package/src/screens/search/global-search.tsx +274 -0
- package/src/screens/settings/color-mode-dropdown.tsx +57 -0
- package/src/screens/settings/settings-page.tsx +76 -0
- package/src/screens/setup-user.tsx +367 -0
- package/src/screens/tools/tool-code.tsx +35 -0
- package/src/screens/tools/tool-details.tsx +101 -0
- package/src/screens/tools/tool-info.tsx +60 -0
- package/src/screens/tools/tool-list.tsx +121 -0
- package/src/screens/tools/tool-schema.tsx +42 -0
- package/src/screens/tools/tool-test-details.tsx +100 -0
- package/src/screens/tools/tool-test-list.tsx +74 -0
- package/src/screens/variables/variable-details.tsx +183 -0
- package/src/screens/variables/variable-list.tsx +74 -0
- package/src/screens/workflows/workflow-details.tsx +130 -0
- package/src/screens/workflows/workflow-info.tsx +29 -0
- package/src/screens/workflows/workflow-instructions.tsx +127 -0
- package/src/screens/workflows/workflow-list.tsx +107 -0
- package/src/screens/workflows/workflow-subscriptions.tsx +58 -0
- package/src/setupTests.ts +32 -0
- package/src/system-apps/assistants.app.ts +7 -0
- package/src/system-apps/contacts.app.ts +8 -0
- package/src/system-apps/events.app.ts +7 -0
- package/src/system-apps/groups.app.ts +8 -0
- package/src/system-apps/index.ts +79 -0
- package/src/system-apps/knowledge-frames.app.ts +8 -0
- package/src/system-apps/knowledge-values.app.ts +8 -0
- package/src/system-apps/packages.app.ts +7 -0
- package/src/system-apps/predicates.app.ts +7 -0
- package/src/system-apps/profile.app.ts +7 -0
- package/src/system-apps/search.app.ts +8 -0
- package/src/system-apps/settings.app.ts +7 -0
- package/src/system-apps/threads.app.ts +7 -0
- package/src/system-apps/tools.app.ts +7 -0
- package/src/system-apps/types.app.ts +7 -0
- package/src/system-apps/variables.app.ts +7 -0
- package/src/system-apps/workflows.app.ts +7 -0
- package/src/tabs-layout/tabs-layout.tsx +672 -0
- package/src/tabs-layout/tabs-state.ts +269 -0
- package/src/three-bar-layout/left-bar-content.tsx +202 -0
- package/src/three-bar-layout/right-bar-content.tsx +67 -0
- package/src/three-bar-layout/three-bar-layout.tsx +297 -0
- package/src/ui-defaults/index.ts +3 -0
- package/src/ui-defaults/list-screen.tsx +92 -0
- package/src/ui-defaults/notes-editor.tsx +51 -0
- package/src/ui-router/routes-loader.ts +98 -0
- package/src/ui-router/ui-loader.tsx +497 -0
- package/src/utils.ts +266 -0
- package/tsconfig.json +24 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { rpcServerCalls, IDoc, IPackage, packagesRootDir } from "@peers-app/peers-sdk";
|
|
3
|
+
import { MarkdownWithMentions } from "../../components/markdown-with-mentions";
|
|
4
|
+
import { Tooltip } from "../../components/tooltip";
|
|
5
|
+
import { Input } from "../../components/input";
|
|
6
|
+
|
|
7
|
+
export const PackageInfo = (props: { pkg: IDoc<IPackage> }) => {
|
|
8
|
+
const { pkg } = props;
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<div>
|
|
12
|
+
<small>Name:</small>
|
|
13
|
+
<Input
|
|
14
|
+
value={pkg.qs.name}
|
|
15
|
+
className="form-control mb-3 p-0 ps-2"
|
|
16
|
+
placeholder="Package name"
|
|
17
|
+
title="Package name"
|
|
18
|
+
disabled
|
|
19
|
+
/>
|
|
20
|
+
|
|
21
|
+
<div className="mt-2">
|
|
22
|
+
<small>
|
|
23
|
+
Local Path:
|
|
24
|
+
<small>
|
|
25
|
+
<Tooltip markdownContent={`The local path to the directory containing the package. This will open in VS Code if it's installed otherwise this will open in your native file system`} />
|
|
26
|
+
<button
|
|
27
|
+
className="btn btn-sm btn-link"
|
|
28
|
+
onClick={() => {
|
|
29
|
+
rpcServerCalls.openPackage(pkg.localPath || packagesRootDir());
|
|
30
|
+
}}
|
|
31
|
+
>Open Local</button>
|
|
32
|
+
</small>
|
|
33
|
+
</small>
|
|
34
|
+
<Input
|
|
35
|
+
value={pkg.qs.localPath}
|
|
36
|
+
className="form-control mb-3 p-0 ps-2"
|
|
37
|
+
disabled
|
|
38
|
+
/>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
{pkg.remoteRepo && (
|
|
42
|
+
<div className="mt-2">
|
|
43
|
+
<small>
|
|
44
|
+
Source URL:
|
|
45
|
+
<small>
|
|
46
|
+
<Tooltip markdownContent={`The remote source of this package. Often a github repository URL or a link to the Peers page for the package.`} />
|
|
47
|
+
<button
|
|
48
|
+
className="btn btn-sm btn-link"
|
|
49
|
+
onClick={() => {
|
|
50
|
+
rpcServerCalls.openLinkInBrowser(pkg.remoteRepo!);
|
|
51
|
+
}}
|
|
52
|
+
>Open Remote</button>
|
|
53
|
+
</small>
|
|
54
|
+
</small>
|
|
55
|
+
<Input
|
|
56
|
+
value={pkg.qs.remoteRepo}
|
|
57
|
+
className="form-control mb-3 p-0 ps-2"
|
|
58
|
+
disabled
|
|
59
|
+
/>
|
|
60
|
+
</div>
|
|
61
|
+
)}
|
|
62
|
+
|
|
63
|
+
<div className="mt-2">
|
|
64
|
+
<hr />
|
|
65
|
+
<small>
|
|
66
|
+
Description:
|
|
67
|
+
<Tooltip markdownContent={`This should be edited in the package's README.md. It will automatically update when you restart Peers or reload the package.`} />
|
|
68
|
+
</small>
|
|
69
|
+
{/* <div className="border rounded border-dark-subtle p-1">
|
|
70
|
+
<MarkdownWithMentions
|
|
71
|
+
content={pkg.description || ''}
|
|
72
|
+
/>
|
|
73
|
+
</div> */}
|
|
74
|
+
|
|
75
|
+
<MarkdownWithMentions
|
|
76
|
+
content={pkg.description || ''}
|
|
77
|
+
/>
|
|
78
|
+
</div>
|
|
79
|
+
|
|
80
|
+
</div>
|
|
81
|
+
)
|
|
82
|
+
}
|
|
83
|
+
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import { camelCaseToHyphens, ICursorIterable, IPackage, observable, Packages, packagesRootDir, rpcServerCalls } from "@peers-app/peers-sdk";
|
|
2
|
+
import React, { useEffect, useState } from 'react';
|
|
3
|
+
import { Input } from "../../components/input";
|
|
4
|
+
import { LazyList } from "../../components/lazy-list";
|
|
5
|
+
import { LoadingIndicator } from '../../components/loading-indicator';
|
|
6
|
+
import { Tooltip } from '../../components/tooltip';
|
|
7
|
+
import { isDesktop, mainContentPath } from '../../globals';
|
|
8
|
+
import { useObservable, useObservableState } from "../../hooks";
|
|
9
|
+
import { registerInternalPeersUI } from "../../ui-router/ui-loader";
|
|
10
|
+
|
|
11
|
+
export const PackageList = () => {
|
|
12
|
+
const [searchTextObs] = useState(() => observable(''));
|
|
13
|
+
const [searchText] = useObservable(searchTextObs);
|
|
14
|
+
const addingPackage = useObservableState(false);
|
|
15
|
+
|
|
16
|
+
const [cursorObs] = useState(() => observable<ICursorIterable<IPackage>>());
|
|
17
|
+
|
|
18
|
+
async function newCursor() {
|
|
19
|
+
const cursor = await Packages().cursor({
|
|
20
|
+
$or: [
|
|
21
|
+
{ name: { $matchWords: searchText } },
|
|
22
|
+
{ description: { $matchWords: searchText } },
|
|
23
|
+
{ remoteRepo: { $matchWords: searchText } },
|
|
24
|
+
]
|
|
25
|
+
}, { sortBy: ['-packageId'] });
|
|
26
|
+
cursorObs(cursor);
|
|
27
|
+
return cursor;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
useEffect(() => {
|
|
31
|
+
newCursor();
|
|
32
|
+
}, [searchText]);
|
|
33
|
+
|
|
34
|
+
async function loadMore(existing: IPackage[]): Promise<IPackage[]> {
|
|
35
|
+
let moreMatches: IPackage[] = [];
|
|
36
|
+
let cursor = cursorObs() || await newCursor();
|
|
37
|
+
for await (const nextRecord of cursor) {
|
|
38
|
+
if (existing.find(e => e.packageId === nextRecord.packageId)) continue;
|
|
39
|
+
moreMatches.push(nextRecord);
|
|
40
|
+
if (searchText.length && moreMatches.length > 5) break;
|
|
41
|
+
if (moreMatches.length >= 50) break;
|
|
42
|
+
}
|
|
43
|
+
if (moreMatches.length === 0) {
|
|
44
|
+
cursorObs(undefined);
|
|
45
|
+
}
|
|
46
|
+
return moreMatches;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
async function searchSubmit(evt: React.KeyboardEvent<HTMLInputElement>) {
|
|
51
|
+
if (evt.key !== "Enter") return;
|
|
52
|
+
const name = searchText.trim();
|
|
53
|
+
if (!name) return;
|
|
54
|
+
|
|
55
|
+
// check if name is a remote repo url
|
|
56
|
+
if (name.startsWith('http') || name.endsWith('.git')) {
|
|
57
|
+
if (!confirm(`Add remote package: ${name}`)) return;
|
|
58
|
+
try {
|
|
59
|
+
addingPackage(true);
|
|
60
|
+
const packageId = await rpcServerCalls.addRemotePackage(name);
|
|
61
|
+
const pkg = await Packages().get(packageId);
|
|
62
|
+
if (pkg) {
|
|
63
|
+
mainContentPath(`packages/${packageId}`);
|
|
64
|
+
}
|
|
65
|
+
} catch (err: any) {
|
|
66
|
+
let errMessage = err?.message || err;
|
|
67
|
+
// replace all whitespace with a single space for confirm dialog
|
|
68
|
+
errMessage = errMessage.replace(/\s+/g, ' ');
|
|
69
|
+
confirm('Error adding remote package: ' + errMessage);
|
|
70
|
+
}
|
|
71
|
+
finally {
|
|
72
|
+
addingPackage(false);
|
|
73
|
+
}
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (!confirm(`Create or import local package: ${searchText}`)) return;
|
|
78
|
+
|
|
79
|
+
let packageFolderName = name;
|
|
80
|
+
packageFolderName = packageFolderName.replace(/[^a-zA-Z0-9]/g, ' ');
|
|
81
|
+
packageFolderName = packageFolderName.replace(/\s+/g, ' ').trim();
|
|
82
|
+
packageFolderName = camelCaseToHyphens(packageFolderName);
|
|
83
|
+
const packageLocationDefault = packagesRootDir() + '/' + packageFolderName;
|
|
84
|
+
|
|
85
|
+
try {
|
|
86
|
+
addingPackage(true);
|
|
87
|
+
const packageId = await rpcServerCalls.createLocalPackage(name, packageLocationDefault);
|
|
88
|
+
const pkg = await Packages().get(packageId);
|
|
89
|
+
if (pkg) {
|
|
90
|
+
mainContentPath(`packages/${packageId}`);
|
|
91
|
+
rpcServerCalls.openPackage(pkg.localPath);
|
|
92
|
+
}
|
|
93
|
+
} catch (err) {
|
|
94
|
+
confirm('Error creating package: ' + err);
|
|
95
|
+
} finally {
|
|
96
|
+
addingPackage(false);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
if (addingPackage()) {
|
|
101
|
+
return (
|
|
102
|
+
<div>
|
|
103
|
+
<div className='container-fluid d-flex justify-content-center mt-5'>
|
|
104
|
+
<i className="bi bi-box-seam"></i>
|
|
105
|
+
Adding Package
|
|
106
|
+
</div>
|
|
107
|
+
<div className='container-fluid d-flex justify-content-center mt-2'>
|
|
108
|
+
<div className="progress" role="progressbar" aria-label="Animated striped example" aria-valuenow={100} aria-valuemin={0} aria-valuemax={100}>
|
|
109
|
+
<div className="progress-bar progress-bar-striped progress-bar-animated" style={{ width: 150 }}></div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return (
|
|
117
|
+
<div className='container-fluid'>
|
|
118
|
+
|
|
119
|
+
<div className="input-group mt-3 mb-3">
|
|
120
|
+
<Input value={searchTextObs} className="form-control" placeholder="Search, add, or create package"
|
|
121
|
+
autoFocus={isDesktop() ? true : false}
|
|
122
|
+
onKeyUp={evt => searchSubmit(evt)}
|
|
123
|
+
/>
|
|
124
|
+
<button className="btn btn-outline-secondary dropdown-toggle sm" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
125
|
+
<i className="bi bi-plus-lg"></i>
|
|
126
|
+
</button>
|
|
127
|
+
<ul className="dropdown-menu dropdown-menu-end">
|
|
128
|
+
<li><a className="dropdown-item" href="#packages/newlocal">New Local Package</a></li>
|
|
129
|
+
<li><a className="dropdown-item disabled" href="#">Add Local Package</a></li>
|
|
130
|
+
<li><a className="dropdown-item disabled" href="#">Add Remote Package</a></li>
|
|
131
|
+
<li><hr className="dropdown-divider" /></li>
|
|
132
|
+
<li><a className="dropdown-item"
|
|
133
|
+
onClick={() => rpcServerCalls.openPath(packagesRootDir())}
|
|
134
|
+
style={{ cursor: 'pointer' }}
|
|
135
|
+
>Open Packages Directory</a></li>
|
|
136
|
+
|
|
137
|
+
</ul>
|
|
138
|
+
</div>
|
|
139
|
+
|
|
140
|
+
<div className="peers-list-container">
|
|
141
|
+
<LazyList
|
|
142
|
+
resetTrigger={searchText}
|
|
143
|
+
loadMore={loadMore}
|
|
144
|
+
scrollThreshold={0.6}
|
|
145
|
+
renderItems={(packages) => {
|
|
146
|
+
return packages.map(pkg => {
|
|
147
|
+
return (
|
|
148
|
+
<div
|
|
149
|
+
key={pkg.packageId}
|
|
150
|
+
className='container-fluid pb-4'
|
|
151
|
+
>
|
|
152
|
+
<i className="bi bi-box-fill"></i>
|
|
153
|
+
<a href={`#packages/${pkg.packageId}`}>
|
|
154
|
+
{pkg.name}
|
|
155
|
+
</a>
|
|
156
|
+
<Tooltip
|
|
157
|
+
markdownContent={pkg.description}
|
|
158
|
+
positions={['bottom', 'top', 'right', 'left']}
|
|
159
|
+
/>
|
|
160
|
+
|
|
161
|
+
</div>
|
|
162
|
+
)
|
|
163
|
+
})
|
|
164
|
+
}}
|
|
165
|
+
loadingIndicator={
|
|
166
|
+
<div className="d-flex justify-content-center" style={{ height: 200 }}>
|
|
167
|
+
<LoadingIndicator />
|
|
168
|
+
</div>
|
|
169
|
+
}
|
|
170
|
+
endOfList={
|
|
171
|
+
<div className="d-flex justify-content-center" style={{ height: 200 }}>
|
|
172
|
+
{/* <span className="h3">End of List</span> */}
|
|
173
|
+
</div>
|
|
174
|
+
}
|
|
175
|
+
/>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
);
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
registerInternalPeersUI({
|
|
182
|
+
peersUIId: '00m5fre6r5m2p2wd1m4x6nx0b',
|
|
183
|
+
component: PackageList,
|
|
184
|
+
routes: [
|
|
185
|
+
{
|
|
186
|
+
isMatch: (props, context) => context.path == 'packages',
|
|
187
|
+
uiCategory: 'screen',
|
|
188
|
+
priority: 1
|
|
189
|
+
}
|
|
190
|
+
]
|
|
191
|
+
})
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
|
+
import { mainContentPath } from '../../globals';
|
|
3
|
+
import { rpcServerCalls, Packages, packagesRootDir, camelCaseToHyphens } from "@peers-app/peers-sdk";
|
|
4
|
+
|
|
5
|
+
export const PackageNewLocal = () => {
|
|
6
|
+
|
|
7
|
+
const defaultName = "New Package";
|
|
8
|
+
const [packageName, setPackageName] = useState('');
|
|
9
|
+
|
|
10
|
+
const [packageLocation, setPackageLocation] = useState('');
|
|
11
|
+
|
|
12
|
+
let packageFolderName = packageName || defaultName;
|
|
13
|
+
packageFolderName = packageFolderName.replace(/[^a-zA-Z0-9]/g, ' ');
|
|
14
|
+
packageFolderName = packageFolderName.replace(/\s+/g, ' ').trim();
|
|
15
|
+
packageFolderName = camelCaseToHyphens(packageFolderName);
|
|
16
|
+
|
|
17
|
+
const packageLocationDefault = packagesRootDir() + '/' + packageFolderName;
|
|
18
|
+
|
|
19
|
+
const hiddenFileInput = React.useRef<HTMLInputElement>(null);
|
|
20
|
+
|
|
21
|
+
const handleFolderSelect = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
22
|
+
// @ts-ignore
|
|
23
|
+
const path = e.target.files?.[0]?.path;
|
|
24
|
+
const folderPath = path;
|
|
25
|
+
if (folderPath) {
|
|
26
|
+
setPackageLocation(folderPath);
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const createLocalPackage = async () => {
|
|
31
|
+
try {
|
|
32
|
+
const packageId = await rpcServerCalls.createLocalPackage(packageName, packageLocation || packageLocationDefault);
|
|
33
|
+
const pkg = await Packages().get(packageId);
|
|
34
|
+
if (pkg) {
|
|
35
|
+
mainContentPath(`packages/${packageId}`);
|
|
36
|
+
rpcServerCalls.openPackage(pkg.localPath);
|
|
37
|
+
}
|
|
38
|
+
} catch (err) {
|
|
39
|
+
confirm('Error creating package: ' + err);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<div className='container mt-2'>
|
|
45
|
+
<h4 className='text-center'>
|
|
46
|
+
New Local Package
|
|
47
|
+
</h4>
|
|
48
|
+
|
|
49
|
+
<div className="input-group mt-3 mb-3">
|
|
50
|
+
<input type="text" className="form-control"
|
|
51
|
+
placeholder="Package Name"
|
|
52
|
+
value={packageName}
|
|
53
|
+
onChange={e => setPackageName(e.target.value)}
|
|
54
|
+
autoFocus
|
|
55
|
+
/>
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<input
|
|
59
|
+
ref={hiddenFileInput}
|
|
60
|
+
type="file"
|
|
61
|
+
className='visually-hidden'
|
|
62
|
+
onChange={handleFolderSelect}
|
|
63
|
+
// @ts-ignore
|
|
64
|
+
directory=""
|
|
65
|
+
webkitdirectory=""
|
|
66
|
+
/>
|
|
67
|
+
<div className="input-group mt-3 mb-3">
|
|
68
|
+
<input
|
|
69
|
+
type="text"
|
|
70
|
+
className="form-control"
|
|
71
|
+
placeholder={packageLocationDefault}
|
|
72
|
+
value={packageLocation}
|
|
73
|
+
onChange={e => setPackageLocation(e.target.value)}
|
|
74
|
+
disabled
|
|
75
|
+
/>
|
|
76
|
+
{/* <button className="btn btn-outline-secondary" type="button"
|
|
77
|
+
onClick={() => hiddenFileInput.current?.click()}>
|
|
78
|
+
<i className="bi bi-folder-fill"></i>
|
|
79
|
+
</button> */}
|
|
80
|
+
</div>
|
|
81
|
+
|
|
82
|
+
<button
|
|
83
|
+
className="btn btn-primary float-end"
|
|
84
|
+
type="button"
|
|
85
|
+
onClick={() => createLocalPackage()}
|
|
86
|
+
disabled={!packageName}
|
|
87
|
+
>
|
|
88
|
+
Create Package
|
|
89
|
+
</button>
|
|
90
|
+
|
|
91
|
+
</div>
|
|
92
|
+
);
|
|
93
|
+
};
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { IDoc, IOSchema, IPeerType, Observable, PeerTypes } from "@peers-app/peers-sdk";
|
|
2
|
+
import React, { useEffect } from "react";
|
|
3
|
+
import { Input } from "../../components/input";
|
|
4
|
+
import { IOSchemaEditor } from "../../components/io-schema";
|
|
5
|
+
import { LoadingIndicator } from "../../components/loading-indicator";
|
|
6
|
+
import { MarkdownEditorInline } from "../../components/markdown-editor/editor-inline";
|
|
7
|
+
import { SaveButton } from "../../components/save-button";
|
|
8
|
+
import { ScreenTabBody, Tabs } from "../../components/tabs";
|
|
9
|
+
import { Tooltip } from "../../components/tooltip";
|
|
10
|
+
import { useObservable, usePromise } from "../../hooks";
|
|
11
|
+
import { updateActiveTabTitle } from "../../tabs-layout/tabs-state";
|
|
12
|
+
|
|
13
|
+
interface IProps {
|
|
14
|
+
peerTypeId: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export const PeerTypeDetails = (props: IProps) => {
|
|
18
|
+
|
|
19
|
+
const valueType = usePromise(async () => {
|
|
20
|
+
const valueType = await PeerTypes().get(props.peerTypeId);
|
|
21
|
+
if (!valueType) {
|
|
22
|
+
throw new Error('Variable not found');
|
|
23
|
+
}
|
|
24
|
+
const doc = PeerTypes().initDoc(valueType);
|
|
25
|
+
updateActiveTabTitle(doc.name || "Type");
|
|
26
|
+
return doc;
|
|
27
|
+
}, undefined, [props.peerTypeId]);
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
useEffect(() => {
|
|
31
|
+
if (!valueType) return;
|
|
32
|
+
const sub = valueType.qs.name.subscribe(() => {
|
|
33
|
+
valueType.name = valueType.qs.name().replaceAll(/\s/g, '_').replaceAll(/[^a-zA-Z0-9_-]/g, '');
|
|
34
|
+
});
|
|
35
|
+
return () => {
|
|
36
|
+
sub.dispose();
|
|
37
|
+
}
|
|
38
|
+
}, [valueType]);
|
|
39
|
+
|
|
40
|
+
if (!valueType) {
|
|
41
|
+
return <LoadingIndicator />;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
return (
|
|
45
|
+
<div className="container-fluid p-3">
|
|
46
|
+
|
|
47
|
+
<div className="d-flex">
|
|
48
|
+
<div>
|
|
49
|
+
<h4>
|
|
50
|
+
<i className="bi bi-code-square me-2"></i>
|
|
51
|
+
</h4>
|
|
52
|
+
</div>
|
|
53
|
+
<div className="flex-grow-1">
|
|
54
|
+
<h4>
|
|
55
|
+
<Input
|
|
56
|
+
key={valueType.peerTypeId}
|
|
57
|
+
className='border border-0'
|
|
58
|
+
style={{ width: '100%', outline: 'none', backgroundColor: 'transparent' }}
|
|
59
|
+
value={valueType.qs.name}
|
|
60
|
+
/>
|
|
61
|
+
</h4>
|
|
62
|
+
</div>
|
|
63
|
+
<div>
|
|
64
|
+
<SaveButton
|
|
65
|
+
key={valueType.peerTypeId}
|
|
66
|
+
doc={valueType}
|
|
67
|
+
/>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
|
|
71
|
+
<Tabs
|
|
72
|
+
key={valueType.peerTypeId}
|
|
73
|
+
tabs={[
|
|
74
|
+
{
|
|
75
|
+
name: 'Info', content:
|
|
76
|
+
<ScreenTabBody>
|
|
77
|
+
<VariableInfo valueType={valueType} />
|
|
78
|
+
</ScreenTabBody>
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: 'Schema', content:
|
|
82
|
+
<ScreenTabBody>
|
|
83
|
+
<VariableSchema valueType={valueType} />
|
|
84
|
+
</ScreenTabBody>
|
|
85
|
+
},
|
|
86
|
+
]}
|
|
87
|
+
/>
|
|
88
|
+
</div>
|
|
89
|
+
)
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
const VariableInfo = (props: { valueType: IDoc<IPeerType> }) => {
|
|
94
|
+
const { valueType } = props
|
|
95
|
+
|
|
96
|
+
valueType.description = valueType.description || '';
|
|
97
|
+
|
|
98
|
+
return (
|
|
99
|
+
<div>
|
|
100
|
+
|
|
101
|
+
<small className="text-body-secondary">Name:</small>
|
|
102
|
+
<Input
|
|
103
|
+
value={valueType.qs.name}
|
|
104
|
+
className="form-control mb-3 p-0 ps-2"
|
|
105
|
+
placeholder="Variable name"
|
|
106
|
+
title="Variable name"
|
|
107
|
+
/>
|
|
108
|
+
|
|
109
|
+
<small className="text-body-secondary">
|
|
110
|
+
Icon Class:
|
|
111
|
+
<small>
|
|
112
|
+
<Tooltip markdownContent={[
|
|
113
|
+
'Icon classes can be found at:',
|
|
114
|
+
'[Bootstrap Icons](https://icons.getbootstrap.com/)',
|
|
115
|
+
].join(' ')} />
|
|
116
|
+
</small>
|
|
117
|
+
</small>
|
|
118
|
+
<IconPicker icon={valueType.qs.iconClass} />
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<small className="mt-2 text-body-secondary">Description:</small>
|
|
122
|
+
<MarkdownEditorInline
|
|
123
|
+
value={valueType.qs.description as Observable<string>}
|
|
124
|
+
/>
|
|
125
|
+
|
|
126
|
+
</div>
|
|
127
|
+
)
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
const VariableSchema = (props: { valueType: IDoc<IPeerType> }) => {
|
|
131
|
+
const { valueType } = props
|
|
132
|
+
|
|
133
|
+
return (
|
|
134
|
+
<div>
|
|
135
|
+
<IOSchemaEditor ioSchema={valueType.qs.schema as Observable<IOSchema>} simpleValueName="value" />
|
|
136
|
+
</div>
|
|
137
|
+
)
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export const IconPicker = (props: { icon: Observable<string | undefined> }) => {
|
|
141
|
+
const { icon } = props;
|
|
142
|
+
|
|
143
|
+
useObservable(icon);
|
|
144
|
+
|
|
145
|
+
if (icon() === undefined) {
|
|
146
|
+
icon('');
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
return (
|
|
150
|
+
<div className="d-flex">
|
|
151
|
+
<Input
|
|
152
|
+
value={icon}
|
|
153
|
+
className="form-control mb-3 p-0 ps-2"
|
|
154
|
+
placeholder="icon class"
|
|
155
|
+
title="Icon"
|
|
156
|
+
/>
|
|
157
|
+
<div className="me-2 ms-2" style={{ width: '22px'}}>
|
|
158
|
+
<i className={icon()}></i>
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
)
|
|
162
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IOSchemaType, IPeerType, newid, PeerTypes } from "@peers-app/peers-sdk";
|
|
3
|
+
import { MarkdownWithMentions } from '../../components/markdown-with-mentions';
|
|
4
|
+
import { mainContentPath } from '../../globals';
|
|
5
|
+
import { ListScreen } from '../../components/list-screen';
|
|
6
|
+
import { registerInternalPeersUI } from '../../ui-router/ui-loader';
|
|
7
|
+
|
|
8
|
+
export function PeerTypeLists() {
|
|
9
|
+
async function newRecord(name: string) {
|
|
10
|
+
const peerTypeName = name.replace(/\s+/g, '_');
|
|
11
|
+
let valueType = await PeerTypes().insert({
|
|
12
|
+
peerTypeId: newid(),
|
|
13
|
+
name: peerTypeName,
|
|
14
|
+
description: '',
|
|
15
|
+
schema: {
|
|
16
|
+
type: IOSchemaType.none,
|
|
17
|
+
fields: [],
|
|
18
|
+
},
|
|
19
|
+
});
|
|
20
|
+
valueType = await PeerTypes().save(valueType);
|
|
21
|
+
mainContentPath(`peer-types/${valueType.peerTypeId}`);
|
|
22
|
+
return valueType;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function getFilter(searchText: string) {
|
|
26
|
+
return {
|
|
27
|
+
$or: [
|
|
28
|
+
{ name: { $matchWords: searchText } },
|
|
29
|
+
{ description: { $matchWords: searchText } },
|
|
30
|
+
],
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
function renderItem(item: IPeerType) {
|
|
35
|
+
return (
|
|
36
|
+
<div
|
|
37
|
+
key={item.peerTypeId}
|
|
38
|
+
className='container-fluid pb-4'
|
|
39
|
+
>
|
|
40
|
+
<i className={item.iconClass ?? "bi bi-code-square"}></i>
|
|
41
|
+
<a href={`#peer-types/${item.peerTypeId}`}>
|
|
42
|
+
{item.name || '<empty-name>'}
|
|
43
|
+
</a>
|
|
44
|
+
<div style={{ paddingLeft: '20px' }}>
|
|
45
|
+
<MarkdownWithMentions content={item.description || ''} />
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return (
|
|
52
|
+
<ListScreen
|
|
53
|
+
table={PeerTypes()}
|
|
54
|
+
newRecord={newRecord}
|
|
55
|
+
getFilter={getFilter}
|
|
56
|
+
sortBy={['name']}
|
|
57
|
+
renderItem={renderItem}
|
|
58
|
+
placeholderName="value type"
|
|
59
|
+
/>
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
registerInternalPeersUI({
|
|
65
|
+
peersUIId: '00m5fshz2g6ea23v8z6y0a1cj',
|
|
66
|
+
component: PeerTypeLists,
|
|
67
|
+
routes: [
|
|
68
|
+
{
|
|
69
|
+
isMatch: (props, context) => context.path === 'peer-types',
|
|
70
|
+
uiCategory: 'screen',
|
|
71
|
+
priority: 2
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
});
|