@nextclaw/ui 0.13.13 → 0.14.1-beta.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/CHANGELOG.md +47 -0
- package/dist/assets/{api-D0hARyyl.js → api-C6EDHBDR.js} +7 -7
- package/dist/assets/channels-list-page-DKj6m1Hc.js +8 -0
- package/dist/assets/chat-page-BXngLJY6.js +105 -0
- package/dist/assets/config-split-page-CjlmJy8X.js +1 -0
- package/dist/assets/{confirm-dialog-CTcaBp-8.js → confirm-dialog-B39X0pYp.js} +2 -2
- package/dist/assets/desktop-update-config-DfUQ8nly.js +1 -0
- package/dist/assets/{dist-C59BKqbX.js → dist-BIYV2-Ia.js} +1 -1
- package/dist/assets/{dist-Di6EHp2x.js → dist-CmMro3nV.js} +1 -1
- package/dist/assets/doc-browser-B6Wc_TIY.js +1 -0
- package/dist/assets/doc-browser-CDtUtcim.js +1 -0
- package/dist/assets/doc-browser-context-DZbC9zVB.js +1 -0
- package/dist/assets/{ellipsis-hXUNwi63.js → ellipsis-DDpgTzgx.js} +1 -1
- package/dist/assets/{external-link-J0fCK-vu.js → external-link-D2cBOCqn.js} +1 -1
- package/dist/assets/index-DTb_XVIH.js +103 -0
- package/dist/assets/index-ayiPYhf1.css +1 -0
- package/dist/assets/mcp-marketplace-page-DZ9H0v05.js +1 -0
- package/dist/assets/mcp-marketplace-page-cnVWf7QQ.js +40 -0
- package/dist/assets/model-config-page-Bcb35AVv.js +1 -0
- package/dist/assets/plus-CYE1onU2.js +1 -0
- package/dist/assets/provider-scoped-model-input-kdoNp4HG.js +1 -0
- package/dist/assets/providers-config-page-CQSibSwO.js +1 -0
- package/dist/assets/{react-C7HsxuKH.js → react-DYQXXGbH.js} +1 -1
- package/dist/assets/remote-BlJDbXOI.js +1 -0
- package/dist/assets/rotate-cw-BWbvFDAX.js +1 -0
- package/dist/assets/runtime-config-page-Tn2yLQ0c.js +1 -0
- package/dist/assets/{save-Z1QTovIt.js → save-BNVTgBVn.js} +1 -1
- package/dist/assets/search-CKCzwLId.js +1 -0
- package/dist/assets/search-config-page-DG5Q2hF1.js +1 -0
- package/dist/assets/secrets-config-page-BXn5Uuwp.js +3 -0
- package/dist/assets/select-CIRwTNP4.js +41 -0
- package/dist/assets/{tag-chip-3kpiMTST.js → tag-chip-DKhVFtTE.js} +1 -1
- package/dist/assets/use-config-DgKM9VIU.js +1 -0
- package/dist/assets/x-Cm3JjYut.js +1 -0
- package/dist/index.html +14 -27
- package/package.json +9 -8
- package/src/app/index.tsx +8 -4
- package/src/app/presenters/app.presenter.ts +2 -0
- package/src/features/account/components/account-panel.tsx +3 -3
- package/src/features/account/hooks/{use-auth.test.ts → __tests__/use-auth.test.ts} +1 -1
- package/src/features/agents/components/{agents-page.test.tsx → __tests__/agents-page.test.tsx} +41 -2
- package/src/features/agents/components/agent-dialogs.tsx +2 -2
- package/src/features/agents/components/agents-page.tsx +1 -1
- package/src/features/channels/components/config/channel-form.tsx +1 -1
- package/src/features/channels/pages/channels-list-page.tsx +18 -15
- package/src/features/channels/utils/{channel-form-fields.utils.test.ts → __tests__/channel-form-fields.utils.test.ts} +1 -1
- package/src/features/chat/components/{chat-welcome.test.tsx → __tests__/chat-welcome.test.tsx} +1 -1
- package/src/features/chat/components/conversation/{chat-conversation-header.test.tsx → __tests__/chat-conversation-header.test.tsx} +25 -32
- package/src/features/chat/components/conversation/{chat-conversation-panel.test.tsx → __tests__/chat-conversation-panel.test.tsx} +132 -37
- package/src/features/chat/components/conversation/chat-conversation-alerts.tsx +37 -0
- package/src/features/chat/components/conversation/chat-conversation-content.tsx +91 -0
- package/src/features/chat/components/conversation/chat-conversation-header-section.tsx +152 -0
- package/src/features/chat/components/conversation/chat-conversation-header.tsx +26 -89
- package/src/features/chat/components/conversation/chat-conversation-panel.tsx +13 -379
- package/src/features/chat/components/conversation/chat-conversation-parent-banner.tsx +16 -0
- package/src/features/chat/components/conversation/chat-conversation-skeleton.tsx +86 -0
- package/src/features/chat/components/conversation/chat-conversation-workspace-section.tsx +42 -0
- package/src/features/chat/components/layout/{chat-page-shell.test.tsx → __tests__/chat-page-shell.test.tsx} +1 -1
- package/src/features/chat/components/layout/__tests__/chat-sidebar-read-state.test.tsx +167 -0
- package/src/features/chat/components/layout/__tests__/chat-sidebar.test.tsx +834 -0
- package/src/features/chat/components/layout/chat-page-shell.tsx +11 -30
- package/src/features/chat/components/layout/chat-sidebar-toolbar.tsx +33 -53
- package/src/features/chat/components/layout/chat-sidebar-utility-menu.tsx +1 -1
- package/src/features/chat/components/layout/chat-sidebar.tsx +156 -202
- package/src/features/chat/components/providers/chat-presenter.provider.tsx +13 -46
- package/src/features/chat/{components/conversation → features/input/components/__tests__}/chat-attachment-upload-limit.test.ts +1 -1
- package/src/features/chat/{components/conversation → features/input/components}/chat-input-bar.container.tsx +92 -31
- package/src/features/chat/features/input/hooks/use-chat-input-bar-query-state.ts +118 -0
- package/src/features/chat/{utils → features/input/utils/__tests__}/chat-composer-state.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/input/utils/__tests__}/chat-inline-token.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/input/utils/__tests__}/chat-input-bar.utils.test.ts +2 -17
- package/src/features/chat/{utils → features/input/utils/__tests__}/ncp-chat-input-availability.utils.test.ts +2 -1
- package/src/features/chat/{utils → features/input/utils}/chat-input-bar.utils.ts +1 -24
- package/src/features/chat/{utils → features/input/utils}/chat-input-toolbar.utils.ts +0 -27
- package/src/features/chat/{utils → features/input/utils}/ncp-chat-input-availability.utils.ts +6 -6
- package/src/features/chat/features/message/components/__tests__/chat-inline-panel-app-card.test.tsx +89 -0
- package/src/features/chat/{components/conversation → features/message/components/__tests__}/chat-message-list.container.test.tsx +46 -3
- package/src/features/chat/features/message/components/chat-inline-panel-app-card.tsx +115 -0
- package/src/features/chat/{components/conversation → features/message/components}/chat-message-list.container.tsx +13 -13
- package/src/features/chat/{utils → features/message/utils/__tests__}/chat-message-invalid-tool-arguments.utils.test.ts +2 -2
- package/src/features/chat/{utils → features/message/utils/__tests__}/chat-message-session-spawn-tool-card.utils.test.ts +2 -2
- package/src/features/chat/features/message/utils/__tests__/chat-message-show-content-tool-card.utils.test.ts +172 -0
- package/src/features/chat/{utils → features/message/utils/__tests__}/chat-message-summary-truncation.utils.test.ts +2 -2
- package/src/features/chat/{utils → features/message/utils/__tests__}/chat-message-tool-agent-id.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/message/utils/__tests__}/chat-message.utils.test.ts +2 -2
- package/src/features/chat/features/message/utils/chat-inline-panel-app-card.utils.ts +51 -0
- package/src/features/chat/{utils → features/message/utils}/chat-message-inline-content.utils.ts +1 -1
- package/src/features/chat/{utils → features/message/utils}/chat-message-part.utils.ts +15 -2
- package/src/features/chat/{utils → features/message/utils}/chat-message-session-request-tool-card.utils.ts +1 -1
- package/src/features/chat/features/message/utils/chat-message-show-content-tool-card.utils.ts +188 -0
- package/src/features/chat/{utils → features/message/utils}/chat-message-tool-card.utils.ts +5 -1
- package/src/features/chat/{utils → features/message/utils}/chat-message.utils.ts +1 -1
- package/src/features/chat/features/ncp/hooks/__tests__/use-hydrated-ncp-agent.test.tsx +57 -0
- package/src/features/chat/{hooks → features/ncp/hooks/__tests__}/use-ncp-agent-runtime.test.tsx +2 -2
- package/src/features/chat/features/ncp/hooks/__tests__/use-ncp-chat-derived-state.test.tsx +22 -0
- package/src/features/chat/features/ncp/hooks/__tests__/use-ncp-chat-query-store-sync.test.tsx +101 -0
- package/src/features/chat/{hooks → features/ncp/hooks/__tests__}/use-ncp-session-conversation.test.tsx +1 -1
- package/src/features/chat/features/ncp/hooks/__tests__/use-ui-show-content-event.test.tsx +53 -0
- package/src/features/chat/features/ncp/hooks/use-ncp-chat-derived-state.ts +37 -0
- package/src/features/chat/features/ncp/hooks/use-ncp-chat-query-store-sync.ts +28 -0
- package/src/features/chat/{hooks → features/ncp/hooks}/use-ncp-child-session-tabs-view.ts +4 -4
- package/src/features/chat/{hooks → features/ncp/hooks}/use-ncp-session-conversation.ts +1 -1
- package/src/features/chat/{hooks → features/ncp/hooks}/use-ncp-session-list-view.ts +3 -3
- package/src/features/chat/features/ncp/hooks/use-ncp-session-queries.ts +32 -0
- package/src/features/chat/features/ncp/hooks/use-ui-show-content-event.ts +14 -0
- package/src/features/chat/features/ncp/utils/ncp-chat-query-derived.utils.ts +85 -0
- package/src/features/chat/{utils → features/runtime/utils/__tests__}/ncp-app-client-fetch.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/runtime/utils/__tests__}/ncp-chat-runtime-availability.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/runtime/utils}/chat-runtime.utils.ts +1 -1
- package/src/features/chat/{components → features/session/components}/chat-sidebar-project-groups.tsx +21 -42
- package/src/features/chat/{components/layout → features/session/components}/chat-sidebar-session-entry.tsx +40 -13
- package/src/features/chat/{components → features/session/components}/chat-sidebar-session-item.tsx +36 -44
- package/src/features/chat/features/session/components/chat-sidebar-session-list.tsx +78 -0
- package/src/features/chat/{components/session → features/session/components}/session-context-icon.tsx +1 -1
- package/src/features/chat/{components/conversation/session-header → features/session/components/session-header/__tests__}/chat-session-header-actions.test.tsx +30 -3
- package/src/features/chat/{components/conversation/session-header → features/session/components/session-header/__tests__}/chat-session-project-badge.test.tsx +3 -3
- package/src/features/chat/{components/conversation → features/session/components}/session-header/chat-session-header-actions.tsx +34 -28
- package/src/features/chat/features/session/components/session-header/chat-session-metadata-dialog.tsx +46 -0
- package/src/features/chat/{components/conversation → features/session/components}/session-header/chat-session-project-badge.tsx +1 -1
- package/src/features/chat/{hooks → features/session/hooks/__tests__}/use-chat-session-project.test.tsx +2 -2
- package/src/features/chat/{hooks → features/session/hooks/__tests__}/use-chat-session-update.test.tsx +1 -1
- package/src/features/chat/features/session/hooks/__tests__/use-selected-session-context-window-indicator.test.tsx +63 -0
- package/src/features/chat/{hooks → features/session/hooks}/use-chat-session-project.ts +1 -1
- package/src/features/chat/{hooks → features/session/hooks}/use-chat-session-update.ts +17 -0
- package/src/features/chat/{hooks → features/session/hooks}/use-chat-sidebar-session-label-editor.ts +1 -1
- package/src/features/chat/features/session/hooks/use-selected-session-context-window-indicator.ts +15 -0
- package/src/features/chat/{utils → features/session/utils/__tests__}/chat-session-display.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/session/utils/__tests__}/chat-session-route.utils.test.ts +1 -1
- package/src/features/chat/{utils → features/session/utils/__tests__}/ncp-session-adapter.utils.cancelled-tool.test.ts +2 -2
- package/src/features/chat/{utils → features/session/utils/__tests__}/ncp-session-adapter.utils.test.ts +10 -2
- package/src/features/chat/{utils → features/session/utils/__tests__}/session-context.utils.test.ts +1 -1
- package/src/features/chat/features/session/utils/chat-run-metadata.utils.ts +60 -0
- package/src/features/chat/{utils → features/session/utils}/chat-session-preference-governance.utils.ts +0 -128
- package/src/features/chat/features/session/utils/chat-sidebar-session-groups.utils.ts +144 -0
- package/src/features/chat/{utils → features/session/utils}/ncp-session-adapter.utils.ts +2 -0
- package/src/features/chat/{components → features/session-type/components/__tests__}/chat-session-type-option-item.test.tsx +1 -1
- package/src/features/chat/{components → features/session-type/components}/chat-session-type-option-item.tsx +7 -16
- package/src/features/chat/features/session-type/components/chat-sidebar-create-menu.tsx +42 -0
- package/src/features/chat/{hooks → features/session-type/hooks/__tests__}/use-chat-session-type-state.test.tsx +1 -1
- package/src/features/chat/{hooks → features/session-type/hooks}/use-chat-session-type-state.ts +24 -94
- package/src/features/chat/features/session-type/utils/chat-session-type.utils.ts +109 -0
- package/src/features/chat/{components → features/workspace/components/__tests__}/chat-session-workspace-file-preview.test.tsx +1 -1
- package/src/features/chat/{components → features/workspace/components}/chat-session-workspace-file-preview.tsx +2 -2
- package/src/features/chat/features/workspace/components/chat-session-workspace-panel-content.tsx +156 -0
- package/src/features/chat/features/workspace/components/chat-session-workspace-panel-nav.tsx +84 -0
- package/src/features/chat/features/workspace/components/chat-session-workspace-panel.tsx +138 -0
- package/src/features/chat/{components/workspace → features/workspace/components}/session-cron-job-content.tsx +1 -1
- package/src/features/chat/features/workspace/hooks/use-chat-conversation-workspace-state.ts +63 -0
- package/src/features/chat/features/workspace/utils/__tests__/chat-workspace-panel-view-model.utils.test.ts +103 -0
- package/src/features/chat/features/workspace/utils/chat-workspace-panel-view-model.utils.ts +183 -0
- package/src/features/chat/index.ts +17 -6
- package/src/features/chat/managers/__tests__/chat-input.manager.test.ts +383 -0
- package/src/features/chat/managers/__tests__/chat-query.manager.test.ts +39 -0
- package/src/features/chat/managers/__tests__/chat-run-snapshot.manager.test.ts +129 -0
- package/src/features/chat/managers/__tests__/chat-run.manager.test.ts +236 -0
- package/src/features/chat/managers/{chat-session-list.manager.test.ts → __tests__/chat-session-list.manager.test.ts} +98 -78
- package/src/features/chat/managers/__tests__/chat-session-preference-sync.manager.test.ts +219 -0
- package/src/features/chat/managers/__tests__/chat-thread.manager.test.ts +652 -0
- package/src/features/chat/managers/__tests__/chat-ui.manager.test.ts +126 -0
- package/src/features/chat/managers/{recent-selection.manager.test.ts → __tests__/recent-selection.manager.test.ts} +37 -14
- package/src/features/chat/managers/chat-draft-intent.manager.ts +46 -0
- package/src/features/chat/managers/{ncp-chat-input.manager.ts → chat-input.manager.ts} +118 -45
- package/src/features/chat/managers/chat-query.manager.ts +48 -0
- package/src/features/chat/managers/chat-run.manager.ts +110 -0
- package/src/features/chat/managers/chat-session-list.manager.ts +45 -15
- package/src/features/chat/managers/chat-session-preference-sync.manager.ts +77 -5
- package/src/features/chat/managers/{ncp-chat-thread.manager.ts → chat-thread.manager.ts} +67 -36
- package/src/features/chat/managers/chat-ui.manager.ts +51 -9
- package/src/features/chat/managers/recent-selection.manager.ts +21 -67
- package/src/features/chat/pages/{ncp-chat-page.test.ts → __tests__/ncp-chat-page.test.ts} +95 -12
- package/src/features/chat/pages/ncp-chat-page.tsx +139 -397
- package/src/features/chat/presenters/chat.presenter.ts +39 -0
- package/src/features/chat/stores/chat-input.store.ts +12 -2
- package/src/features/chat/stores/chat-thread.store.ts +0 -19
- package/src/features/chat/stores/ncp-chat-query.store.ts +25 -0
- package/src/features/chat/stores/recent-selection.store.ts +85 -0
- package/src/features/chat/types/chat-input-bar.types.ts +0 -1
- package/src/features/chat/types/chat-input.types.ts +1 -0
- package/src/features/chat/types/chat-message.types.ts +1 -0
- package/src/features/chat/types/chat-run.types.ts +41 -0
- package/src/{shared → features/cron}/components/cron-config.tsx +1 -1
- package/src/features/cron/hooks/use-cron-jobs.ts +58 -0
- package/src/features/cron/index.ts +7 -0
- package/src/features/marketplace/components/curated-shelves/marketplace-curated-shelves.tsx +15 -61
- package/src/features/marketplace/components/marketplace-external-skill-source-action.tsx +1 -1
- package/src/features/marketplace/components/marketplace-item-list-view.tsx +167 -0
- package/src/features/marketplace/components/marketplace-list-card.tsx +27 -31
- package/src/features/marketplace/components/marketplace-page-data.ts +0 -6
- package/src/features/marketplace/components/marketplace-page.tsx +105 -451
- package/src/features/marketplace/components/mcp/mcp-marketplace-card.tsx +1 -1
- package/src/features/marketplace/components/mcp/mcp-marketplace-dialogs.tsx +1 -1
- package/src/features/marketplace/components/mcp/mcp-marketplace-page.tsx +1 -1
- package/src/features/marketplace/hooks/use-marketplace-item-actions.ts +101 -0
- package/src/features/marketplace/hooks/use-marketplace-item-detail.ts +109 -0
- package/src/features/marketplace/hooks/use-marketplace-list-model.ts +160 -0
- package/src/features/marketplace/utils/{marketplace-installed-cache.utils.test.ts → __tests__/marketplace-installed-cache.utils.test.ts} +1 -1
- package/src/features/panel-apps/components/{panel-app-list-item.test.tsx → __tests__/panel-app-list-item.test.tsx} +1 -1
- package/src/features/panel-apps/components/{panel-app-toolbar.test.tsx → __tests__/panel-app-toolbar.test.tsx} +1 -1
- package/src/features/panel-apps/components/__tests__/panel-apps-list.test.tsx +137 -0
- package/src/features/panel-apps/components/panel-apps-list.tsx +119 -5
- package/src/features/panel-apps/index.ts +2 -0
- package/src/features/panel-apps/utils/{panel-app-view.utils.test.ts → __tests__/panel-app-view.utils.test.ts} +1 -1
- package/src/features/panel-apps/utils/panel-app-entry-match.utils.ts +17 -0
- package/src/features/pwa/managers/{pwa-service-worker-cache.manager.test.ts → __tests__/pwa-service-worker-cache.manager.test.ts} +1 -1
- package/src/features/remote/components/remote-access-page.tsx +2 -2
- package/src/features/remote/services/{remote-access-feedback.service.test.ts → __tests__/remote-access-feedback.service.test.ts} +1 -1
- package/src/{shared → features/settings}/components/config/provider-form.tsx +5 -5
- package/src/{shared/components → features/settings/components/config}/provider-status-badge.tsx +1 -1
- package/src/{shared/components/model-config.test.tsx → features/settings/pages/__tests__/model-config-page.test.tsx} +40 -5
- package/src/{shared/components/config/providers-list.test.tsx → features/settings/pages/__tests__/providers-config-page.test.tsx} +48 -5
- package/src/{shared/components/search-config.test.tsx → features/settings/pages/__tests__/search-config-page.test.tsx} +3 -3
- package/src/{shared/components/config/secrets-config.test.tsx → features/settings/pages/__tests__/secrets-config-page.test.tsx} +3 -3
- package/src/{shared/components/model-config.tsx → features/settings/pages/model-config-page.tsx} +1 -1
- package/src/{shared/components/config/providers-list.tsx → features/settings/pages/providers-config-page.tsx} +3 -3
- package/src/{shared/components/search-config.tsx → features/settings/pages/search-config-page.tsx} +1 -1
- package/src/{shared/components/config/secrets-config.tsx → features/settings/pages/secrets-config-page.tsx} +2 -2
- package/src/{shared/components/config/provider-form-support.test.ts → features/settings/utils/__tests__/provider-form-support.utils.test.ts} +1 -1
- package/src/features/system-status/components/{runtime-control-card.test.tsx → __tests__/runtime-control-card.test.tsx} +1 -1
- package/src/features/system-status/components/{runtime-presence-card.test.tsx → __tests__/runtime-presence-card.test.tsx} +1 -1
- package/src/features/system-status/components/runtime-presence-card.tsx +2 -2
- package/src/features/system-status/managers/{system-status.manager.bootstrap-polling.test.ts → __tests__/system-status.manager.bootstrap-polling.test.ts} +1 -1
- package/src/features/system-status/managers/{system-status.manager.test.ts → __tests__/system-status.manager.test.ts} +1 -1
- package/src/features/system-status/utils/{system-status.utils.test.ts → __tests__/system-status.utils.test.ts} +1 -1
- package/src/shared/components/common/{agent-avatar.test.tsx → __tests__/agent-avatar.test.tsx} +1 -1
- package/src/shared/components/common/agent-identity/use-agent-identity.ts +3 -8
- package/src/shared/components/common/brand-header.tsx +1 -1
- package/src/shared/components/common/tag-input.tsx +1 -1
- package/src/shared/components/doc-browser/{doc-browser-context.test.tsx → __tests__/doc-browser-context.test.tsx} +1 -1
- package/src/shared/components/doc-browser/doc-browser-tab-strip.tsx +64 -161
- package/src/shared/components/doc-browser/doc-browser.tsx +4 -4
- package/src/shared/components/resizable-right-panel/__tests__/resizable-right-panel.test.tsx +66 -0
- package/src/shared/components/resizable-right-panel/resizable-right-panel.tsx +11 -8
- package/src/shared/components/ui/actions/icon-action-button.tsx +53 -0
- package/src/shared/components/ui/tab-strip/__tests__/compact-tab-strip.test.tsx +52 -0
- package/src/shared/components/ui/tab-strip/compact-tab-strip.tsx +228 -0
- package/src/shared/hooks/use-app-meta.ts +10 -0
- package/src/shared/hooks/use-config.ts +1 -148
- package/src/shared/lib/api/{ncp-session.test.ts → __tests__/ncp-session.test.ts} +3 -3
- package/src/shared/lib/api/{raw-client.test.ts → __tests__/raw-client.test.ts} +1 -1
- package/src/shared/lib/api/chat-session-type.types.ts +10 -0
- package/src/shared/lib/api/ncp-session.types.ts +1 -0
- package/src/shared/lib/api/types.ts +3 -0
- package/src/shared/lib/cadence/services/{adaptive-cadence.service.test.ts → __tests__/adaptive-cadence.service.test.ts} +1 -1
- package/src/shared/lib/i18n/locales/en-US/chat.json +6 -0
- package/src/shared/lib/i18n/locales/en-US/core.json +1 -0
- package/src/shared/lib/i18n/locales/en-US/doc-browser.json +10 -0
- package/src/shared/lib/i18n/locales/zh-CN/chat.json +6 -0
- package/src/shared/lib/i18n/locales/zh-CN/core.json +1 -0
- package/src/shared/lib/i18n/locales/zh-CN/doc-browser.json +10 -0
- package/src/shared/lib/i18n/locales/zh-CN/marketplace.json +1 -1
- package/src/shared/lib/i18n/runtime/{i18n-language-owner.test.ts → __tests__/i18n-language-owner.test.ts} +2 -2
- package/src/shared/lib/navigation-history/{navigation-history.utils.test.ts → __tests__/navigation-history.utils.test.ts} +1 -1
- package/src/shared/lib/provider-models/{index.test.ts → __tests__/index.test.ts} +1 -1
- package/src/shared/lib/transport/{app-client.test.ts → __tests__/app-client.test.ts} +3 -3
- package/src/shared/lib/transport/{remote.transport.test.ts → __tests__/remote.transport.test.ts} +1 -1
- package/src/shared/lib/transport/{sse-stream.test.ts → __tests__/sse-stream.test.ts} +1 -1
- package/tsconfig.json +2 -5
- package/vite.config.ts +4 -4
- package/vitest.config.ts +4 -0
- package/dist/assets/app-presenter-provider-C7EsUuEJ.js +0 -3
- package/dist/assets/arrow-left-CzSkR5L6.js +0 -1
- package/dist/assets/book-open-DmeQPqkd.js +0 -1
- package/dist/assets/channels-list-page-B0yiiH01.js +0 -8
- package/dist/assets/chat-page-ChPjx_X9.js +0 -105
- package/dist/assets/config-split-page-BzfZSyAr.js +0 -1
- package/dist/assets/desktop-update-config-CExpdkqD.js +0 -1
- package/dist/assets/doc-browser-EZbnEcdk.js +0 -1
- package/dist/assets/doc-browser-XIwe1Tg-.js +0 -1
- package/dist/assets/doc-browser-context-BzEA1lm1.js +0 -1
- package/dist/assets/es2015-CJlVSTh-.js +0 -41
- package/dist/assets/host-capabilities-DjiRQ0Q9.js +0 -1
- package/dist/assets/index-DfZTO6Pi.js +0 -101
- package/dist/assets/index-mIb_YMrc.css +0 -1
- package/dist/assets/key-round-BzYZ0Nno.js +0 -1
- package/dist/assets/loader-circle-BbdIlBbQ.js +0 -1
- package/dist/assets/mcp-marketplace-page-L22aCzHX.js +0 -40
- package/dist/assets/mcp-marketplace-page-f80Jmv37.js +0 -1
- package/dist/assets/model-config-DkD7vSQT.js +0 -1
- package/dist/assets/notice-card-CD9Ok62G.js +0 -1
- package/dist/assets/play-DHuSeKs8.js +0 -1
- package/dist/assets/plus-DrV685KC.js +0 -1
- package/dist/assets/popover-CoBu3mbV.js +0 -1
- package/dist/assets/provider-models-C9VRroK3.js +0 -1
- package/dist/assets/provider-scoped-model-input-DZlmTCJU.js +0 -1
- package/dist/assets/providers-list-CVkWiqIy.js +0 -1
- package/dist/assets/refresh-cw-CVo4nWpq.js +0 -1
- package/dist/assets/remote-Bznw9iji.js +0 -1
- package/dist/assets/rotate-cw-CXDpRO6D.js +0 -1
- package/dist/assets/runtime-config-page-5IycbIxs.js +0 -1
- package/dist/assets/search-8nY6PGm0.js +0 -1
- package/dist/assets/search-config-DEH80WkC.js +0 -1
- package/dist/assets/secrets-config-Gzo5nDJG.js +0 -3
- package/dist/assets/status-dot-C1-FKgvv.js +0 -1
- package/dist/assets/tabs-BqkKwx1R.js +0 -1
- package/dist/assets/tabs-custom-DOkaJZmt.js +0 -1
- package/dist/assets/tooltip-Bw-mXQAM.js +0 -1
- package/dist/assets/trash-2-CmIwAJIT.js +0 -1
- package/dist/assets/x-CSRTOZnM.js +0 -1
- package/src/features/chat/components/chat-session-workspace-panel-nav.tsx +0 -264
- package/src/features/chat/components/chat-session-workspace-panel.tsx +0 -380
- package/src/features/chat/components/layout/chat-sidebar-read-state.test.tsx +0 -145
- package/src/features/chat/components/layout/chat-sidebar.test.tsx +0 -896
- package/src/features/chat/hooks/use-chat-input-bar-controller.test.tsx +0 -152
- package/src/features/chat/hooks/use-chat-input-bar-controller.ts +0 -142
- package/src/features/chat/hooks/use-chat-session-label.ts +0 -18
- package/src/features/chat/hooks/use-hydrated-ncp-agent.test.tsx +0 -90
- package/src/features/chat/hooks/use-ncp-chat-derived-state.ts +0 -181
- package/src/features/chat/hooks/use-ncp-chat-page-data.test.tsx +0 -70
- package/src/features/chat/hooks/use-ncp-chat-page-data.ts +0 -260
- package/src/features/chat/hooks/use-selected-session-context-window-indicator.ts +0 -18
- package/src/features/chat/managers/chat-session-preference-sync.manager.test.ts +0 -77
- package/src/features/chat/managers/chat-stream-actions.manager.ts +0 -35
- package/src/features/chat/managers/ncp-chat-input.manager.test.ts +0 -232
- package/src/features/chat/managers/ncp-chat-presenter.manager.ts +0 -28
- package/src/features/chat/managers/ncp-chat-thread.manager.test.ts +0 -369
- package/src/features/chat/types/chat-stream.types.ts +0 -32
- package/src/features/chat/utils/chat-session-preference-governance.utils.test.tsx +0 -114
- package/src/features/marketplace/components/marketplace-catalog-grid.tsx +0 -132
- package/src/shared/components/resizable-right-panel/resizable-right-panel.test.tsx +0 -38
- package/src/shared/components/ui/config-card.tsx +0 -71
- package/src/shared/components/ui/highlight-card.tsx +0 -40
- package/src/shared/components/ui/tabs-custom.tsx +0 -49
- /package/dist/assets/{config-hints-fGnUjDe9.js → config-hints-CTqBnCDp.js} +0 -0
- /package/src/{app.test.tsx → __tests__/app.test.tsx} +0 -0
- /package/src/app/components/layout/{app-layout.test.tsx → __tests__/app-layout.test.tsx} +0 -0
- /package/src/app/components/layout/{runtime-status-entry.test.tsx → __tests__/runtime-status-entry.test.tsx} +0 -0
- /package/src/app/components/layout/{settings-entry-page.test.tsx → __tests__/settings-entry-page.test.tsx} +0 -0
- /package/src/app/components/layout/{sidebar.layout.test.tsx → __tests__/sidebar.layout.test.tsx} +0 -0
- /package/src/features/channels/components/config/{channel-form.test.tsx → __tests__/channel-form.test.tsx} +0 -0
- /package/src/features/channels/components/config/{weixin-channel-auth-section.test.tsx → __tests__/weixin-channel-auth-section.test.tsx} +0 -0
- /package/src/features/channels/pages/{channels-list-page.test.tsx → __tests__/channels-list-page.test.tsx} +0 -0
- /package/src/features/chat/{utils → features/input/utils}/chat-composer-state.utils.ts +0 -0
- /package/src/features/chat/{utils → features/input/utils}/chat-inline-token.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/chat-message-core.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/chat-message-partial-json.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/chat-message-tool-agent-id.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/file-operation/card.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/file-operation/diff.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/file-operation/line-builder.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/file-operation/parsed-block.utils.ts +0 -0
- /package/src/features/chat/{utils → features/message/utils}/file-operation/record-readers.utils.ts +0 -0
- /package/src/features/chat/{utils → features/runtime/utils}/ncp-app-client-fetch.utils.ts +0 -0
- /package/src/features/chat/{utils → features/runtime/utils}/ncp-chat-runtime-availability.utils.ts +0 -0
- /package/src/features/chat/{components/conversation → features/session/components}/session-header/chat-session-header-menu-item.tsx +0 -0
- /package/src/features/chat/{components/conversation → features/session/components}/session-header/chat-session-project-dialog.tsx +0 -0
- /package/src/features/chat/{components/session → features/session/components}/session-run-badge.tsx +0 -0
- /package/src/features/chat/{utils → features/session/utils}/chat-context-window-indicator.utils.ts +0 -0
- /package/src/features/chat/{utils → features/session/utils}/chat-session-display.utils.ts +0 -0
- /package/src/features/chat/{utils → features/session/utils}/chat-session-route.utils.ts +0 -0
- /package/src/features/chat/{utils → features/session/utils}/ncp-session-context-metadata.utils.ts +0 -0
- /package/src/features/chat/{utils → features/session/utils}/session-context.utils.ts +0 -0
- /package/src/features/chat/{hooks → features/session-type/hooks}/use-ncp-chat-session-types.ts +0 -0
- /package/src/features/chat/{components/workspace → features/workspace/components}/chat-session-workspace-file-breadcrumbs.tsx +0 -0
- /package/src/features/chat/stores/{chat-thread.store.test.ts → __tests__/chat-thread.store.test.ts} +0 -0
- /package/src/features/marketplace/components/{marketplace-page-detail.test.tsx → __tests__/marketplace-page-detail.test.tsx} +0 -0
- /package/src/features/marketplace/components/{marketplace-page.test.tsx → __tests__/marketplace-page.test.tsx} +0 -0
- /package/src/features/marketplace/components/curated-shelves/{marketplace-curated-scene-route.test.tsx → __tests__/marketplace-curated-scene-route.test.tsx} +0 -0
- /package/src/features/marketplace/components/detail-doc/{marketplace-detail-doc.test.ts → __tests__/marketplace-detail-doc.test.ts} +0 -0
- /package/src/features/marketplace/components/mcp/{mcp-marketplace-page.test.tsx → __tests__/mcp-marketplace-page.test.tsx} +0 -0
- /package/src/features/marketplace/hooks/{use-marketplace.test.tsx → __tests__/use-marketplace.test.tsx} +0 -0
- /package/src/features/panel-apps/managers/{panel-app-bridge.manager.test.ts → __tests__/panel-app-bridge.manager.test.ts} +0 -0
- /package/src/features/panel-apps/utils/{panel-app-doc-browser.utils.test.ts → __tests__/panel-app-doc-browser.utils.test.ts} +0 -0
- /package/src/features/pwa/components/{pwa-install-entry.test.tsx → __tests__/pwa-install-entry.test.tsx} +0 -0
- /package/src/features/pwa/managers/{pwa-install.manager.test.ts → __tests__/pwa-install.manager.test.ts} +0 -0
- /package/src/features/pwa/managers/{pwa-shell-theme.manager.test.ts → __tests__/pwa-shell-theme.manager.test.ts} +0 -0
- /package/src/features/remote/components/{remote-access-page.test.tsx → __tests__/remote-access-page.test.tsx} +0 -0
- /package/src/features/right-panel-resources/utils/{right-panel-resource-route-resolver.utils.test.ts → __tests__/right-panel-resource-route-resolver.utils.test.ts} +0 -0
- /package/src/features/right-panel-resources/utils/{right-panel-resource-uri.utils.test.ts → __tests__/right-panel-resource-uri.utils.test.ts} +0 -0
- /package/src/features/service-apps/components/{service-apps-panel.test.tsx → __tests__/service-apps-panel.test.tsx} +0 -0
- /package/src/{shared/components → features/settings/components/config}/provider-advanced-settings-section.tsx +0 -0
- /package/src/{shared/components → features/settings/components/config}/provider-auth-section.tsx +0 -0
- /package/src/{shared → features/settings}/components/config/provider-models-section.tsx +0 -0
- /package/src/{shared/components → features/settings/components/config}/provider-pill-selector.tsx +0 -0
- /package/src/{shared → features/settings}/components/config/secrets-config-form.tsx +0 -0
- /package/src/features/settings/pages/{language-settings-page.test.tsx → __tests__/language-settings-page.test.tsx} +0 -0
- /package/src/{shared/components/config/provider-form-support.ts → features/settings/utils/provider-form-support.utils.ts} +0 -0
- /package/src/features/side-dock/components/{side-dock.test.tsx → __tests__/side-dock.test.tsx} +0 -0
- /package/src/features/side-dock/managers/{side-dock.manager.test.ts → __tests__/side-dock.manager.test.ts} +0 -0
- /package/src/features/side-dock/utils/{side-dock-item.utils.test.ts → __tests__/side-dock-item.utils.test.ts} +0 -0
- /package/src/features/system-status/components/{desktop-update-config.test.tsx → __tests__/desktop-update-config.test.tsx} +0 -0
- /package/src/features/system-status/pages/{runtime-config-page.test.tsx → __tests__/runtime-config-page.test.tsx} +0 -0
- /package/src/platforms/desktop/components/{desktop-app-shell.test.tsx → __tests__/desktop-app-shell.test.tsx} +0 -0
- /package/src/platforms/mobile/components/{mobile-app-shell.test.tsx → __tests__/mobile-app-shell.test.tsx} +0 -0
- /package/src/platforms/mobile/components/{mobile-bottom-nav.test.tsx → __tests__/mobile-bottom-nav.test.tsx} +0 -0
- /package/src/shared/components/{ui → actions}/action-link.tsx +0 -0
- /package/src/shared/components/common/{brand-header.test.tsx → __tests__/brand-header.test.tsx} +0 -0
- /package/src/shared/components/doc-browser/{doc-browser.test.tsx → __tests__/doc-browser.test.tsx} +0 -0
- /package/src/shared/components/{ui → feedback}/notice-card.tsx +0 -0
- /package/src/shared/components/path-picker/{server-path-picker-dialog.test.tsx → __tests__/server-path-picker-dialog.test.tsx} +0 -0
- /package/src/shared/components/{ui → settings}/setting-row.tsx +0 -0
- /package/src/shared/components/{ui → status}/status-dot.tsx +0 -0
- /package/src/shared/components/{ui → tags}/tag-chip.tsx +0 -0
- /package/src/shared/lib/api/{api-base.test.ts → __tests__/api-base.test.ts} +0 -0
- /package/src/shared/lib/api/{client.test.ts → __tests__/client.test.ts} +0 -0
- /package/src/shared/lib/api/{ncp-session-query-cache.utils.test.ts → __tests__/ncp-session-query-cache.utils.test.ts} +0 -0
- /package/src/shared/lib/app-resource-uri/{app-resource-uri.test.ts → __tests__/app-resource-uri.test.ts} +0 -0
- /package/src/shared/lib/host-capabilities/{host-capability.manager.test.ts → __tests__/host-capability.manager.test.ts} +0 -0
- /package/src/shared/lib/resource-uri/utils/{resource-uri-resolver.utils.test.ts → __tests__/resource-uri-resolver.utils.test.ts} +0 -0
- /package/src/shared/lib/session-project/{workspace-file-breadcrumb.test.ts → __tests__/workspace-file-breadcrumb.test.ts} +0 -0
|
@@ -1,19 +1,9 @@
|
|
|
1
|
-
/* eslint-disable max-lines-per-function */
|
|
2
1
|
import type {
|
|
3
|
-
MarketplaceInstalledRecord,
|
|
4
|
-
MarketplaceItemSummary,
|
|
5
|
-
MarketplaceManageAction,
|
|
6
|
-
MarketplaceSkillContentView,
|
|
7
2
|
MarketplaceSort,
|
|
8
3
|
MarketplaceItemType,
|
|
9
4
|
} from "@/shared/lib/api";
|
|
10
|
-
import { fetchMarketplaceSkillContent } from "@/shared/lib/api";
|
|
11
|
-
import { useDocBrowser } from "@/shared/components/doc-browser";
|
|
12
5
|
import { useI18n } from "@/app/components/i18n-provider";
|
|
13
|
-
import { useConfirmDialog } from "@/shared/hooks/use-confirm-dialog";
|
|
14
6
|
import {
|
|
15
|
-
useInstallMarketplaceItem,
|
|
16
|
-
useManageMarketplaceItem,
|
|
17
7
|
useMarketplaceInstalled,
|
|
18
8
|
useMarketplaceItems,
|
|
19
9
|
} from "@/features/marketplace/hooks/use-marketplace";
|
|
@@ -23,68 +13,33 @@ import {
|
|
|
23
13
|
} from "@/features/marketplace/components/marketplace-page-parts";
|
|
24
14
|
import {
|
|
25
15
|
buildLocaleFallbacks,
|
|
26
|
-
pickLocalizedText,
|
|
27
16
|
} from "@/features/marketplace/components/marketplace-localization";
|
|
28
|
-
import {
|
|
29
|
-
buildCatalogLookup,
|
|
30
|
-
buildInstalledRecordLookup,
|
|
31
|
-
findCatalogItemForRecord,
|
|
32
|
-
matchInstalledSearch,
|
|
33
|
-
type InstalledRenderEntry,
|
|
34
|
-
} from "@/features/marketplace/components/marketplace-page-data";
|
|
35
|
-
import { buildGenericDetailDataUrl } from "@/features/marketplace/components/marketplace-detail-doc";
|
|
36
|
-
import type {
|
|
37
|
-
InstallState,
|
|
38
|
-
ManageState,
|
|
39
|
-
} from "@/features/marketplace/components/marketplace-list-card";
|
|
40
|
-
import { MarketplaceCatalogGrid } from "@/features/marketplace/components/marketplace-catalog-grid";
|
|
17
|
+
import { MarketplaceItemListView } from "@/features/marketplace/components/marketplace-item-list-view";
|
|
41
18
|
import {
|
|
42
19
|
MarketplaceCuratedSceneView,
|
|
43
20
|
MarketplaceCuratedShelves,
|
|
44
21
|
} from "@/features/marketplace/components/curated-shelves/marketplace-curated-shelves";
|
|
45
22
|
import { MarketplaceExternalSkillSourceAction } from "@/features/marketplace/components/marketplace-external-skill-source-action";
|
|
46
23
|
import { useMarketplaceCuratedSceneRoute } from "@/features/marketplace/hooks/use-marketplace-curated-scene-route";
|
|
24
|
+
import { useMarketplaceItemActions } from "@/features/marketplace/hooks/use-marketplace-item-actions";
|
|
25
|
+
import { useMarketplaceItemDetail } from "@/features/marketplace/hooks/use-marketplace-item-detail";
|
|
26
|
+
import { useMarketplaceListModel } from "@/features/marketplace/hooks/use-marketplace-list-model";
|
|
47
27
|
import { t } from "@/shared/lib/i18n";
|
|
48
28
|
import { PageLayout } from "@/app/components/layout/page-layout";
|
|
49
|
-
import { useEffect, useMemo,
|
|
29
|
+
import { useEffect, useMemo, useState } from "react";
|
|
50
30
|
import { useNavigate, useParams } from "react-router-dom";
|
|
51
31
|
import { useInfiniteScrollLoader } from "@/shared/hooks/use-infinite-scroll-loader";
|
|
52
|
-
import { Tabs } from "@/shared/components/ui/tabs
|
|
32
|
+
import { Tabs, TabsList, TabsTrigger } from "@/shared/components/ui/tabs";
|
|
53
33
|
|
|
54
34
|
const PAGE_SIZE = 20;
|
|
55
|
-
const SKELETON_CARD_COUNT = 36;
|
|
56
|
-
|
|
57
35
|
type ScopeType = "all" | "installed";
|
|
58
36
|
|
|
59
|
-
|
|
60
|
-
forcedType
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
function getMarketplaceCopyKeys() {
|
|
64
|
-
return {
|
|
65
|
-
pageTitle: "marketplaceSkillsPageTitle",
|
|
66
|
-
pageDescription: "marketplaceSkillsPageDescription",
|
|
67
|
-
tabMarketplace: "marketplaceTabMarketplaceSkills",
|
|
68
|
-
tabInstalled: "marketplaceTabInstalledSkills",
|
|
69
|
-
searchPlaceholder: "marketplaceSearchPlaceholderSkills",
|
|
70
|
-
sectionCatalog: "marketplaceSectionSkills",
|
|
71
|
-
sectionInstalled: "marketplaceSectionInstalledSkills",
|
|
72
|
-
errorLoadData: "marketplaceErrorLoadingSkillsData",
|
|
73
|
-
errorLoadInstalled: "marketplaceErrorLoadingInstalledSkills",
|
|
74
|
-
emptyData: "marketplaceNoSkills",
|
|
75
|
-
emptyInstalled: "marketplaceNoInstalledSkills",
|
|
76
|
-
installedCountSuffix: "marketplaceInstalledSkillsCountSuffix",
|
|
77
|
-
allSkills: "marketplaceAllSkills",
|
|
78
|
-
refreshingResults: "marketplaceRefreshingResults",
|
|
79
|
-
};
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
83
|
-
const { forcedType } = props;
|
|
37
|
+
export function MarketplacePage({
|
|
38
|
+
forcedType,
|
|
39
|
+
}: { forcedType?: "skills" } = {}) {
|
|
84
40
|
const navigate = useNavigate();
|
|
85
41
|
const params = useParams<{ scene?: string }>();
|
|
86
42
|
const { language } = useI18n();
|
|
87
|
-
const docBrowser = useDocBrowser();
|
|
88
43
|
|
|
89
44
|
const typeFilter: MarketplaceItemType = "skill";
|
|
90
45
|
const localeFallbacks = useMemo(
|
|
@@ -92,19 +47,18 @@ export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
|
92
47
|
[language],
|
|
93
48
|
);
|
|
94
49
|
|
|
95
|
-
const copyKeys = getMarketplaceCopyKeys();
|
|
96
|
-
|
|
97
50
|
const [searchText, setSearchText] = useState("");
|
|
98
51
|
const [query, setQuery] = useState("");
|
|
99
52
|
const [scope, setScope] = useState<ScopeType>("all");
|
|
100
53
|
const [sort, setSort] = useState<MarketplaceSort>("relevance");
|
|
101
|
-
const
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
54
|
+
const {
|
|
55
|
+
installState,
|
|
56
|
+
manageState,
|
|
57
|
+
handleInstall,
|
|
58
|
+
handleManage,
|
|
59
|
+
ConfirmDialog,
|
|
60
|
+
} = useMarketplaceItemActions();
|
|
61
|
+
const { openItemDetail } = useMarketplaceItemDetail(localeFallbacks);
|
|
108
62
|
|
|
109
63
|
useEffect(() => {
|
|
110
64
|
const timer = setTimeout(() => {
|
|
@@ -124,7 +78,10 @@ export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
|
124
78
|
pageSize: PAGE_SIZE,
|
|
125
79
|
});
|
|
126
80
|
|
|
127
|
-
const
|
|
81
|
+
const {
|
|
82
|
+
containerRef: listContainerRef,
|
|
83
|
+
sentinelRef: listSentinelRef,
|
|
84
|
+
} = useInfiniteScrollLoader({
|
|
128
85
|
disabled:
|
|
129
86
|
scope !== "all" ||
|
|
130
87
|
itemsQuery.isError ||
|
|
@@ -135,326 +92,75 @@ export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
|
135
92
|
});
|
|
136
93
|
|
|
137
94
|
useEffect(() => {
|
|
138
|
-
const container =
|
|
95
|
+
const container = listContainerRef.current;
|
|
139
96
|
if (container && typeof container.scrollTo === "function") {
|
|
140
97
|
container.scrollTo({ top: 0 });
|
|
141
98
|
}
|
|
142
|
-
}, [
|
|
143
|
-
|
|
144
|
-
const installMutation = useInstallMarketplaceItem();
|
|
145
|
-
const manageMutation = useManageMarketplaceItem();
|
|
146
|
-
const { confirm, ConfirmDialog } = useConfirmDialog();
|
|
147
|
-
|
|
148
|
-
const installedRecords = useMemo(
|
|
149
|
-
() => installedQuery.data?.records ?? [],
|
|
150
|
-
[installedQuery.data?.records],
|
|
151
|
-
);
|
|
152
|
-
|
|
153
|
-
const allItems = useMemo(
|
|
154
|
-
() => itemsQuery.data?.items ?? [],
|
|
155
|
-
[itemsQuery.data?.items],
|
|
156
|
-
);
|
|
157
|
-
|
|
158
|
-
const catalogLookup = useMemo(() => buildCatalogLookup(allItems), [allItems]);
|
|
159
|
-
|
|
160
|
-
const installedRecordLookup = useMemo(
|
|
161
|
-
() => buildInstalledRecordLookup(installedRecords),
|
|
162
|
-
[installedRecords],
|
|
163
|
-
);
|
|
164
|
-
|
|
165
|
-
const installedEntries = useMemo<InstalledRenderEntry[]>(() => {
|
|
166
|
-
const entries = installedRecords
|
|
167
|
-
.filter((record) => record.type === typeFilter)
|
|
168
|
-
.map((record) => ({
|
|
169
|
-
key: `${record.type}:${record.spec}:${record.id ?? ""}`,
|
|
170
|
-
record,
|
|
171
|
-
item: findCatalogItemForRecord(record, catalogLookup),
|
|
172
|
-
}))
|
|
173
|
-
.filter((entry) =>
|
|
174
|
-
matchInstalledSearch(entry.record, entry.item, query, localeFallbacks),
|
|
175
|
-
);
|
|
176
|
-
|
|
177
|
-
entries.sort((left, right) => {
|
|
178
|
-
const leftTs = left.record.installedAt
|
|
179
|
-
? Date.parse(left.record.installedAt)
|
|
180
|
-
: Number.NaN;
|
|
181
|
-
const rightTs = right.record.installedAt
|
|
182
|
-
? Date.parse(right.record.installedAt)
|
|
183
|
-
: Number.NaN;
|
|
184
|
-
const leftValid = !Number.isNaN(leftTs);
|
|
185
|
-
const rightValid = !Number.isNaN(rightTs);
|
|
186
|
-
|
|
187
|
-
if (leftValid && rightValid && leftTs !== rightTs) {
|
|
188
|
-
return rightTs - leftTs;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
return left.record.spec.localeCompare(right.record.spec);
|
|
192
|
-
});
|
|
193
|
-
|
|
194
|
-
return entries;
|
|
195
|
-
}, [installedRecords, typeFilter, catalogLookup, query, localeFallbacks]);
|
|
196
|
-
|
|
197
|
-
const total =
|
|
198
|
-
scope === "installed"
|
|
199
|
-
? installedEntries.length
|
|
200
|
-
: (itemsQuery.data?.total ?? 0);
|
|
201
|
-
const skeletonState = {
|
|
202
|
-
showCatalog: scope === "all" && itemsQuery.isLoading && !itemsQuery.data,
|
|
203
|
-
showInstalled: scope === "installed" && installedQuery.isLoading && !installedQuery.data,
|
|
204
|
-
};
|
|
205
|
-
const showListSkeleton =
|
|
206
|
-
skeletonState.showCatalog || skeletonState.showInstalled;
|
|
207
|
-
const isRefreshingList =
|
|
208
|
-
scope === "all" &&
|
|
209
|
-
!showListSkeleton &&
|
|
210
|
-
Boolean(itemsQuery.data) &&
|
|
211
|
-
itemsQuery.isFetching &&
|
|
212
|
-
!itemsQuery.isFetchingNextPage;
|
|
213
|
-
|
|
214
|
-
const listSummary = useMemo(() => {
|
|
215
|
-
if (scope === "installed") {
|
|
216
|
-
if (installedQuery.isLoading && !installedQuery.data) {
|
|
217
|
-
return t("loading");
|
|
218
|
-
}
|
|
219
|
-
return `${installedEntries.length} ${t(copyKeys.installedCountSuffix)}`;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
if (!itemsQuery.data) {
|
|
223
|
-
return t("loading");
|
|
224
|
-
}
|
|
99
|
+
}, [listContainerRef, query, sceneParam, scope, sort, typeFilter]);
|
|
225
100
|
|
|
226
|
-
|
|
227
|
-
}, [
|
|
101
|
+
const listModel = useMarketplaceListModel({
|
|
228
102
|
scope,
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
itemsQuery.data,
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
103
|
+
typeFilter,
|
|
104
|
+
query,
|
|
105
|
+
localeFallbacks,
|
|
106
|
+
catalogView: itemsQuery.data,
|
|
107
|
+
installedView: installedQuery.data,
|
|
108
|
+
isCatalogLoading: itemsQuery.isLoading,
|
|
109
|
+
isCatalogFetching: itemsQuery.isFetching,
|
|
110
|
+
isCatalogFetchingNextPage: itemsQuery.isFetchingNextPage,
|
|
111
|
+
catalogError: itemsQuery.isError ? itemsQuery.error : undefined,
|
|
112
|
+
isInstalledLoading: installedQuery.isLoading,
|
|
113
|
+
installedError: installedQuery.isError ? installedQuery.error : undefined,
|
|
114
|
+
});
|
|
239
115
|
|
|
240
|
-
const manageState: ManageState = {
|
|
241
|
-
actionsByTarget: managingTargets,
|
|
242
|
-
};
|
|
243
116
|
const curatedSceneRoute = useMarketplaceCuratedSceneRoute({
|
|
244
|
-
items: allItems,
|
|
245
|
-
installedRecordLookup,
|
|
117
|
+
items: listModel.allItems,
|
|
118
|
+
installedRecordLookup: listModel.installedRecordLookup,
|
|
246
119
|
scene: sceneParam,
|
|
247
120
|
forcedType,
|
|
248
121
|
typeFilter,
|
|
249
122
|
scope,
|
|
250
123
|
searchText,
|
|
251
124
|
query,
|
|
252
|
-
showListSkeleton,
|
|
125
|
+
showListSkeleton: listModel.showListSkeleton,
|
|
253
126
|
hasCatalogError: itemsQuery.isError,
|
|
254
127
|
});
|
|
255
128
|
|
|
256
|
-
const handleInstall = async (item: MarketplaceItemSummary) => {
|
|
257
|
-
const installSpec = item.install.spec;
|
|
258
|
-
if (installingSpecs.has(installSpec)) {
|
|
259
|
-
return;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
setInstallingSpecs((prev) => {
|
|
263
|
-
const next = new Set(prev);
|
|
264
|
-
next.add(installSpec);
|
|
265
|
-
return next;
|
|
266
|
-
});
|
|
267
|
-
|
|
268
|
-
try {
|
|
269
|
-
await installMutation.mutateAsync({
|
|
270
|
-
type: item.type,
|
|
271
|
-
spec: installSpec,
|
|
272
|
-
kind: item.install.kind,
|
|
273
|
-
skill: item.slug,
|
|
274
|
-
installPath: `skills/${item.slug}`,
|
|
275
|
-
});
|
|
276
|
-
} catch {
|
|
277
|
-
// handled in mutation onError
|
|
278
|
-
} finally {
|
|
279
|
-
setInstallingSpecs((prev) => {
|
|
280
|
-
if (!prev.has(installSpec)) {
|
|
281
|
-
return prev;
|
|
282
|
-
}
|
|
283
|
-
const next = new Set(prev);
|
|
284
|
-
next.delete(installSpec);
|
|
285
|
-
return next;
|
|
286
|
-
});
|
|
287
|
-
}
|
|
288
|
-
};
|
|
289
|
-
|
|
290
|
-
const handleManage = async (
|
|
291
|
-
action: MarketplaceManageAction,
|
|
292
|
-
record: MarketplaceInstalledRecord,
|
|
293
|
-
) => {
|
|
294
|
-
const targetId = action === "update"
|
|
295
|
-
? record.catalogSlug || record.id || record.spec
|
|
296
|
-
: record.id || record.spec;
|
|
297
|
-
if (!targetId) {
|
|
298
|
-
return;
|
|
299
|
-
}
|
|
300
|
-
if (managingTargets.has(targetId)) {
|
|
301
|
-
return;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
if (action === "uninstall") {
|
|
305
|
-
const confirmed = await confirm({
|
|
306
|
-
title: `${t("marketplaceUninstallTitle")} ${targetId}?`,
|
|
307
|
-
description: t("marketplaceUninstallDescription"),
|
|
308
|
-
confirmLabel: t("marketplaceUninstall"),
|
|
309
|
-
variant: "destructive",
|
|
310
|
-
});
|
|
311
|
-
if (!confirmed) {
|
|
312
|
-
return;
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
setManagingTargets((previous) => {
|
|
317
|
-
const next = new Map(previous);
|
|
318
|
-
next.set(targetId, action);
|
|
319
|
-
return next;
|
|
320
|
-
});
|
|
321
|
-
|
|
322
|
-
try {
|
|
323
|
-
await manageMutation.mutateAsync({
|
|
324
|
-
type: record.type,
|
|
325
|
-
action,
|
|
326
|
-
id: targetId,
|
|
327
|
-
spec: record.spec,
|
|
328
|
-
});
|
|
329
|
-
} finally {
|
|
330
|
-
setManagingTargets((previous) => {
|
|
331
|
-
if (!previous.has(targetId)) {
|
|
332
|
-
return previous;
|
|
333
|
-
}
|
|
334
|
-
const next = new Map(previous);
|
|
335
|
-
next.delete(targetId);
|
|
336
|
-
return next;
|
|
337
|
-
});
|
|
338
|
-
}
|
|
339
|
-
};
|
|
340
|
-
|
|
341
|
-
const openItemDetail = async (
|
|
342
|
-
item?: MarketplaceItemSummary,
|
|
343
|
-
record?: MarketplaceInstalledRecord,
|
|
344
|
-
) => {
|
|
345
|
-
const title =
|
|
346
|
-
item?.name ??
|
|
347
|
-
record?.label ??
|
|
348
|
-
record?.id ??
|
|
349
|
-
record?.spec ??
|
|
350
|
-
t("marketplaceUnknownItem");
|
|
351
|
-
const dedupeKey = item
|
|
352
|
-
? `marketplace:${item.type}:${item.slug}`
|
|
353
|
-
: `marketplace:${record?.type ?? "unknown"}:${record?.id ?? record?.spec ?? title}`;
|
|
354
|
-
const openOptions = { title, kind: "content" as const, dedupeKey };
|
|
355
|
-
const updateOptions = { ...openOptions, activate: false };
|
|
356
|
-
|
|
357
|
-
if (!item) {
|
|
358
|
-
const url = buildGenericDetailDataUrl({
|
|
359
|
-
title,
|
|
360
|
-
typeLabel: t("marketplaceTypeSkill"),
|
|
361
|
-
spec: record?.spec ?? "-",
|
|
362
|
-
summary: t("marketplaceInstalledLocalSummary"),
|
|
363
|
-
metadataRaw: JSON.stringify(record ?? {}, null, 2),
|
|
364
|
-
contentRaw: "-",
|
|
365
|
-
});
|
|
366
|
-
docBrowser.open(url, openOptions);
|
|
367
|
-
return;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
const requestId = detailRequestRef.current.seq + 1;
|
|
371
|
-
detailRequestRef.current.seq = requestId;
|
|
372
|
-
detailRequestRef.current.byKey.set(dedupeKey, requestId);
|
|
373
|
-
const summary = pickLocalizedText(
|
|
374
|
-
item.summaryI18n,
|
|
375
|
-
item.summary,
|
|
376
|
-
localeFallbacks,
|
|
377
|
-
);
|
|
378
|
-
const detailConfig =
|
|
379
|
-
{
|
|
380
|
-
typeLabel: t("marketplaceTypeSkill"),
|
|
381
|
-
loadContent: () => fetchMarketplaceSkillContent(item.slug),
|
|
382
|
-
fallbackContent: t("marketplaceOperationFailed"),
|
|
383
|
-
defaultContent: undefined,
|
|
384
|
-
};
|
|
385
|
-
docBrowser.open(
|
|
386
|
-
buildGenericDetailDataUrl({
|
|
387
|
-
title,
|
|
388
|
-
typeLabel: detailConfig.typeLabel,
|
|
389
|
-
spec: item.install.spec,
|
|
390
|
-
loading: true,
|
|
391
|
-
}),
|
|
392
|
-
openOptions,
|
|
393
|
-
);
|
|
394
|
-
try {
|
|
395
|
-
const content: MarketplaceSkillContentView = await detailConfig.loadContent();
|
|
396
|
-
if (detailRequestRef.current.byKey.get(dedupeKey) !== requestId) {
|
|
397
|
-
return;
|
|
398
|
-
}
|
|
399
|
-
const url = buildGenericDetailDataUrl({
|
|
400
|
-
title,
|
|
401
|
-
typeLabel: detailConfig.typeLabel,
|
|
402
|
-
spec: item.install.spec,
|
|
403
|
-
summary,
|
|
404
|
-
metadataRaw: content.metadataRaw,
|
|
405
|
-
contentRaw: content.bodyRaw || content.raw || detailConfig.defaultContent,
|
|
406
|
-
sourceUrl: content.sourceUrl,
|
|
407
|
-
sourceLabel: `Source (${content.source})`,
|
|
408
|
-
tags: item.tags,
|
|
409
|
-
author: item.author,
|
|
410
|
-
});
|
|
411
|
-
docBrowser.open(url, updateOptions);
|
|
412
|
-
} catch (error) {
|
|
413
|
-
if (detailRequestRef.current.byKey.get(dedupeKey) !== requestId) {
|
|
414
|
-
return;
|
|
415
|
-
}
|
|
416
|
-
const url = buildGenericDetailDataUrl({
|
|
417
|
-
title,
|
|
418
|
-
typeLabel: detailConfig.typeLabel,
|
|
419
|
-
spec: item.install.spec,
|
|
420
|
-
summary,
|
|
421
|
-
metadataRaw: JSON.stringify(
|
|
422
|
-
{ error: error instanceof Error ? error.message : String(error) },
|
|
423
|
-
null,
|
|
424
|
-
2,
|
|
425
|
-
),
|
|
426
|
-
contentRaw: detailConfig.fallbackContent,
|
|
427
|
-
});
|
|
428
|
-
docBrowser.open(url, updateOptions);
|
|
429
|
-
}
|
|
430
|
-
};
|
|
431
|
-
|
|
432
129
|
return (
|
|
433
130
|
<PageLayout className="flex h-full min-h-0 flex-col pb-0">
|
|
434
131
|
{!curatedSceneRoute.isSceneRoute && (
|
|
435
132
|
<>
|
|
436
133
|
<div className="mb-3 flex items-start justify-between gap-3 border-b border-gray-200/60">
|
|
437
134
|
<Tabs
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
135
|
+
value={scope}
|
|
136
|
+
onValueChange={(value) => setScope(value as ScopeType)}
|
|
137
|
+
>
|
|
138
|
+
<TabsList className="mb-0 h-auto flex-1 justify-start gap-6 rounded-none border-b-0 bg-transparent p-0 text-gray-500">
|
|
139
|
+
<TabsTrigger
|
|
140
|
+
value="all"
|
|
141
|
+
className="rounded-none border-b-2 border-transparent bg-transparent px-0 pb-3 pt-0 shadow-none hover:bg-transparent data-[state=active]:border-primary data-[state=active]:bg-transparent data-[state=active]:text-gray-950 data-[state=active]:shadow-none"
|
|
142
|
+
>
|
|
143
|
+
{t("marketplaceTabMarketplaceSkills")}
|
|
144
|
+
</TabsTrigger>
|
|
145
|
+
<TabsTrigger
|
|
146
|
+
value="installed"
|
|
147
|
+
className="gap-1.5 rounded-none border-b-2 border-transparent bg-transparent px-0 pb-3 pt-0 shadow-none hover:bg-transparent data-[state=active]:border-primary data-[state=active]:bg-transparent data-[state=active]:text-gray-950 data-[state=active]:shadow-none"
|
|
148
|
+
>
|
|
149
|
+
{t("marketplaceTabInstalledSkills")}
|
|
150
|
+
<span className="text-[11px] font-medium text-gray-500">
|
|
151
|
+
{listModel.installedTotal}
|
|
152
|
+
</span>
|
|
153
|
+
</TabsTrigger>
|
|
154
|
+
</TabsList>
|
|
155
|
+
</Tabs>
|
|
450
156
|
<MarketplaceExternalSkillSourceAction />
|
|
451
157
|
</div>
|
|
452
158
|
|
|
453
159
|
<FilterPanel
|
|
454
160
|
scope={scope}
|
|
455
161
|
searchText={searchText}
|
|
456
|
-
isRefreshing={isRefreshingList}
|
|
457
|
-
searchPlaceholder={t(
|
|
162
|
+
isRefreshing={listModel.isRefreshingList}
|
|
163
|
+
searchPlaceholder={t("marketplaceSearchPlaceholderSkills")}
|
|
458
164
|
sort={sort}
|
|
459
165
|
onSearchTextChange={setSearchText}
|
|
460
166
|
onSortChange={setSort}
|
|
@@ -463,53 +169,33 @@ export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
|
463
169
|
)}
|
|
464
170
|
|
|
465
171
|
<section className="flex min-h-0 flex-1 flex-col">
|
|
466
|
-
{!curatedSceneRoute.isSceneRoute &&
|
|
467
|
-
!curatedSceneRoute.showShelves &&
|
|
468
|
-
!showListSkeleton && (
|
|
469
|
-
<div className="mb-3 flex items-center justify-between">
|
|
470
|
-
<h3 className="text-[14px] font-semibold text-gray-900">
|
|
471
|
-
{scope === "installed"
|
|
472
|
-
? t(copyKeys.sectionInstalled)
|
|
473
|
-
: t(copyKeys.allSkills)}
|
|
474
|
-
</h3>
|
|
475
|
-
<div className="flex items-center gap-2 text-[12px] text-gray-500">
|
|
476
|
-
{isRefreshingList && (
|
|
477
|
-
<span className="font-medium text-primary">
|
|
478
|
-
{t(copyKeys.refreshingResults)}
|
|
479
|
-
</span>
|
|
480
|
-
)}
|
|
481
|
-
<span>{listSummary}</span>
|
|
482
|
-
</div>
|
|
483
|
-
</div>
|
|
484
|
-
)}
|
|
485
|
-
|
|
486
|
-
{scope === "all" && itemsQuery.isError && (
|
|
487
|
-
<div className="rounded-xl border border-rose-200 bg-rose-50 p-4 text-sm text-rose-700">
|
|
488
|
-
{t(copyKeys.errorLoadData)}: {itemsQuery.error.message}
|
|
489
|
-
</div>
|
|
490
|
-
)}
|
|
491
|
-
{scope === "installed" && installedQuery.isError && (
|
|
492
|
-
<div className="rounded-xl border border-rose-200 bg-rose-50 p-4 text-sm text-rose-700">
|
|
493
|
-
{t(copyKeys.errorLoadInstalled)}: {installedQuery.error.message}
|
|
494
|
-
</div>
|
|
495
|
-
)}
|
|
496
|
-
|
|
497
172
|
<div
|
|
498
|
-
ref={
|
|
173
|
+
ref={listContainerRef}
|
|
499
174
|
className="min-h-0 flex-1 overflow-y-auto custom-scrollbar pr-1"
|
|
500
|
-
aria-busy={showListSkeleton || itemsQuery.isFetchingNextPage}
|
|
175
|
+
aria-busy={listModel.showListSkeleton || itemsQuery.isFetchingNextPage}
|
|
501
176
|
>
|
|
502
|
-
{curatedSceneRoute.isSceneRoute &&
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
177
|
+
{curatedSceneRoute.isSceneRoute &&
|
|
178
|
+
curatedSceneRoute.selectedScene && (
|
|
179
|
+
<MarketplaceCuratedSceneView
|
|
180
|
+
scene={curatedSceneRoute.selectedScene}
|
|
181
|
+
entries={curatedSceneRoute.sceneEntries}
|
|
182
|
+
isLoading={listModel.showListSkeleton}
|
|
183
|
+
language={language}
|
|
184
|
+
localeFallbacks={localeFallbacks}
|
|
185
|
+
installState={installState}
|
|
186
|
+
onBack={() => navigate(curatedSceneRoute.backPath)}
|
|
187
|
+
onOpen={(entry) =>
|
|
188
|
+
void openItemDetail(entry.item, entry.record)
|
|
189
|
+
}
|
|
190
|
+
onInstall={handleInstall}
|
|
191
|
+
/>
|
|
192
|
+
)}
|
|
193
|
+
|
|
194
|
+
{curatedSceneRoute.isSceneRoute && !listModel.showListSkeleton && (
|
|
195
|
+
<MarketplaceInfiniteScrollStatus
|
|
196
|
+
hasMore={Boolean(itemsQuery.hasNextPage)}
|
|
197
|
+
loading={itemsQuery.isFetchingNextPage}
|
|
198
|
+
sentinelRef={listSentinelRef}
|
|
513
199
|
/>
|
|
514
200
|
)}
|
|
515
201
|
|
|
@@ -518,7 +204,7 @@ export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
|
518
204
|
entries={curatedSceneRoute.entries}
|
|
519
205
|
scenes={curatedSceneRoute.scenes}
|
|
520
206
|
isScenesLoading={curatedSceneRoute.isScenesLoading}
|
|
521
|
-
isItemsLoading={showListSkeleton}
|
|
207
|
+
isItemsLoading={listModel.showListSkeleton}
|
|
522
208
|
language={language}
|
|
523
209
|
installState={installState}
|
|
524
210
|
onOpen={(entry) => void openItemDetail(entry.item, entry.record)}
|
|
@@ -530,59 +216,27 @@ export function MarketplacePage(props: MarketplacePageProps = {}) {
|
|
|
530
216
|
)}
|
|
531
217
|
|
|
532
218
|
{!curatedSceneRoute.isSceneRoute && (
|
|
533
|
-
<
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
? t(copyKeys.sectionInstalled)
|
|
538
|
-
: t(copyKeys.allSkills)
|
|
219
|
+
<MarketplaceItemListView
|
|
220
|
+
model={listModel.itemListView}
|
|
221
|
+
showTitle={
|
|
222
|
+
curatedSceneRoute.showShelves || !listModel.showListSkeleton
|
|
539
223
|
}
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
onManage={handleManage}
|
|
224
|
+
operationState={{
|
|
225
|
+
installState,
|
|
226
|
+
manageState,
|
|
227
|
+
}}
|
|
228
|
+
scroll={{
|
|
229
|
+
hasMore: Boolean(itemsQuery.hasNextPage),
|
|
230
|
+
loadingMore: itemsQuery.isFetchingNextPage,
|
|
231
|
+
sentinelRef: listSentinelRef,
|
|
232
|
+
}}
|
|
233
|
+
actions={{
|
|
234
|
+
onOpen: (item, record) => void openItemDetail(item, record),
|
|
235
|
+
onInstall: handleInstall,
|
|
236
|
+
onManage: handleManage,
|
|
237
|
+
}}
|
|
555
238
|
/>
|
|
556
239
|
)}
|
|
557
|
-
|
|
558
|
-
{scope === "all" &&
|
|
559
|
-
!curatedSceneRoute.isSceneRoute &&
|
|
560
|
-
!showListSkeleton &&
|
|
561
|
-
!itemsQuery.isError &&
|
|
562
|
-
allItems.length === 0 && (
|
|
563
|
-
<div className="py-8 text-center text-[13px] text-gray-500">
|
|
564
|
-
{t(copyKeys.emptyData)}
|
|
565
|
-
</div>
|
|
566
|
-
)}
|
|
567
|
-
{scope === "installed" &&
|
|
568
|
-
!curatedSceneRoute.isSceneRoute &&
|
|
569
|
-
!showListSkeleton &&
|
|
570
|
-
!installedQuery.isError &&
|
|
571
|
-
installedEntries.length === 0 && (
|
|
572
|
-
<div className="py-8 text-center text-[13px] text-gray-500">
|
|
573
|
-
{t(copyKeys.emptyInstalled)}
|
|
574
|
-
</div>
|
|
575
|
-
)}
|
|
576
|
-
|
|
577
|
-
{scope === "all" &&
|
|
578
|
-
!showListSkeleton &&
|
|
579
|
-
!itemsQuery.isError && (
|
|
580
|
-
<MarketplaceInfiniteScrollStatus
|
|
581
|
-
hasMore={Boolean(itemsQuery.hasNextPage)}
|
|
582
|
-
loading={itemsQuery.isFetchingNextPage}
|
|
583
|
-
sentinelRef={infiniteScroll.sentinelRef}
|
|
584
|
-
/>
|
|
585
|
-
)}
|
|
586
240
|
</div>
|
|
587
241
|
</section>
|
|
588
242
|
<ConfirmDialog />
|
|
@@ -3,7 +3,7 @@ import type {
|
|
|
3
3
|
MarketplaceItemSummary,
|
|
4
4
|
} from "@/shared/lib/api";
|
|
5
5
|
import { Button } from "@/shared/components/ui/button";
|
|
6
|
-
import { TagChip } from "@/shared/components/
|
|
6
|
+
import { TagChip } from "@/shared/components/tags/tag-chip";
|
|
7
7
|
import { t } from "@/shared/lib/i18n";
|
|
8
8
|
import { readSummary, readTransportLabel } from "./mcp-marketplace-doc";
|
|
9
9
|
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
DialogTitle,
|
|
15
15
|
} from "@/shared/components/ui/dialog";
|
|
16
16
|
import { Input } from "@/shared/components/ui/input";
|
|
17
|
-
import { NoticeCard } from "@/shared/components/
|
|
17
|
+
import { NoticeCard } from "@/shared/components/feedback/notice-card";
|
|
18
18
|
import { Switch } from "@/shared/components/ui/switch";
|
|
19
19
|
import { t } from "@/shared/lib/i18n";
|
|
20
20
|
|