nolo-cli 0.1.40 → 0.1.42
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/README.md +27 -12
- package/agent-runtime/agentThread.ts +222 -0
- package/agent-runtime/agentThreadAdmission.ts +74 -0
- package/agent-runtime/dialogWritePlan.ts +42 -0
- package/agent-runtime/hostAdapter.ts +1 -0
- package/agent-runtime/hybridRecordStore.ts +5 -3
- package/agent-runtime/index.ts +43 -0
- package/agent-runtime/localLoop.ts +31 -2
- package/agent-runtime/localToolPolicy.ts +1 -0
- package/agent-runtime/localWorkspaceTools.ts +1258 -78
- package/agent-runtime/noloWorkspaceTools.ts +20 -1
- package/agent-runtime/runtimeToolPolicy.ts +1 -5
- package/agent-runtime/runtimeToolSurface.ts +1 -0
- package/agentAliases.ts +29 -9
- package/agentInternalCommandEntries.ts +11 -3
- package/agentMachineCommands.ts +1 -0
- package/agentRecordCommands.ts +2 -2
- package/agentRecordHelpers.ts +59 -6
- package/agentRunCommand.ts +84 -19
- package/ai/agent/_executeModel.ts +146 -0
- package/ai/agent/agentSlice.ts +556 -1
- package/ai/agent/appWorkingMemory.ts +126 -0
- package/ai/agent/buildEditingContext.ts +378 -0
- package/ai/agent/buildSystemPrompt.ts +599 -0
- package/ai/agent/canvasEditingContext.ts +49 -0
- package/ai/agent/cleanAgentMessages.ts +140 -0
- package/ai/agent/cliChatClient.ts +153 -0
- package/ai/agent/cliExecutor.ts +264 -46
- package/ai/agent/contextCompiler.ts +107 -0
- package/ai/agent/contextLayerContract.ts +44 -0
- package/ai/agent/createAgentSchema.ts +272 -0
- package/ai/agent/currentTimeContext.ts +65 -0
- package/ai/agent/executeToolCall.ts +58 -0
- package/ai/agent/fetchAgentContexts.ts +42 -0
- package/ai/agent/generatePrompt.ts +3 -0
- package/ai/agent/getFullChatContextKeys.ts +168 -0
- package/ai/agent/guidedCreation/capabilities.ts +84 -0
- package/ai/agent/guidedCreation/types.ts +38 -0
- package/ai/agent/isLiveAudioOnlyAgent.ts +26 -0
- package/ai/agent/liveAudioModel.ts +2 -0
- package/ai/agent/pageBuilderHandoffRules.ts +75 -0
- package/ai/agent/persistMessageWithFixedId.ts +37 -0
- package/ai/agent/planSlice.ts +259 -0
- package/ai/agent/referenceUtils.ts +229 -0
- package/ai/agent/runAgentBackground.ts +310 -0
- package/ai/agent/runAgentClientLoop.ts +164 -0
- package/ai/agent/runtimeGuidance.ts +116 -0
- package/ai/agent/serverOrigin.ts +7 -0
- package/ai/agent/startParallelAgentStreams.ts +424 -0
- package/ai/agent/startupProtocol.ts +53 -0
- package/ai/agent/streamAgentChatTurn.ts +2135 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +923 -0
- package/ai/agent/toolFailureGuard.ts +99 -0
- package/ai/agent/types.ts +73 -0
- package/ai/agent/utils/imageOutput.ts +37 -0
- package/ai/agent/utils/publicImageAgentMode.ts +26 -0
- package/ai/ai.locale.ts +1165 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +122 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +921 -0
- package/ai/chat/sendOpenAIResponseRequest.ts +720 -0
- package/ai/chat/serverProxyRetry.ts +102 -0
- package/ai/chat/shouldUseServerProxy.ts +18 -0
- package/ai/chat/streamRetry.ts +46 -0
- package/ai/chat/updateTotalUsage.ts +89 -0
- package/ai/context/buildReferenceContext.ts +437 -0
- package/ai/context/retention.ts +165 -0
- package/ai/context/tokenUtils.ts +78 -0
- package/ai/llm/agentCapabilities.ts +74 -0
- package/ai/llm/deepinfra.ts +79 -0
- package/ai/llm/fireworks.ts +68 -0
- package/ai/llm/generateRequestBody.ts +165 -0
- package/ai/llm/getModelContextWindow.ts +93 -0
- package/ai/llm/getPricing.ts +252 -0
- package/ai/llm/imagePricing.ts +66 -0
- package/ai/llm/isResponseAPIModel.ts +13 -0
- package/ai/llm/kimi.ts +22 -0
- package/ai/llm/mimo.ts +99 -0
- package/ai/llm/mistral.ts +21 -0
- package/ai/llm/models.ts +45 -0
- package/ai/llm/openrouterModels.ts +31 -0
- package/ai/llm/providers.ts +313 -0
- package/ai/llm/reasoningModels.ts +27 -0
- package/ai/llm/types.ts +82 -0
- package/ai/llm/usageRequestOptions.ts +59 -0
- package/ai/memory/policy.ts +49 -0
- package/ai/memory/queryShared.ts +167 -0
- package/ai/memory/recentRelationshipRecap.ts +251 -0
- package/ai/memory/remember.ts +111 -0
- package/ai/memory/scope.ts +74 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +52 -0
- package/ai/memory/understanding.ts +341 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +526 -0
- package/ai/policy/selfUpdateFields.ts +48 -0
- package/ai/policy/types.ts +64 -0
- package/ai/skills/referenceRuntime.ts +274 -0
- package/ai/skills/skillDiagnostics.ts +251 -0
- package/ai/skills/skillDocBuilder.ts +139 -0
- package/ai/skills/skillSummaryMarker.ts +26 -0
- package/ai/token/calculatePrice.ts +576 -0
- package/ai/token/missingUsageEstimate.ts +42 -0
- package/ai/token/normalizeUsage.ts +124 -0
- package/ai/token/openaiImageGenerationUsage.ts +56 -0
- package/ai/token/prepareTokenUsageData.ts +93 -0
- package/ai/token/resolveBillingTarget.ts +52 -0
- package/ai/token/saveTokenRecord.ts +53 -0
- package/ai/token/types.ts +103 -0
- package/ai/tools/agent/agentTools.ts +214 -0
- package/ai/tools/agent/agentUpdateShared.ts +311 -0
- package/ai/tools/agent/callAgentTool.ts +139 -0
- package/ai/tools/agent/createAgentTool.ts +512 -0
- package/ai/tools/agent/createDialogTool.ts +69 -0
- package/ai/tools/agent/createSkillAgentTool.ts +62 -0
- package/ai/tools/agent/parallelBudget.ts +221 -0
- package/ai/tools/agent/prepareAgentDraftTool.ts +159 -0
- package/ai/tools/agent/presets/appBuilderPreset.ts +154 -0
- package/ai/tools/agent/runLlmTool.ts +96 -0
- package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
- package/ai/tools/agent/skillAgentArgs.ts +106 -0
- package/ai/tools/agent/startAgentDialogTool.ts +54 -0
- package/ai/tools/agent/streamParallelAgentsTool.ts +123 -0
- package/ai/tools/agent/updateAgentTool.ts +96 -0
- package/ai/tools/agent/updateSelfTool.ts +113 -0
- package/ai/tools/amazonProductScraperTool.ts +86 -0
- package/ai/tools/apifyActorClient.ts +45 -0
- package/ai/tools/appEditGuard.ts +372 -0
- package/ai/tools/appReadSnapshot.ts +153 -0
- package/ai/tools/appTools.ts +1549 -0
- package/ai/tools/applyEditTool.ts +259 -0
- package/ai/tools/applyLineEditsTool.ts +315 -0
- package/ai/tools/browserTools/click.ts +33 -0
- package/ai/tools/browserTools/closeSession.ts +29 -0
- package/ai/tools/browserTools/common.ts +27 -0
- package/ai/tools/browserTools/openSession.ts +48 -0
- package/ai/tools/browserTools/readContent.ts +38 -0
- package/ai/tools/browserTools/selectOption.ts +46 -0
- package/ai/tools/browserTools/typeText.ts +42 -0
- package/ai/tools/category/createCategoryTool.ts +66 -0
- package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
- package/ai/tools/category/updateContentCategoryTool.ts +75 -0
- package/ai/tools/cfBrowserTools.ts +319 -0
- package/ai/tools/cfSpeechToTextTool.ts +49 -0
- package/ai/tools/checkEnvTool.ts +102 -0
- package/ai/tools/cloudflareCrawlTool.ts +289 -0
- package/ai/tools/codeSearchTool.ts +123 -0
- package/ai/tools/codeTools.ts +101 -0
- package/ai/tools/convertMarxistsBookTool.ts +103 -0
- package/ai/tools/createDocTool.ts +132 -0
- package/ai/tools/createSkillDocTool.ts +155 -0
- package/ai/tools/createWorkflowTool.ts +154 -0
- package/ai/tools/delayTool.ts +31 -0
- package/ai/tools/deleteSpacesTool.ts +325 -0
- package/ai/tools/deleteSpacesToolModel.ts +159 -0
- package/ai/tools/devReloadUtils.ts +29 -0
- package/ai/tools/dialogMessageSearch.ts +137 -0
- package/ai/tools/doctorSkillTool.ts +72 -0
- package/ai/tools/ecommerceScraperTool.ts +86 -0
- package/ai/tools/emailTools.ts +549 -0
- package/ai/tools/evalSkillTool.ts +92 -0
- package/ai/tools/exaSearchTool.ts +63 -0
- package/ai/tools/execShellTool.ts +266 -0
- package/ai/tools/executeSqlTool.ts +192 -0
- package/ai/tools/fetchWebpageSupport.ts +333 -0
- package/ai/tools/fetchWebpageTool.ts +97 -0
- package/ai/tools/geminiImagePreviewTool.ts +386 -0
- package/ai/tools/generateDocxTool.ts +215 -0
- package/ai/tools/googleSearchScraperTool.ts +106 -0
- package/ai/tools/importDataTool.ts +133 -0
- package/ai/tools/importSkillTool.ts +162 -0
- package/ai/tools/index.ts +2290 -0
- package/ai/tools/jdProductScraperTool.ts +821 -0
- package/ai/tools/listUserSpacesTool.ts +113 -0
- package/ai/tools/localFilesTool.ts +276 -0
- package/ai/tools/marxistsOfflineBook.ts +253 -0
- package/ai/tools/modelUsageTools.ts +206 -0
- package/ai/tools/noloWorkspaceReadTools.ts +467 -0
- package/ai/tools/olmOcrTool.ts +33 -0
- package/ai/tools/openaiImageTool.ts +267 -0
- package/ai/tools/prepareTools.ts +193 -0
- package/ai/tools/readDocTool.ts +88 -0
- package/ai/tools/readFileTool.ts +214 -0
- package/ai/tools/readTool.ts +194 -0
- package/ai/tools/readXPostTool.ts +229 -0
- package/ai/tools/readXhsProfileTool.ts +638 -0
- package/ai/tools/rememberMemoryTool.ts +84 -0
- package/ai/tools/remotionVideoTool.ts +151 -0
- package/ai/tools/searchDialogMessagesTool.ts +222 -0
- package/ai/tools/searchWorkspaceTool.ts +259 -0
- package/ai/tools/skillFollowup.ts +86 -0
- package/ai/tools/surfWeatherTool.ts +169 -0
- package/ai/tools/table/addTableRowTool.ts +217 -0
- package/ai/tools/table/createTableTool.ts +326 -0
- package/ai/tools/table/rowTools.ts +386 -0
- package/ai/tools/table/schemaTools.ts +244 -0
- package/ai/tools/table/shareTableTool.ts +148 -0
- package/ai/tools/table/toolShared.ts +129 -0
- package/ai/tools/taobaoTmallProductScraperTool.ts +49 -0
- package/ai/tools/toolApiClient.ts +279 -0
- package/ai/tools/toolPacks.ts +19 -0
- package/ai/tools/toolResultError.ts +42 -0
- package/ai/tools/toolRunSlice.ts +303 -0
- package/ai/tools/toolSchemaCompatibility.ts +53 -0
- package/ai/tools/uiAskChoiceTool.ts +104 -0
- package/ai/tools/updateContentTitleTool.ts +84 -0
- package/ai/tools/updateDocTool.ts +105 -0
- package/ai/tools/updateUserPreferenceProfileTool.ts +153 -0
- package/ai/tools/wereadGatewayTool.ts +152 -0
- package/ai/tools/whisperTool.ts +76 -0
- package/ai/tools/writeFileTool.ts +213 -0
- package/ai/tools/youtubeScraperTool.ts +116 -0
- package/ai/tools/ziweiChartTool.ts +678 -0
- package/ai/types.ts +58 -0
- package/ai/workflow/workflowExecutor.ts +323 -0
- package/ai/workflow/workflowSlice.ts +73 -0
- package/ai/workflow/workflowTypes.ts +106 -0
- package/app/actions/syncAppRecord.ts +73 -0
- package/app/constants/animationSets.ts +21 -0
- package/app/constants/appEditor.ts +99 -0
- package/app/favorite/deletedFavoriteProjection.ts +31 -0
- package/app/favorite/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +254 -0
- package/app/i18n/client.ts +13 -0
- package/app/i18n/i18n.base.ts +14 -0
- package/app/i18n/i18n.config.ts +77 -0
- package/app/i18n/index.ts +15 -0
- package/app/i18n/mapLanguage.ts +11 -0
- package/app/i18n/translations/appBuilder.locale.ts +453 -0
- package/app/i18n/translations/error.locale.ts +246 -0
- package/app/i18n/translations/interface.locale.ts +2206 -0
- package/app/i18n/translations/pricing.locale.ts +397 -0
- package/app/i18n/translations/privacy.locale.ts +168 -0
- package/app/i18n/translations/seo.locale.ts +129 -0
- package/app/i18n/translations/terms.locale.ts +124 -0
- package/app/i18n/types.ts +6 -0
- package/app/notifications/model.ts +77 -0
- package/app/notifications/notificationSlice.ts +141 -0
- package/app/reducer.ts +36 -0
- package/app/settings/dbActionThunks.ts +34 -0
- package/app/settings/defaultSpacePreference.ts +87 -0
- package/app/settings/settingSlice.tsx +1212 -0
- package/app/settings/settingsRecord.ts +8 -0
- package/app/stateViews/runtime.ts +90 -0
- package/app/store.ts +55 -0
- package/app/theme/colors.ts +280 -0
- package/app/theme/fontPreference.ts +77 -0
- package/app/theme/theme.config.ts +120 -0
- package/app/theme/themeModeBootstrap.ts +123 -0
- package/app/types/appSummary.ts +118 -0
- package/app/types.ts +358 -0
- package/app/utils/appKeys.ts +55 -0
- package/app/utils/async.ts +28 -0
- package/app/utils/desktopAgentRuntimeTurnClient.ts +75 -0
- package/app/utils/env.ts +17 -0
- package/app/utils/fileUtils.ts +229 -0
- package/app/utils/imageUtils.ts +274 -0
- package/app/utils/myContentItems.ts +289 -0
- package/app/utils/retryAfter.ts +36 -0
- package/app/utils/retryFetch.ts +61 -0
- package/app/utils/toast.ts +3 -0
- package/auth/action/signUpAction.ts +227 -0
- package/auth/adminPermissions.ts +78 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +183 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +817 -0
- package/chat/dialog/actions/addCybotAction.ts +52 -0
- package/chat/dialog/actions/addReferenceKeysAction.ts +62 -0
- package/chat/dialog/actions/builtinDialogLlm.ts +35 -0
- package/chat/dialog/actions/cleanupCliSession.ts +40 -0
- package/chat/dialog/actions/createDialogAction.ts +379 -0
- package/chat/dialog/actions/createScheduledTaskAction.ts +78 -0
- package/chat/dialog/actions/handleSendMessageAction.ts +202 -0
- package/chat/dialog/actions/handleSendMessageResolver.ts +27 -0
- package/chat/dialog/actions/removeCybotAction.ts +6 -0
- package/chat/dialog/actions/removeDialogAgentAction.ts +44 -0
- package/chat/dialog/actions/replacePrimaryCybotAction.ts +6 -0
- package/chat/dialog/actions/setPrimaryDialogAgentAction.ts +52 -0
- package/chat/dialog/actions/updateDialogSummaryAction.ts +430 -0
- package/chat/dialog/actions/updateDialogTitleAction.ts +151 -0
- package/chat/dialog/actions/updateDialogTitlePolicy.ts +30 -0
- package/chat/dialog/actions/updateTokensAction.ts +233 -0
- package/chat/dialog/dialogAgents.ts +72 -0
- package/chat/dialog/dialogAttachmentCleanup.ts +135 -0
- package/chat/dialog/dialogSlice.ts +985 -0
- package/chat/dialog/dialogTitle.ts +81 -0
- package/chat/dialog/dialogTokenStats.ts +12 -0
- package/chat/dialog/dialogUrl.ts +6 -0
- package/chat/dialog/goal.ts +108 -0
- package/chat/dialog/objectAssistantRegistry.ts +286 -0
- package/chat/dialog/schedule.ts +17 -0
- package/chat/messages/activityCompletion.ts +97 -0
- package/chat/messages/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/imagePayloadPersistence.ts +22 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +203 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1386 -0
- package/chat/messages/toolThunks.ts +646 -0
- package/chat/messages/types.ts +8 -1
- package/chat/messages/web/toolDisplayName.ts +686 -0
- package/cli/agentAliases.ts +29 -9
- package/cli/agentInternalCommandEntries.ts +11 -3
- package/cli/agentMachineCommands.ts +1 -0
- package/cli/agentRecordCommands.ts +2 -2
- package/cli/agentRecordHelpers.ts +59 -6
- package/cli/agentRunCommand.ts +84 -19
- package/cli/client/agentRun.ts +92 -261
- package/cli/client/localRuntimeAdapter.ts +292 -50
- package/cli/commandRegistry.ts +7 -4
- package/cli/dialogAttachmentCleanup.ts +151 -0
- package/cli/dialogCommands.ts +163 -61
- package/cli/dialogInternalCommandEntries.ts +1 -1
- package/cli/docCreateCommands.ts +345 -0
- package/cli/docInternalCommandEntries.ts +11 -0
- package/cli/docPageHelpers.ts +80 -0
- package/cli/docSkillHelpers.ts +67 -0
- package/cli/docSpaceHelpers.ts +46 -0
- package/cli/internalCommandEntries.ts +4 -0
- package/cli/machineCommands.ts +18 -34
- package/cli/memoryCommands.ts +253 -0
- package/cli/memoryInternalCommandEntries.ts +9 -0
- package/cli/qoderUsageProbe.ts +252 -0
- package/cli/scriptCommandEntries.ts +0 -3
- package/cli/secretScan.ts +31 -0
- package/cli/tableCommands.ts +248 -13
- package/cli/workflowInternalCommandEntries.ts +2 -3
- package/client/agentRun.test.ts +119 -83
- package/client/agentRun.ts +92 -261
- package/client/localRuntimeAdapter.test.ts +894 -32
- package/client/localRuntimeAdapter.ts +292 -50
- package/commandRegistry.ts +7 -4
- package/connector-experimental/capabilities.ts +10 -9
- package/core/builtinAgents.ts +209 -0
- package/core/config.ts +15 -0
- package/core/crypto.ts +51 -0
- package/core/generateKeyPairFromSeedV1.ts +15 -0
- package/core/generateMainKey.ts +22 -0
- package/core/init.ts +41 -0
- package/core/localOrigins.ts +8 -0
- package/core/password.ts +13 -0
- package/core/prefix.ts +23 -0
- package/create/editor/transforms/fromMarkdown/index.ts +260 -0
- package/create/editor/transforms/fromMarkdown/inline.ts +285 -0
- package/create/editor/transforms/fromMarkdown/table.ts +130 -0
- package/create/editor/transforms/markdownToSlate.ts +24 -0
- package/create/editor/transforms/slateToRenderMarkdown.ts +218 -0
- package/create/editor/transforms/slateToSimplifiedMarkdown.ts +224 -0
- package/create/editor/transforms/slateToText.ts +33 -0
- package/create/editor/utils/slateUtils.ts +233 -0
- package/create/space/addSpaceAction.ts +193 -0
- package/create/space/category/categoryActions.ts +427 -0
- package/create/space/changeSpaceAction.ts +36 -0
- package/create/space/constants.ts +8 -0
- package/create/space/content/addContentAction.ts +116 -0
- package/create/space/content/contentThunks.ts +90 -0
- package/create/space/content/deleteContentFromSpaceAction.ts +187 -0
- package/create/space/content/deleteMultipleContentAction.ts +112 -0
- package/create/space/content/moveContentAction.ts +285 -0
- package/create/space/content/updateContentCategoryAction.ts +154 -0
- package/create/space/content/updateContentTitleAction.ts +151 -0
- package/create/space/content/uploadAndAddFileToSpaceAction.ts +98 -0
- package/create/space/contentKeyUtils.ts +117 -0
- package/create/space/deleteSpaceAction.ts +276 -0
- package/create/space/fetchSpaceAction.ts +70 -0
- package/create/space/fetchSpaceSidebarStateAction.ts +26 -0
- package/create/space/loadDefaultSpaceAction.ts +57 -0
- package/create/space/member/addMemberAction.ts +79 -0
- package/create/space/member/fetchUserSpaceMembershipsAction.ts +386 -0
- package/create/space/member/memberThunks.ts +47 -0
- package/create/space/member/removeMemberAction.ts +67 -0
- package/create/space/resolvePreferredSpaceId.ts +113 -0
- package/create/space/sidebarVisibleTypes.ts +260 -0
- package/create/space/space.locale.ts +1087 -0
- package/create/space/spaceAccess.ts +182 -0
- package/create/space/spaceCollapsedState.ts +54 -0
- package/create/space/spaceKeys.ts +65 -0
- package/create/space/spaceSlice.ts +328 -0
- package/create/space/spaceThunks.ts +410 -0
- package/create/space/types.ts +27 -0
- package/create/space/updateSpaceAction.ts +107 -0
- package/create/space/utils/permissions.ts +47 -0
- package/create/types.ts +21 -0
- package/database/actions/agentReadResolution.ts +33 -0
- package/database/actions/common.ts +243 -0
- package/database/actions/deleteFile.ts +40 -0
- package/database/actions/fileContent.ts +125 -0
- package/database/actions/patch.ts +155 -0
- package/database/actions/read.ts +358 -0
- package/database/actions/readAndWait.ts +260 -0
- package/database/actions/readRequestManager.ts +120 -0
- package/database/actions/readResolution.ts +125 -0
- package/database/actions/remove.ts +94 -0
- package/database/actions/replication.ts +477 -0
- package/database/actions/upload.ts +186 -0
- package/database/actions/upsert.ts +56 -0
- package/database/actions/write.ts +146 -0
- package/database/authority/ownerKey.ts +80 -0
- package/database/authority/recordAuthority.ts +67 -0
- package/database/authority/userAuthorityRegistry.ts +54 -0
- package/database/client/fetchUserData.ts +61 -0
- package/database/dbActionThunks.ts +1 -0
- package/database/dbSlice.ts +149 -0
- package/database/fileRing.ts +51 -0
- package/database/fileStorage.ts +232 -0
- package/database/fileUrl.ts +34 -0
- package/database/keys.ts +767 -0
- package/database/queryPrefixes.ts +14 -0
- package/database/requests.ts +443 -0
- package/database/runtimeServerContext.ts +54 -0
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -0
- package/dialogAttachmentCleanup.ts +151 -0
- package/dialogCommands.ts +163 -61
- package/dialogInternalCommandEntries.ts +1 -1
- package/docCreateCommands.ts +345 -0
- package/docInternalCommandEntries.ts +11 -0
- package/docPageHelpers.ts +80 -0
- package/docSkillHelpers.ts +67 -0
- package/docSpaceHelpers.ts +46 -0
- package/integrations/anthropic/anthropicModels.ts +47 -0
- package/integrations/deepseek/models.ts +37 -0
- package/integrations/google/models.ts +341 -0
- package/integrations/openai/chatCompletionStreamMode.ts +10 -0
- package/integrations/openai/filterAndCleanMessages.ts +284 -0
- package/integrations/openai/flexTier.ts +102 -0
- package/integrations/openai/generateOpenAIRequestBody.ts +271 -0
- package/integrations/openai/generateResponseRequestBody.ts +77 -0
- package/integrations/openai/models.ts +271 -0
- package/integrations/openai/providerBodyCompatibility.ts +23 -0
- package/integrations/openai/responsesHelpers.ts +297 -0
- package/integrations/x-reader/types.ts +109 -0
- package/integrations/xai/models.ts +13 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +277 -0
- package/integrations/xhs-reader/url.ts +80 -0
- package/internalCommandEntries.ts +4 -0
- package/machineCommands.ts +18 -34
- package/memoryCommands.ts +253 -0
- package/memoryInternalCommandEntries.ts +9 -0
- package/package.json +454 -9
- package/qoderUsageProbe.ts +252 -0
- package/render/contentIcon/types.ts +167 -0
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +495 -0
- package/render/page/types.ts +19 -0
- package/render/table/createTableAction.ts +274 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1167 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +262 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/scriptCommandEntries.ts +0 -3
- package/secretScan.ts +31 -0
- package/server/handlers/agentRun/types.ts +105 -0
- package/share/action.ts +225 -0
- package/share/helpers.ts +302 -0
- package/share/keys.ts +243 -0
- package/share/publicSharePolicy.ts +27 -0
- package/share/shareSlice.ts +53 -0
- package/share/types.ts +100 -0
- package/tableCommands.ts +248 -13
- package/workflowInternalCommandEntries.ts +2 -3
- package/ai/tools/agent/taskRunTool.ts +0 -112
- package/cli/client/taskRunPrompt.ts +0 -27
- package/cli/taskRunCommand.ts +0 -265
- package/client/taskRunPrompt.ts +0 -27
- package/taskRunCommand.ts +0 -265
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
// 文件路径: app/spaces/fetchUserSpaceMembershipsAction.ts
|
|
2
|
+
|
|
3
|
+
import type { AppThunkApi } from "../../../app/store";
|
|
4
|
+
import type { SpaceMemberWithSpaceInfo } from "../../../app/types";
|
|
5
|
+
import { createSpaceKey, normalizeSpaceId } from "../../space/spaceKeys";
|
|
6
|
+
import {
|
|
7
|
+
fetchRemoteSpace,
|
|
8
|
+
fetchRemoteUserSpaceMemberships,
|
|
9
|
+
membershipBelongsToUser,
|
|
10
|
+
selectSpaceRemoteAuth,
|
|
11
|
+
spaceListsUser,
|
|
12
|
+
} from "../../space/spaceAccess";
|
|
13
|
+
import { DataType } from "../../types";
|
|
14
|
+
import { API_ENDPOINTS } from "../../../database/config";
|
|
15
|
+
import { readAction } from "../../../database/actions/read";
|
|
16
|
+
import { isTombstoneRecord } from "../../../database/tombstones";
|
|
17
|
+
|
|
18
|
+
type MembershipWithSource = SpaceMemberWithSpaceInfo & {
|
|
19
|
+
sourceServer?: string;
|
|
20
|
+
requiresRemoteSpaceVerification?: boolean;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
const CONTENT_SPACE_RECOVERY_TYPES = [
|
|
24
|
+
DataType.APP,
|
|
25
|
+
DataType.DOC,
|
|
26
|
+
DataType.DIALOG,
|
|
27
|
+
DataType.IMAGE,
|
|
28
|
+
DataType.FILE,
|
|
29
|
+
DataType.TABLE,
|
|
30
|
+
DataType.AGENT,
|
|
31
|
+
DataType.CYBOT,
|
|
32
|
+
] as const;
|
|
33
|
+
|
|
34
|
+
const readLocalSpaceData = async (db: any, spaceId: string): Promise<any | null> => {
|
|
35
|
+
const normalizedSpaceId = normalizeSpaceId(spaceId);
|
|
36
|
+
const spaceKey = createSpaceKey.space(normalizedSpaceId);
|
|
37
|
+
try {
|
|
38
|
+
return (await db.get(spaceKey)) ?? null;
|
|
39
|
+
} catch {
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const buildLocalMembershipPreview = async (
|
|
45
|
+
userId: string,
|
|
46
|
+
db: any,
|
|
47
|
+
memberships: SpaceMemberWithSpaceInfo[]
|
|
48
|
+
): Promise<SpaceMemberWithSpaceInfo[]> => {
|
|
49
|
+
const preview = await Promise.all(
|
|
50
|
+
memberships.map(async (membership) => {
|
|
51
|
+
if (isTombstoneRecord(membership)) return null;
|
|
52
|
+
if (!membershipBelongsToUser(membership, userId)) return null;
|
|
53
|
+
|
|
54
|
+
const normalizedSpaceId = normalizeSpaceId(membership.spaceId);
|
|
55
|
+
const localSpaceData = await readLocalSpaceData(db, normalizedSpaceId);
|
|
56
|
+
if (localSpaceData && isTombstoneRecord(localSpaceData)) return null;
|
|
57
|
+
if (localSpaceData && !spaceListsUser(localSpaceData, userId)) return null;
|
|
58
|
+
|
|
59
|
+
return {
|
|
60
|
+
...membership,
|
|
61
|
+
spaceId: normalizedSpaceId,
|
|
62
|
+
};
|
|
63
|
+
})
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
return preview.filter(
|
|
67
|
+
(membership): membership is SpaceMemberWithSpaceInfo => !!membership
|
|
68
|
+
);
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* 从本地 IndexedDB 获取数据
|
|
73
|
+
*/
|
|
74
|
+
const fetchLocal = async (
|
|
75
|
+
userId: string,
|
|
76
|
+
db: any
|
|
77
|
+
): Promise<SpaceMemberWithSpaceInfo[]> => {
|
|
78
|
+
try {
|
|
79
|
+
const memberships: SpaceMemberWithSpaceInfo[] = [];
|
|
80
|
+
const prefix = `space-member-${userId}`;
|
|
81
|
+
let iterator = db.iterator({
|
|
82
|
+
gte: prefix,
|
|
83
|
+
lte: prefix + "\xff",
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
if (iterator && typeof iterator.then === 'function') {
|
|
87
|
+
iterator = await iterator;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
for await (const [_, memberData] of iterator) {
|
|
91
|
+
if (
|
|
92
|
+
memberData &&
|
|
93
|
+
typeof memberData === "object" &&
|
|
94
|
+
memberData.spaceId &&
|
|
95
|
+
!isTombstoneRecord(memberData)
|
|
96
|
+
) {
|
|
97
|
+
memberships.push(memberData);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
return memberships;
|
|
102
|
+
} catch (error) {
|
|
103
|
+
console.error("Error fetching local memberships:", error);
|
|
104
|
+
return [];
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
const fetchRemoteContentSpaceIds = async (
|
|
109
|
+
server: string,
|
|
110
|
+
userId: string
|
|
111
|
+
): Promise<string[]> => {
|
|
112
|
+
try {
|
|
113
|
+
const queryParams = new URLSearchParams({ limit: "200" });
|
|
114
|
+
const response = await fetch(
|
|
115
|
+
`${server}${API_ENDPOINTS.DATABASE}/query/${encodeURIComponent(userId)}?${queryParams}`,
|
|
116
|
+
{
|
|
117
|
+
method: "POST",
|
|
118
|
+
headers: {
|
|
119
|
+
"Content-Type": "application/json",
|
|
120
|
+
},
|
|
121
|
+
body: JSON.stringify({
|
|
122
|
+
type: [...CONTENT_SPACE_RECOVERY_TYPES],
|
|
123
|
+
includeDeleted: true,
|
|
124
|
+
summary: true,
|
|
125
|
+
}),
|
|
126
|
+
}
|
|
127
|
+
);
|
|
128
|
+
if (!response.ok) return [];
|
|
129
|
+
const data = await response.json();
|
|
130
|
+
const records = Array.isArray(data?.data?.data) ? data.data.data : [];
|
|
131
|
+
return records
|
|
132
|
+
.filter((record: any) => !isTombstoneRecord(record))
|
|
133
|
+
.map((record: any) =>
|
|
134
|
+
typeof record?.spaceId === "string" ? normalizeSpaceId(record.spaceId) : ""
|
|
135
|
+
)
|
|
136
|
+
.filter((spaceId: string) => spaceId.length > 0);
|
|
137
|
+
} catch {
|
|
138
|
+
return [];
|
|
139
|
+
}
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
const recoverMembershipsFromContentSpaces = async ({
|
|
143
|
+
servers,
|
|
144
|
+
token,
|
|
145
|
+
userId,
|
|
146
|
+
knownSpaceIds,
|
|
147
|
+
}: {
|
|
148
|
+
servers: string[];
|
|
149
|
+
token: string | null;
|
|
150
|
+
userId: string;
|
|
151
|
+
knownSpaceIds: Set<string>;
|
|
152
|
+
}): Promise<MembershipWithSource[]> => {
|
|
153
|
+
const candidateSpaceIds = new Set<string>();
|
|
154
|
+
await Promise.all(
|
|
155
|
+
servers.map(async (server) => {
|
|
156
|
+
const spaceIds = await fetchRemoteContentSpaceIds(server, userId);
|
|
157
|
+
spaceIds.forEach((spaceId) => {
|
|
158
|
+
if (!knownSpaceIds.has(spaceId)) {
|
|
159
|
+
candidateSpaceIds.add(spaceId);
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
})
|
|
163
|
+
);
|
|
164
|
+
|
|
165
|
+
const recovered: MembershipWithSource[] = [];
|
|
166
|
+
for (const spaceId of candidateSpaceIds) {
|
|
167
|
+
for (const server of servers) {
|
|
168
|
+
const remoteSpace = await fetchRemoteSpace(server, token, spaceId);
|
|
169
|
+
if (!spaceListsUser(remoteSpace, userId)) continue;
|
|
170
|
+
recovered.push({
|
|
171
|
+
userId,
|
|
172
|
+
spaceId,
|
|
173
|
+
spaceName:
|
|
174
|
+
typeof remoteSpace?.name === "string" && remoteSpace.name.trim()
|
|
175
|
+
? remoteSpace.name
|
|
176
|
+
: spaceId,
|
|
177
|
+
role: remoteSpace?.ownerId === userId ? "owner" : "member",
|
|
178
|
+
joinedAt:
|
|
179
|
+
remoteSpace?.updatedAt ??
|
|
180
|
+
remoteSpace?.createdAt ??
|
|
181
|
+
Date.now(),
|
|
182
|
+
sourceServer: server,
|
|
183
|
+
} as MembershipWithSource);
|
|
184
|
+
break;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
return recovered;
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* 获取用户的所有空间成员资格。
|
|
192
|
+
*/
|
|
193
|
+
export const fetchUserSpaceMembershipsAction = async (
|
|
194
|
+
userId: string,
|
|
195
|
+
thunkAPI: AppThunkApi
|
|
196
|
+
): Promise<SpaceMemberWithSpaceInfo[]> => {
|
|
197
|
+
const state = thunkAPI.getState();
|
|
198
|
+
const db = thunkAPI.extra.db;
|
|
199
|
+
const { token, servers } = selectSpaceRemoteAuth(state);
|
|
200
|
+
|
|
201
|
+
const localMembershipsPromise = fetchLocal(userId, db);
|
|
202
|
+
const remoteResultsPromise = Promise.all(
|
|
203
|
+
servers.map((server) =>
|
|
204
|
+
fetchRemoteUserSpaceMemberships(server, token, userId)
|
|
205
|
+
)
|
|
206
|
+
);
|
|
207
|
+
|
|
208
|
+
const localMemberships = await localMembershipsPromise;
|
|
209
|
+
if (state.space?.memberSpaces === null && localMemberships.length > 0) {
|
|
210
|
+
const localPreview = await buildLocalMembershipPreview(
|
|
211
|
+
userId,
|
|
212
|
+
db,
|
|
213
|
+
localMemberships
|
|
214
|
+
);
|
|
215
|
+
thunkAPI.dispatch?.({
|
|
216
|
+
type: "space/hydrateMemberSpacesFromLocal",
|
|
217
|
+
payload: localPreview,
|
|
218
|
+
});
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const remoteResults = await remoteResultsPromise;
|
|
222
|
+
|
|
223
|
+
const successfulRemoteResults = remoteResults.filter((result) => result.ok);
|
|
224
|
+
const successfulRemoteMemberships = successfulRemoteResults.flatMap(
|
|
225
|
+
(result) =>
|
|
226
|
+
result.memberships.map((membership) => ({
|
|
227
|
+
...membership,
|
|
228
|
+
sourceServer: result.server,
|
|
229
|
+
}))
|
|
230
|
+
);
|
|
231
|
+
const hasSuccessfulRemoteFetch = successfulRemoteResults.length > 0;
|
|
232
|
+
const hasRemoteAuthority = !!token && servers.length > 0;
|
|
233
|
+
|
|
234
|
+
if (hasRemoteAuthority && !hasSuccessfulRemoteFetch) {
|
|
235
|
+
throw new Error(
|
|
236
|
+
`space_membership_remote_unavailable: unable to refresh memberships from ${servers.join(", ")}`
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
const remoteSpaceIds = new Set(
|
|
241
|
+
successfulRemoteMemberships.map((membership) =>
|
|
242
|
+
normalizeSpaceId(membership.spaceId)
|
|
243
|
+
)
|
|
244
|
+
);
|
|
245
|
+
|
|
246
|
+
const filteredLocalMemberships: MembershipWithSource[] = hasSuccessfulRemoteFetch
|
|
247
|
+
? (
|
|
248
|
+
await Promise.all(
|
|
249
|
+
localMemberships.map(async (membership) => {
|
|
250
|
+
const normalizedSpaceId = normalizeSpaceId(membership.spaceId);
|
|
251
|
+
|
|
252
|
+
if (remoteSpaceIds.has(normalizedSpaceId)) {
|
|
253
|
+
return {
|
|
254
|
+
...membership,
|
|
255
|
+
spaceId: normalizedSpaceId,
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
console.warn(
|
|
260
|
+
`[SpaceMembership] Membership missing from remote index, verifying space record: user=${userId}, spaceId=${normalizedSpaceId}`
|
|
261
|
+
);
|
|
262
|
+
return {
|
|
263
|
+
...membership,
|
|
264
|
+
spaceId: normalizedSpaceId,
|
|
265
|
+
requiresRemoteSpaceVerification: true,
|
|
266
|
+
};
|
|
267
|
+
})
|
|
268
|
+
)
|
|
269
|
+
).filter((membership): membership is MembershipWithSource => !!membership)
|
|
270
|
+
: localMemberships.map((membership) => ({
|
|
271
|
+
...membership,
|
|
272
|
+
spaceId: normalizeSpaceId(membership.spaceId),
|
|
273
|
+
}));
|
|
274
|
+
|
|
275
|
+
const verifyActiveSpaceMembership = async (
|
|
276
|
+
membership: MembershipWithSource
|
|
277
|
+
): Promise<SpaceMemberWithSpaceInfo | null> => {
|
|
278
|
+
if (isTombstoneRecord(membership)) return null;
|
|
279
|
+
if (!membershipBelongsToUser(membership, userId)) return null;
|
|
280
|
+
|
|
281
|
+
const normalizedSpaceId = normalizeSpaceId(membership.spaceId);
|
|
282
|
+
const localSpaceData = await readLocalSpaceData(db, normalizedSpaceId);
|
|
283
|
+
if (membership.sourceServer || membership.requiresRemoteSpaceVerification) {
|
|
284
|
+
if (localSpaceData && isTombstoneRecord(localSpaceData)) return null;
|
|
285
|
+
try {
|
|
286
|
+
const remoteSpaceServers = Array.from(
|
|
287
|
+
new Set(
|
|
288
|
+
[membership.sourceServer, ...servers].filter(
|
|
289
|
+
(server): server is string =>
|
|
290
|
+
typeof server === "string" && server.length > 0
|
|
291
|
+
)
|
|
292
|
+
)
|
|
293
|
+
);
|
|
294
|
+
let remoteSpace: any | null = null;
|
|
295
|
+
for (const server of remoteSpaceServers) {
|
|
296
|
+
remoteSpace = await fetchRemoteSpace(
|
|
297
|
+
server,
|
|
298
|
+
token,
|
|
299
|
+
normalizedSpaceId
|
|
300
|
+
);
|
|
301
|
+
if (remoteSpace) break;
|
|
302
|
+
}
|
|
303
|
+
if (!spaceListsUser(remoteSpace, userId)) return null;
|
|
304
|
+
const { requiresRemoteSpaceVerification, ...verifiedMembership } = membership;
|
|
305
|
+
return {
|
|
306
|
+
...verifiedMembership,
|
|
307
|
+
spaceId: normalizedSpaceId,
|
|
308
|
+
};
|
|
309
|
+
} catch {
|
|
310
|
+
return null;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
if (localSpaceData) {
|
|
315
|
+
return !spaceListsUser(localSpaceData, userId)
|
|
316
|
+
? null
|
|
317
|
+
: {
|
|
318
|
+
...membership,
|
|
319
|
+
spaceId: normalizedSpaceId,
|
|
320
|
+
};
|
|
321
|
+
}
|
|
322
|
+
if (!membership.sourceServer && servers.length === 0) {
|
|
323
|
+
return {
|
|
324
|
+
...membership,
|
|
325
|
+
spaceId: normalizedSpaceId,
|
|
326
|
+
};
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
try {
|
|
330
|
+
const remoteSpace = await readAction(
|
|
331
|
+
{
|
|
332
|
+
dbKey: createSpaceKey.space(normalizedSpaceId),
|
|
333
|
+
preferredServerOrigin: membership.sourceServer,
|
|
334
|
+
},
|
|
335
|
+
thunkAPI
|
|
336
|
+
);
|
|
337
|
+
if (!spaceListsUser(remoteSpace, userId)) return null;
|
|
338
|
+
return {
|
|
339
|
+
...membership,
|
|
340
|
+
spaceId: normalizedSpaceId,
|
|
341
|
+
};
|
|
342
|
+
} catch {
|
|
343
|
+
return null;
|
|
344
|
+
}
|
|
345
|
+
};
|
|
346
|
+
|
|
347
|
+
const activeMemberships = (
|
|
348
|
+
await Promise.all(
|
|
349
|
+
[...filteredLocalMemberships, ...successfulRemoteMemberships].map(
|
|
350
|
+
verifyActiveSpaceMembership
|
|
351
|
+
)
|
|
352
|
+
)
|
|
353
|
+
).filter((membership): membership is SpaceMemberWithSpaceInfo => !!membership);
|
|
354
|
+
|
|
355
|
+
const knownSpaceIds = new Set(
|
|
356
|
+
[
|
|
357
|
+
...filteredLocalMemberships,
|
|
358
|
+
...successfulRemoteMemberships,
|
|
359
|
+
...activeMemberships,
|
|
360
|
+
].map((membership) => normalizeSpaceId(membership.spaceId))
|
|
361
|
+
);
|
|
362
|
+
const recoveredMemberships =
|
|
363
|
+
hasRemoteAuthority && hasSuccessfulRemoteFetch
|
|
364
|
+
? await recoverMembershipsFromContentSpaces({
|
|
365
|
+
servers,
|
|
366
|
+
token,
|
|
367
|
+
userId,
|
|
368
|
+
knownSpaceIds,
|
|
369
|
+
})
|
|
370
|
+
: [];
|
|
371
|
+
|
|
372
|
+
const membershipMap = new Map<string, SpaceMemberWithSpaceInfo>();
|
|
373
|
+
[...activeMemberships, ...recoveredMemberships].forEach((membership) => {
|
|
374
|
+
const normalizedSpaceId = normalizeSpaceId(membership.spaceId);
|
|
375
|
+
const { sourceServer, ...visibleMembership } = membership as MembershipWithSource;
|
|
376
|
+
membershipMap.set(normalizedSpaceId, {
|
|
377
|
+
...visibleMembership,
|
|
378
|
+
spaceId: normalizedSpaceId,
|
|
379
|
+
});
|
|
380
|
+
});
|
|
381
|
+
|
|
382
|
+
const finalMemberships = Array.from(membershipMap.values()).sort(
|
|
383
|
+
(a, b) => (b.joinedAt || 0) - (a.joinedAt || 0)
|
|
384
|
+
);
|
|
385
|
+
return finalMemberships;
|
|
386
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// create/space/member/memberThunks.ts
|
|
2
|
+
import { asyncThunkCreator } from "@reduxjs/toolkit";
|
|
3
|
+
import type { SpaceState } from "../spaceSlice"; // Adjust path
|
|
4
|
+
import { fetchUserSpaceMembershipsAction } from "./fetchUserSpaceMembershipsAction";
|
|
5
|
+
import { addMemberAction } from "./addMemberAction";
|
|
6
|
+
import { removeMemberAction } from "./removeMemberAction";
|
|
7
|
+
|
|
8
|
+
type Create = ReturnType<typeof asyncThunkCreator<SpaceState>>;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 创建与成员相关的 Async Thunks
|
|
12
|
+
* @param create - 由 buildCreateSlice 提供的创建器对象
|
|
13
|
+
*/
|
|
14
|
+
export const createMemberThunks = (create: Create) => ({
|
|
15
|
+
fetchUserSpaceMemberships: create.asyncThunk(
|
|
16
|
+
fetchUserSpaceMembershipsAction,
|
|
17
|
+
{
|
|
18
|
+
pending: (state) => {
|
|
19
|
+
state.loading = true;
|
|
20
|
+
},
|
|
21
|
+
fulfilled: (state, action) => {
|
|
22
|
+
state.memberSpaces = action.payload;
|
|
23
|
+
state.loading = false;
|
|
24
|
+
},
|
|
25
|
+
rejected: (state, action) => {
|
|
26
|
+
state.loading = false;
|
|
27
|
+
state.error = action.error.message;
|
|
28
|
+
},
|
|
29
|
+
}
|
|
30
|
+
),
|
|
31
|
+
|
|
32
|
+
addMember: create.asyncThunk(addMemberAction, {
|
|
33
|
+
fulfilled: (state, action) => {
|
|
34
|
+
if (state.currentSpaceId === action.payload.spaceId) {
|
|
35
|
+
state.currentSpace = action.payload.updatedSpaceData;
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
|
|
40
|
+
removeMember: create.asyncThunk(removeMemberAction, {
|
|
41
|
+
fulfilled: (state, action) => {
|
|
42
|
+
if (state.currentSpaceId === action.payload.spaceId) {
|
|
43
|
+
state.currentSpace = action.payload.updatedSpaceData;
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
}),
|
|
47
|
+
});
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type { ULID } from "../../../app/types";
|
|
2
|
+
import type { SpaceData } from "../../../app/types";
|
|
3
|
+
import { selectUserId } from "../../../auth/authSlice";
|
|
4
|
+
import { createSpaceKey, normalizeSpaceId } from "../../space/spaceKeys";
|
|
5
|
+
import { read, write, remove } from "../../../database/dbSlice"; // 使用 remove
|
|
6
|
+
import {
|
|
7
|
+
persistDefaultSpacePreference,
|
|
8
|
+
readDefaultSpaceIdPreference,
|
|
9
|
+
} from "../../../app/settings/defaultSpacePreference";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* 从空间中删除成员
|
|
13
|
+
*
|
|
14
|
+
* 说明:
|
|
15
|
+
* 1. 当前用户必须是该空间的 owner,才能进行删除操作;
|
|
16
|
+
* 2. 待删除的成员必须存在于空间中,否则直接报错;
|
|
17
|
+
* 3. 更新 SpaceData.members 数组,删除对应的 SpaceMemberWithSpaceInfo 数据,并更新 updatedAt 字段。
|
|
18
|
+
*/
|
|
19
|
+
export const removeMemberAction = async (
|
|
20
|
+
input: { spaceId: ULID; memberId: string },
|
|
21
|
+
thunkAPI: any
|
|
22
|
+
): Promise<{ spaceId: ULID; updatedSpaceData: SpaceData }> => {
|
|
23
|
+
const { spaceId, memberId } = input;
|
|
24
|
+
const { dispatch, getState } = thunkAPI;
|
|
25
|
+
const state = getState();
|
|
26
|
+
const currentUserId = selectUserId(state);
|
|
27
|
+
|
|
28
|
+
const spaceKey = createSpaceKey.space(spaceId);
|
|
29
|
+
const spaceData: SpaceData | null = await dispatch(read({
|
|
30
|
+
dbKey: spaceKey
|
|
31
|
+
})).unwrap();
|
|
32
|
+
|
|
33
|
+
if (!spaceData) {
|
|
34
|
+
throw new Error("Space not found");
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// 检查当前用户是否是 owner
|
|
38
|
+
if (spaceData.ownerId !== currentUserId) {
|
|
39
|
+
throw new Error("只有空间所有者才能删除成员");
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// 检查待删除的成员是否存在
|
|
43
|
+
if (!spaceData.members.includes(memberId)) {
|
|
44
|
+
throw new Error("待删除的成员不存在");
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// 更新 SpaceData,移除成员
|
|
48
|
+
const updatedSpaceData: SpaceData = {
|
|
49
|
+
...spaceData,
|
|
50
|
+
members: spaceData.members.filter((id) => id !== memberId),
|
|
51
|
+
updatedAt: Date.now(),
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
// 删除对应的 SpaceMemberWithSpaceInfo 数据
|
|
55
|
+
const memberKey = createSpaceKey.member(memberId, spaceId);
|
|
56
|
+
await Promise.all([
|
|
57
|
+
dispatch(write({ data: updatedSpaceData, customKey: spaceKey })).unwrap(),
|
|
58
|
+
dispatch(remove(memberKey)).unwrap(), // 使用 remove 替代 del
|
|
59
|
+
]);
|
|
60
|
+
|
|
61
|
+
const defaultSpaceId = await readDefaultSpaceIdPreference(dispatch, memberId);
|
|
62
|
+
if (defaultSpaceId && normalizeSpaceId(defaultSpaceId) === normalizeSpaceId(spaceId)) {
|
|
63
|
+
await persistDefaultSpacePreference(dispatch, memberId, null);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return { spaceId, updatedSpaceData };
|
|
67
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { RootState } from "../../app/store";
|
|
2
|
+
import { readDefaultSpaceIdPreference } from "../../app/settings/defaultSpacePreference";
|
|
3
|
+
import { read, readAndWait } from "../../database/dbSlice";
|
|
4
|
+
|
|
5
|
+
import { createSpaceKey } from "./spaceKeys";
|
|
6
|
+
|
|
7
|
+
const isAbortError = (error: unknown): boolean =>
|
|
8
|
+
error instanceof DOMException
|
|
9
|
+
? error.name === "AbortError"
|
|
10
|
+
: typeof error === "object" &&
|
|
11
|
+
error !== null &&
|
|
12
|
+
"name" in error &&
|
|
13
|
+
error.name === "AbortError";
|
|
14
|
+
|
|
15
|
+
const isSuppressedMissError = (error: unknown): boolean =>
|
|
16
|
+
typeof error === "object" &&
|
|
17
|
+
error !== null &&
|
|
18
|
+
"message" in error &&
|
|
19
|
+
typeof error.message === "string" &&
|
|
20
|
+
(error.message.includes("temporarily suppressed") ||
|
|
21
|
+
error.message.includes("miss suppressed"));
|
|
22
|
+
|
|
23
|
+
export const readSpaceIfExists = async (
|
|
24
|
+
dispatch: any,
|
|
25
|
+
spaceId?: string | null
|
|
26
|
+
): Promise<string | null> => {
|
|
27
|
+
if (!spaceId) {
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
try {
|
|
32
|
+
const result = await dispatch(
|
|
33
|
+
read({
|
|
34
|
+
dbKey: createSpaceKey.space(spaceId),
|
|
35
|
+
})
|
|
36
|
+
).unwrap();
|
|
37
|
+
|
|
38
|
+
if (result) {
|
|
39
|
+
return spaceId;
|
|
40
|
+
}
|
|
41
|
+
} catch (error) {
|
|
42
|
+
if (isAbortError(error)) {
|
|
43
|
+
throw error;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (!isSuppressedMissError(error)) {
|
|
47
|
+
console.info(
|
|
48
|
+
`[resolvePreferredSpaceId] Optimistic read failed for ${spaceId}, retrying with readAndWait:`,
|
|
49
|
+
error
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
try {
|
|
55
|
+
const result = await dispatch(
|
|
56
|
+
readAndWait(createSpaceKey.space(spaceId))
|
|
57
|
+
).unwrap();
|
|
58
|
+
return result ? spaceId : null;
|
|
59
|
+
} catch (error) {
|
|
60
|
+
if (isAbortError(error)) {
|
|
61
|
+
throw error;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
console.info(
|
|
65
|
+
`[resolvePreferredSpaceId] Confirming space existence failed for ${spaceId}:`,
|
|
66
|
+
error
|
|
67
|
+
);
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export const resolvePreferredSpaceId = async ({
|
|
73
|
+
dispatch,
|
|
74
|
+
getState,
|
|
75
|
+
userId,
|
|
76
|
+
}: {
|
|
77
|
+
dispatch: any;
|
|
78
|
+
getState: () => RootState;
|
|
79
|
+
userId?: string | null;
|
|
80
|
+
}): Promise<string | null> => {
|
|
81
|
+
const state = getState();
|
|
82
|
+
|
|
83
|
+
if (state.space.currentSpaceId) {
|
|
84
|
+
return state.space.currentSpaceId;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const candidates: string[] = [];
|
|
88
|
+
const pushCandidate = (spaceId?: string | null) => {
|
|
89
|
+
if (!spaceId) return;
|
|
90
|
+
if (candidates.includes(spaceId)) return;
|
|
91
|
+
candidates.push(spaceId);
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
pushCandidate(
|
|
95
|
+
await readDefaultSpaceIdPreference(
|
|
96
|
+
dispatch,
|
|
97
|
+
userId ?? state.auth?.currentUser?.userId ?? null
|
|
98
|
+
)
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
for (const memberSpace of state.space.memberSpaces || []) {
|
|
102
|
+
pushCandidate(memberSpace?.spaceId);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
for (const candidate of candidates) {
|
|
106
|
+
const readableSpaceId = await readSpaceIfExists(dispatch, candidate);
|
|
107
|
+
if (readableSpaceId) {
|
|
108
|
+
return readableSpaceId;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return null;
|
|
113
|
+
};
|