@taskforcehq/taskforce 0.3.305 → 0.3.306
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Taskforce.module.css +295 -89
- package/dist/TaskforceCore.js +215 -43
- package/dist/TaskforceCore.test.js +433 -28
- package/dist/assets/fonts/CourierPrime-Bold.woff2 +0 -0
- package/dist/assets/fonts/CourierPrime-BoldItalic.woff2 +0 -0
- package/dist/assets/fonts/CourierPrime-Italic.woff2 +0 -0
- package/dist/assets/fonts/CourierPrime-Regular.woff2 +0 -0
- package/dist/assets/fonts/Noir_medium.woff2 +0 -0
- package/dist/assets/fonts/Noir_regular.woff2 +0 -0
- package/dist/assets/fonts/RussoOne-Regular.woff2 +0 -0
- package/dist/assets/fonts/SpecialElite-Regular.woff2 +0 -0
- package/dist/compat/workspaceSyncCompat.js +46 -2
- package/dist/compat/workspaceSyncCompat.test.js +38 -1
- package/dist/components/context/ContextAttachmentManager.d.ts +14 -0
- package/dist/components/context/ContextAttachmentManager.js +549 -0
- package/dist/components/features/AgentsModule.d.ts +10 -1
- package/dist/components/features/AgentsModule.js +260 -15
- package/dist/components/features/AgentsModule.test.js +255 -5
- package/dist/components/features/DocumentViewer.d.ts +5 -1
- package/dist/components/features/DocumentViewer.js +60 -3
- package/dist/components/features/DocumentWorkspace.js +1 -1
- package/dist/components/features/DocumentWorkspace.test.js +33 -0
- package/dist/components/features/documentWorkspaceModel.d.ts +1 -1
- package/dist/components/task/TaskCard.js +19 -28
- package/dist/components/task/TaskCard.test.js +38 -3
- package/dist/components/task/TaskContextUpload.js +4 -526
- package/dist/components/task/TaskForm.js +85 -90
- package/dist/components/task/TaskForm.test.js +110 -8
- package/dist/components/task/TaskKanban.d.ts +2 -1
- package/dist/components/task/TaskKanban.js +94 -13
- package/dist/components/task/TaskKanban.test.js +36 -0
- package/dist/components/ui/EditableAvatarButton.d.ts +18 -0
- package/dist/components/ui/EditableAvatarButton.js +18 -0
- package/dist/components/views/PlanComparisonPage.d.ts +9 -1
- package/dist/components/views/PlanComparisonPage.js +70 -14
- package/dist/components/views/PlanComparisonPage.test.js +238 -0
- package/dist/components/views/PlansPage.js +127 -36
- package/dist/components/views/PlansPage.test.js +294 -12
- package/dist/components/views/StandaloneLayout.js +283 -533
- package/dist/components/views/panels/PlanningDrawer.d.ts +8 -1
- package/dist/components/views/panels/PlanningDrawer.js +18 -11
- package/dist/components/views/panels/PlanningDrawer.test.d.ts +1 -0
- package/dist/components/views/panels/PlanningDrawer.test.js +141 -0
- package/dist/components/views/planningScope.d.ts +20 -0
- package/dist/components/views/planningScope.js +25 -0
- package/dist/components/views/planningScope.test.d.ts +1 -0
- package/dist/components/views/planningScope.test.js +60 -0
- package/dist/components/views/standalone/modals/AccountHubModal.d.ts +26 -1
- package/dist/components/views/standalone/modals/AccountHubModal.js +76 -2
- package/dist/components/views/standalone/modals/AccountHubModal.test.js +20 -3
- package/dist/components/views/standalone/modals/AvatarImageManagerModal.d.ts +20 -0
- package/dist/components/views/standalone/modals/AvatarImageManagerModal.js +127 -0
- package/dist/components/views/standalone/modals/EditProfileModal.d.ts +2 -9
- package/dist/components/views/standalone/modals/EditProfileModal.js +3 -2
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.d.ts +9 -0
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.js +6 -0
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.test.d.ts +1 -0
- package/dist/components/views/standalone/modals/SyncEnableWarningModal.test.js +24 -0
- package/dist/components/views/standalone/modals/SyncStatusModal.d.ts +2 -1
- package/dist/components/views/standalone/modals/SyncStatusModal.js +2 -2
- package/dist/core/AiProfileService.d.ts +39 -2
- package/dist/core/AiProfileService.js +639 -73
- package/dist/core/AiProfileService.test.js +19 -1
- package/dist/core/AiProfiles.test.js +566 -7
- package/dist/core/AttachmentLinkService.js +57 -15
- package/dist/core/AuthIdentityService.d.ts +107 -0
- package/dist/core/AuthIdentityService.js +284 -0
- package/dist/core/AuthTokenService.d.ts +4 -0
- package/dist/core/AuthTokenService.js +34 -6
- package/dist/core/AuthTokenService.test.js +3 -3
- package/dist/core/EntitlementsPolicy.test.js +2 -2
- package/dist/core/GlobalSettingsService.js +115 -6
- package/dist/core/PlanEntitlementService.d.ts +23 -2
- package/dist/core/PlanEntitlementService.js +343 -57
- package/dist/core/PlanFeatureCatalog.test.d.ts +1 -0
- package/dist/core/PlanFeatureCatalog.test.js +84 -0
- package/dist/core/PlanVersionPolicy.test.js +35 -2
- package/dist/core/PlanningEntities.test.js +52 -0
- package/dist/core/SignupMonetizationSettings.test.js +199 -27
- package/dist/core/SyncReconciliationService.js +2 -65
- package/dist/core/SystemAdmin.test.js +42 -42
- package/dist/core/TaskAttachmentsCanonical.test.js +51 -1
- package/dist/core/Taskforce.d.ts +225 -14
- package/dist/core/Taskforce.js +765 -192
- package/dist/core/Taskforce.listTasksSlim.test.d.ts +1 -0
- package/dist/core/Taskforce.listTasksSlim.test.js +91 -0
- package/dist/core/UserProfileAvatarDrafts.test.js +30 -3
- package/dist/core/WorkspaceLifecycleService.js +0 -5
- package/dist/core/WorkspacePermissions.test.js +25 -1
- package/dist/core/WorkspacePlanMode.test.js +117 -16
- package/dist/core/shared.d.ts +1 -1
- package/dist/core/shared.js +5 -1
- package/dist/core/types.d.ts +68 -2
- package/dist/hooks/auth/useTaskforceAuthBootstrap.js +26 -1
- package/dist/hooks/sync/bootstrap.js +2 -0
- package/dist/hooks/sync/controlPlane.d.ts +37 -0
- package/dist/hooks/sync/controlPlane.js +78 -0
- package/dist/hooks/sync/controlPlane.test.d.ts +1 -0
- package/dist/hooks/sync/controlPlane.test.js +121 -0
- package/dist/hooks/sync/lifecyclePolicy.d.ts +45 -0
- package/dist/hooks/sync/lifecyclePolicy.js +93 -0
- package/dist/hooks/sync/lifecyclePolicy.test.d.ts +1 -0
- package/dist/hooks/sync/lifecyclePolicy.test.js +124 -0
- package/dist/hooks/sync/orchestratorShared.d.ts +10 -1
- package/dist/hooks/sync/orchestratorShared.js +68 -47
- package/dist/hooks/sync/orchestratorShared.test.js +50 -1
- package/dist/hooks/sync/pullLifecycle.d.ts +31 -0
- package/dist/hooks/sync/pullLifecycle.js +24 -0
- package/dist/hooks/sync/pullLifecycle.test.d.ts +1 -0
- package/dist/hooks/sync/pullLifecycle.test.js +80 -0
- package/dist/hooks/sync/recovery.d.ts +16 -2
- package/dist/hooks/sync/recovery.js +171 -53
- package/dist/hooks/sync/recovery.test.d.ts +1 -0
- package/dist/hooks/sync/recovery.test.js +292 -0
- package/dist/hooks/sync/transfers.d.ts +15 -3
- package/dist/hooks/sync/transfers.js +179 -62
- package/dist/hooks/sync/transfers.test.d.ts +1 -0
- package/dist/hooks/sync/transfers.test.js +396 -0
- package/dist/hooks/sync/useRecentSyncEvents.d.ts +21 -0
- package/dist/hooks/sync/useRecentSyncEvents.js +92 -0
- package/dist/hooks/sync/useRecentSyncEvents.test.d.ts +1 -0
- package/dist/hooks/sync/useRecentSyncEvents.test.js +124 -0
- package/dist/hooks/sync/useSyncStatusActions.d.ts +30 -0
- package/dist/hooks/sync/useSyncStatusActions.js +88 -0
- package/dist/hooks/sync/useSyncStatusActions.test.d.ts +1 -0
- package/dist/hooks/sync/useSyncStatusActions.test.js +133 -0
- package/dist/hooks/sync/useSyncStatusControls.d.ts +25 -0
- package/dist/hooks/sync/useSyncStatusControls.js +60 -0
- package/dist/hooks/sync/useSyncStatusControls.test.d.ts +1 -0
- package/dist/hooks/sync/useSyncStatusControls.test.js +88 -0
- package/dist/hooks/useSyncOrchestrator.aiProfiles.test.js +12 -0
- package/dist/hooks/useSyncOrchestrator.d.ts +9 -2
- package/dist/hooks/useSyncOrchestrator.js +359 -178
- package/dist/hooks/useSyncOrchestrator.retry-closure.test.js +407 -0
- package/dist/hooks/useTaskData.js +8 -3
- package/dist/hooks/useTaskData.test.js +45 -0
- package/dist/hooks/useTaskforce.d.ts +60 -2
- package/dist/hooks/useTaskforce.js +549 -240
- package/dist/hooks/useTaskforce.runtime-routing.test.d.ts +1 -0
- package/dist/hooks/useTaskforce.runtime-routing.test.js +152 -0
- package/dist/hooks/useTaskforce.sync-behavior.test.js +2380 -212
- package/dist/hooks/useWorkspaceSyncController.d.ts +1 -0
- package/dist/hooks/useWorkspaceSyncController.js +6 -1
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.d.ts +16 -0
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.js +316 -35
- package/dist/localization/locales/en-US.d.ts +0 -1
- package/dist/localization/locales/en-US.js +0 -1
- package/dist/localization/locales/es-419.js +0 -1
- package/dist/localization/locales/pt-BR.js +0 -1
- package/dist/mcp/documentAssetRegistrar.js +3 -3
- package/dist/mcp/runtime.d.ts +2 -0
- package/dist/mcp/runtime.js +131 -64
- package/dist/mcp/runtime.test.js +291 -12
- package/dist/migrations/taskSchemaMigrations.d.ts +1 -1
- package/dist/migrations/taskSchemaMigrations.js +171 -61
- package/dist/migrations/taskSchemaMigrations.test.js +15 -0
- package/dist/resources/templates/workflow-sources/workflowDocs.mjs +6 -6
- package/dist/resources/templates/workflows/collaborate.yaml +1 -1
- package/dist/resources/templates/workflows/evaluate.yaml +2 -2
- package/dist/resources/templates/workflows/plan.yaml +1 -1
- package/dist/resources/templates/workflows/review.yaml +2 -2
- package/dist/server/annotatedAttachmentsRoutes.test.js +3 -3
- package/dist/server/auth/providers/apple.d.ts +33 -0
- package/dist/server/auth/providers/apple.js +82 -0
- package/dist/server/auth/providers/appleClientSecret.d.ts +37 -0
- package/dist/server/auth/providers/appleClientSecret.js +65 -0
- package/dist/server/auth/providers/github.d.ts +26 -0
- package/dist/server/auth/providers/github.js +86 -0
- package/dist/server/auth/providers/google.d.ts +21 -0
- package/dist/server/auth/providers/google.js +56 -0
- package/dist/server/auth/providers/types.d.ts +21 -0
- package/dist/server/auth/providers/types.js +1 -0
- package/dist/server/auth.d.ts +2 -0
- package/dist/server/auth.js +6 -3
- package/dist/server/documentReviewRoutes.test.js +36 -3
- package/dist/server/index.cookieProxy.test.js +1 -0
- package/dist/server/index.d.ts +12 -0
- package/dist/server/index.js +120 -9
- package/dist/server/index.rateLimit.test.js +3 -0
- package/dist/server/index.test.js +106 -3
- package/dist/server/routes/admin.d.ts +3 -0
- package/dist/server/routes/admin.js +272 -19
- package/dist/server/routes/auth.d.ts +15 -2
- package/dist/server/routes/auth.js +994 -57
- package/dist/server/routes/authSupport.d.ts +1 -1
- package/dist/server/routes/authSupport.js +1 -1
- package/dist/server/routes/billing.js +361 -35
- package/dist/server/routes/billing.test.js +592 -12
- package/dist/server/routes/documents.d.ts +1 -0
- package/dist/server/routes/documents.js +172 -70
- package/dist/server/routes/shared.d.ts +28 -2
- package/dist/server/routes/shared.js +69 -4
- package/dist/server/routes/sync.integration.test.js +437 -39
- package/dist/server/routes/sync.js +61 -605
- package/dist/server/routes/syncAuxRoutes.d.ts +15 -0
- package/dist/server/routes/syncAuxRoutes.js +91 -0
- package/dist/server/routes/syncAuxRoutes.test.d.ts +1 -0
- package/dist/server/routes/syncAuxRoutes.test.js +158 -0
- package/dist/server/routes/syncPullApplyRoutes.d.ts +36 -0
- package/dist/server/routes/syncPullApplyRoutes.js +204 -0
- package/dist/server/routes/syncPushRoutes.d.ts +24 -0
- package/dist/server/routes/syncPushRoutes.js +212 -0
- package/dist/server/routes/syncRouteGuards.d.ts +36 -0
- package/dist/server/routes/syncRouteGuards.js +67 -0
- package/dist/server/routes/syncRouteGuards.test.d.ts +1 -0
- package/dist/server/routes/syncRouteGuards.test.js +94 -0
- package/dist/server/routes/syncRouteTypes.d.ts +13 -0
- package/dist/server/routes/syncRouteTypes.js +1 -0
- package/dist/server/routes/syncSnapshotRoutes.d.ts +66 -0
- package/dist/server/routes/syncSnapshotRoutes.js +180 -0
- package/dist/server/routes/tasks.js +43 -1
- package/dist/server/routes/workspaces.js +36 -5
- package/dist/server/routes.js +60 -3
- package/dist/server/routes.test.js +1824 -171
- package/dist/services/workflowExportSnapshots.test.js +2 -0
- package/dist/shared/aiProfileSeatScope.d.ts +5 -0
- package/dist/shared/aiProfileSeatScope.js +21 -0
- package/dist/shared/passwordPolicy.d.ts +13 -0
- package/dist/shared/passwordPolicy.js +84 -0
- package/dist/shared/passwordPolicy.test.d.ts +1 -0
- package/dist/shared/passwordPolicy.test.js +34 -0
- package/dist/storage/workspaceAssetStore.d.ts +15 -3
- package/dist/storage/workspaceAssetStore.js +132 -44
- package/dist/storage/workspaceAssetStore.test.js +93 -6
- package/dist/styles/fonts.css +70 -0
- package/dist/sync/collaborationSyncPayload.d.ts +6 -1
- package/dist/sync/collaborationSyncPayload.js +17 -11
- package/dist/sync/collaborationSyncPayload.test.js +13 -1
- package/dist/sync/contentSyncState.d.ts +4 -8
- package/dist/sync/contentSyncState.js +17 -70
- package/dist/sync/syncApplyHandlers.d.ts +7 -0
- package/dist/sync/syncApplyHandlers.js +28 -13
- package/dist/sync/syncApplyHandlers.test.js +70 -3
- package/dist/sync/syncFieldSemantics.d.ts +12 -0
- package/dist/sync/syncFieldSemantics.js +55 -0
- package/dist/sync/syncResourceAdapters.d.ts +44 -0
- package/dist/sync/syncResourceAdapters.js +77 -0
- package/dist/sync/syncService.d.ts +5 -0
- package/dist/sync/syncService.js +52 -0
- package/dist/sync/syncService.test.js +57 -3
- package/dist/sync/taskSyncChangeKey.d.ts +2 -0
- package/dist/sync/taskSyncChangeKey.js +143 -0
- package/dist/sync/taskSyncPayload.js +3 -8
- package/dist/sync/workspacePullFeed.js +4 -3
- package/dist/sync/workspacePullFeed.test.js +43 -0
- package/dist/sync/workspaceRepair.js +5 -2
- package/dist/sync/workspaceSyncModel.d.ts +45 -0
- package/dist/sync/workspaceSyncModel.js +183 -28
- package/dist/sync/workspaceSyncModel.test.js +291 -12
- package/dist/sync/workspaceSyncState.d.ts +17 -0
- package/dist/sync/workspaceSyncState.js +2 -1
- package/dist/sync/workspaceSyncSurface.js +3 -8
- package/dist/types.d.ts +17 -0
- package/dist/ui/assets/AgentsModule-DrLawwNl.js +1 -0
- package/dist/ui/assets/{AnnotatedAttachmentWorkspace-BG6P_GVW.js → AnnotatedAttachmentWorkspace-Z9_whf7F.js} +1 -1
- package/dist/ui/assets/CourierPrime-Bold-BuLj_dpw.woff2 +0 -0
- package/dist/ui/assets/CourierPrime-BoldItalic-BrK2pUkZ.woff2 +0 -0
- package/dist/ui/assets/CourierPrime-Italic-DFUZK5Ey.woff2 +0 -0
- package/dist/ui/assets/CourierPrime-Regular-BsKphzVf.woff2 +0 -0
- package/dist/ui/assets/DocumentWorkspace-B03MaSkw.js +252 -0
- package/dist/ui/assets/DocumentWorkspace-Dhdso07p.css +1 -0
- package/dist/ui/assets/{InitiativesModule-Dhm7M8e7.js → InitiativesModule-9E6ParrY.js} +1 -1
- package/dist/ui/assets/Noir_medium-bxQwKGzB.woff2 +0 -0
- package/dist/ui/assets/Noir_regular-ojf2kxlG.woff2 +0 -0
- package/dist/ui/assets/PlansPage-CvfnMiWq.css +1 -0
- package/dist/ui/assets/PlansPage-DRXscYxH.js +1 -0
- package/dist/ui/assets/RussoOne-Regular-Cu_qq_qC.woff2 +0 -0
- package/dist/ui/assets/SpecialElite-Regular-Di6gSvAS.woff2 +0 -0
- package/dist/ui/assets/{TaskSettings-ln0aF7xc.js → TaskSettings-DZX4jk7e.js} +1 -1
- package/dist/ui/assets/{WorkflowsModule-BcS4afRn.js → WorkflowsModule-BA7jcEpH.js} +1 -1
- package/dist/ui/assets/index-9eT8e0Lu.css +1 -0
- package/dist/ui/assets/index-C6k75jr8.js +6 -0
- package/dist/ui/assets/{vendor-icons-BSUaRwF8.js → vendor-icons-DuEd_65c.js} +1 -1
- package/dist/ui/fonts/CourierPrime-Bold.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-Bold.woff2 +0 -0
- package/dist/ui/fonts/CourierPrime-BoldItalic.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-BoldItalic.woff2 +0 -0
- package/dist/ui/fonts/CourierPrime-Italic.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-Italic.woff2 +0 -0
- package/dist/ui/fonts/CourierPrime-Regular.ttf +0 -0
- package/dist/ui/fonts/CourierPrime-Regular.woff2 +0 -0
- package/dist/ui/fonts/Noir_medium.otf +0 -0
- package/dist/ui/fonts/Noir_medium.woff2 +0 -0
- package/dist/ui/fonts/Noir_regular.otf +0 -0
- package/dist/ui/fonts/Noir_regular.woff2 +0 -0
- package/dist/ui/fonts/RussoOne-Regular.woff2 +0 -0
- package/dist/ui/fonts/SpecialElite-Regular.ttf +0 -0
- package/dist/ui/fonts/SpecialElite-Regular.woff2 +0 -0
- package/dist/ui/index.html +3 -3
- package/dist/utils/accountProfileSummaryCache.d.ts +5 -0
- package/dist/utils/assignees.d.ts +2 -0
- package/dist/utils/assignees.js +2 -0
- package/dist/utils/avatarUpload.d.ts +27 -0
- package/dist/utils/avatarUpload.js +132 -0
- package/dist/utils/avatarUpload.test.d.ts +1 -0
- package/dist/utils/avatarUpload.test.js +40 -0
- package/dist/utils/bootstrapTrace.d.ts +7 -0
- package/dist/utils/bootstrapTrace.js +29 -0
- package/dist/utils/commercialLifecyclePresentation.js +3 -0
- package/dist/utils/contextAssetEvents.d.ts +2 -0
- package/dist/utils/syncEventDetails.d.ts +3 -0
- package/dist/utils/syncEventDetails.js +64 -0
- package/dist/utils/syncEventDetails.test.d.ts +1 -0
- package/dist/utils/syncEventDetails.test.js +23 -0
- package/dist/utils/syncEventPresentation.d.ts +15 -0
- package/dist/utils/syncEventPresentation.js +129 -0
- package/dist/utils/syncEventPresentation.test.d.ts +1 -0
- package/dist/utils/syncEventPresentation.test.js +64 -0
- package/dist/utils/syncStatusPresentation.d.ts +72 -0
- package/dist/utils/syncStatusPresentation.js +217 -0
- package/dist/utils/syncStatusPresentation.test.d.ts +1 -0
- package/dist/utils/syncStatusPresentation.test.js +164 -0
- package/dist/utils/taskActivity.d.ts +2 -0
- package/dist/utils/taskActivity.js +228 -22
- package/dist/utils/taskActivity.test.js +119 -8
- package/dist/utils/workspaceSyncPresentation.d.ts +4 -0
- package/dist/utils/workspaceSyncPresentation.js +68 -2
- package/dist/utils/workspaceSyncPresentation.test.js +36 -1
- package/package.json +3 -2
- package/scripts/export-sqlite-to-postgres.mjs +7 -9
- package/scripts/run-e2e-realtime.sh +17 -3
- package/scripts/run-smoke.sh +17 -5
- package/scripts/run-soak.sh +17 -5
- package/src/resources/templates/workflow-sources/workflowDocs.mjs +6 -6
- package/src/resources/templates/workflows/collaborate.yaml +1 -1
- package/src/resources/templates/workflows/evaluate.yaml +2 -2
- package/src/resources/templates/workflows/plan.yaml +1 -1
- package/src/resources/templates/workflows/review.yaml +2 -2
- package/dist/ui/assets/AgentsModule-N2MnQBZk.js +0 -1
- package/dist/ui/assets/DocumentWorkspace-B3nV_Gc5.css +0 -1
- package/dist/ui/assets/DocumentWorkspace-DRbDMwh8.js +0 -252
- package/dist/ui/assets/PlansPage-C2dd2n1X.css +0 -1
- package/dist/ui/assets/PlansPage-Cq0zXj3I.js +0 -1
- package/dist/ui/assets/RussoOne-Regular-C3BxZIj7.ttf +0 -0
- package/dist/ui/assets/index-C2-OXZV7.css +0 -1
- package/dist/ui/assets/index-DcSI5F86.js +0 -6
- package/scripts/migrate-planning-model.ts +0 -233
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
import { beforeEach, describe, expect, it, vi } from 'vitest';
|
|
2
|
+
import { createWorkspaceTransferCoordinator } from './transfers';
|
|
3
|
+
const { runWorkspacePullSyncServiceMock, runWorkspacePushSyncServiceMock } = vi.hoisted(() => ({
|
|
4
|
+
runWorkspacePullSyncServiceMock: vi.fn(),
|
|
5
|
+
runWorkspacePushSyncServiceMock: vi.fn()
|
|
6
|
+
}));
|
|
7
|
+
vi.mock('../../sync/syncService', async () => {
|
|
8
|
+
const actual = await vi.importActual('../../sync/syncService');
|
|
9
|
+
return {
|
|
10
|
+
...actual,
|
|
11
|
+
runWorkspacePullSyncService: runWorkspacePullSyncServiceMock,
|
|
12
|
+
runWorkspacePushSyncService: runWorkspacePushSyncServiceMock
|
|
13
|
+
};
|
|
14
|
+
});
|
|
15
|
+
function ref(current) {
|
|
16
|
+
return { current };
|
|
17
|
+
}
|
|
18
|
+
function createCoordinator(overrides) {
|
|
19
|
+
const persistWorkspaceSyncPatchSafely = (overrides?.persistWorkspaceSyncPatchSafely ?? vi.fn());
|
|
20
|
+
const scheduleWorkspaceSyncRetry = (overrides?.scheduleWorkspaceSyncRetry ?? vi.fn());
|
|
21
|
+
const reportSyncEvent = vi.fn();
|
|
22
|
+
const workspacePendingPushReplayRef = ref(null);
|
|
23
|
+
const coordinator = createWorkspaceTransferCoordinator({
|
|
24
|
+
cloudAuthConfigured: true,
|
|
25
|
+
runtimeMode: 'local',
|
|
26
|
+
workspaceCloudSyncEnabled: true,
|
|
27
|
+
currentWorkspaceId: 'workspace-local-active',
|
|
28
|
+
workspaceSyncPhase: 'active',
|
|
29
|
+
isAuthenticated: true,
|
|
30
|
+
checkAuthSession: vi.fn(async () => true),
|
|
31
|
+
resolveCloudAuthUrl: (path) => `https://cloud.example.com${path}`,
|
|
32
|
+
ensureCloudWorkspaceReadyForSync: vi.fn(async () => ({ success: true })),
|
|
33
|
+
ensureWorkspaceSyncReady: vi.fn(async () => true),
|
|
34
|
+
handleSyncAuthFailure: vi.fn(async () => { }),
|
|
35
|
+
clearWorkspaceRetry: vi.fn(),
|
|
36
|
+
clearWorkspaceIssue: vi.fn(),
|
|
37
|
+
isWorkspaceRetryPending: vi.fn(() => false),
|
|
38
|
+
scheduleWorkspaceSyncRetry,
|
|
39
|
+
persistWorkspaceSyncPatchSafely,
|
|
40
|
+
persistWorkspaceSyncPatchBestEffort: vi.fn(async () => { }),
|
|
41
|
+
persistWorkspaceSyncWatermarksSnapshotBestEffort: vi.fn(() => true),
|
|
42
|
+
reportSyncEvent,
|
|
43
|
+
acquireWorkspaceSyncLease: vi.fn(async () => true),
|
|
44
|
+
releaseWorkspaceSyncLease: vi.fn(),
|
|
45
|
+
reportWorkspaceWindowContention: vi.fn(),
|
|
46
|
+
refreshWorkspaceSyncMarkdownDocumentsSnapshot: vi.fn(async () => { }),
|
|
47
|
+
refreshWorkspaceSyncAiProfilesSnapshot: vi.fn(async () => { }),
|
|
48
|
+
refreshWorkspaceSyncAssetsSnapshot: vi.fn(async () => { }),
|
|
49
|
+
refreshWorkspaceSyncDocumentReviewSessionsSnapshot: vi.fn(async () => { }),
|
|
50
|
+
refreshWorkspaceSyncAnnotatedAttachmentSessionsSnapshot: vi.fn(async () => { }),
|
|
51
|
+
refreshLocalWorkspaceTaskCollections: vi.fn(async () => { }),
|
|
52
|
+
buildWorkspaceSyncPayload: (overrides?.buildWorkspaceSyncPayload ?? vi.fn(() => ({
|
|
53
|
+
changes: [],
|
|
54
|
+
currentTaskIds: new Set(),
|
|
55
|
+
deleteTaskIds: new Set(),
|
|
56
|
+
currentInitiativeIds: new Set(),
|
|
57
|
+
currentInitiativeWatermarks: new Map(),
|
|
58
|
+
currentWorkstreamIds: new Set(),
|
|
59
|
+
currentWorkstreamWatermarks: new Map(),
|
|
60
|
+
currentAiProfileIds: new Set(),
|
|
61
|
+
currentAiProfileWatermarks: new Map(),
|
|
62
|
+
currentDocumentPaths: new Set(),
|
|
63
|
+
deleteDocumentPaths: new Set(),
|
|
64
|
+
currentDocumentWatermarks: new Map(),
|
|
65
|
+
currentAssetPaths: new Set(),
|
|
66
|
+
deleteAssetPaths: new Set(),
|
|
67
|
+
currentAssetWatermarks: new Map(),
|
|
68
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
69
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
70
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
71
|
+
currentDocumentReviewCommentIds: new Set(),
|
|
72
|
+
deleteDocumentReviewCommentIds: new Set(),
|
|
73
|
+
currentDocumentReviewCommentWatermarks: new Map(),
|
|
74
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
75
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
76
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
77
|
+
currentTaskEventWatermarks: new Map(),
|
|
78
|
+
pushedWatermarks: new Map()
|
|
79
|
+
}))),
|
|
80
|
+
buildWorkspaceSyncSignature: vi.fn(() => 'sync-signature'),
|
|
81
|
+
seedWorkspaceSnapshotPushBaseline: vi.fn(),
|
|
82
|
+
shouldSuppressAttachBootstrapPush: vi.fn(() => false),
|
|
83
|
+
recordSuppressedEventIds: vi.fn(),
|
|
84
|
+
workspaceRepairModeRef: ref(false),
|
|
85
|
+
workspaceForceFullAiProfilePushRef: ref(false),
|
|
86
|
+
workspacePushInFlightRef: ref(false),
|
|
87
|
+
workspacePullInFlightRef: ref(false),
|
|
88
|
+
workspacePendingPushReplayRef,
|
|
89
|
+
workspaceLastPushedSignatureRef: ref(''),
|
|
90
|
+
workspacePendingSignatureRef: ref(''),
|
|
91
|
+
workspaceLastPushedTaskIdsRef: ref(new Set()),
|
|
92
|
+
workspaceDeletedTaskIdsRef: ref(new Set()),
|
|
93
|
+
workspaceDeletedTaskWatermarksRef: ref(new Map()),
|
|
94
|
+
workspacePullCursorRef: ref('stale-cursor'),
|
|
95
|
+
workspaceLastPushedWatermarksRef: ref(new Map()),
|
|
96
|
+
workspaceLastPushedTaskChangeKeysRef: ref(new Map()),
|
|
97
|
+
workspaceLastPushedInitiativeIdsRef: ref(new Set()),
|
|
98
|
+
workspaceLastPushedInitiativeWatermarksRef: ref(new Map()),
|
|
99
|
+
workspaceLastPushedWorkstreamIdsRef: ref(new Set()),
|
|
100
|
+
workspaceLastPushedWorkstreamWatermarksRef: ref(new Map()),
|
|
101
|
+
workspaceLastPushedAiProfileIdsRef: ref(new Set()),
|
|
102
|
+
workspaceLastPushedAiProfileWatermarksRef: ref(new Map()),
|
|
103
|
+
workspaceLastPushedAiProfileChangeKeysRef: ref(new Map()),
|
|
104
|
+
workspaceLastPushedDocumentPathsRef: ref(new Set()),
|
|
105
|
+
workspaceLastPushedDocumentWatermarksRef: ref(new Map()),
|
|
106
|
+
workspaceLastPushedAssetPathsRef: ref(new Set()),
|
|
107
|
+
workspaceLastPushedAssetWatermarksRef: ref(new Map()),
|
|
108
|
+
workspaceLastPushedDocumentReviewSessionIdsRef: ref(new Set()),
|
|
109
|
+
workspaceLastPushedDocumentReviewSessionWatermarksRef: ref(new Map()),
|
|
110
|
+
workspaceLastPushedDocumentReviewCommentIdsRef: ref(new Set()),
|
|
111
|
+
workspaceLastPushedDocumentReviewCommentWatermarksRef: ref(new Map()),
|
|
112
|
+
workspaceLastPushedAnnotatedAttachmentSessionIdsRef: ref(new Set()),
|
|
113
|
+
workspaceLastPushedAnnotatedAttachmentSessionWatermarksRef: ref(new Map()),
|
|
114
|
+
workspaceLastPushedTaskEventWatermarksRef: ref(new Map()),
|
|
115
|
+
workspaceBaselineResetReasonRef: ref(null),
|
|
116
|
+
workspaceCaptureAttachBootstrapBaselineRef: ref(false),
|
|
117
|
+
workspaceStartupFullReconcileRanRef: ref(false),
|
|
118
|
+
workspaceFullReconcileInFlightRef: ref(false),
|
|
119
|
+
bootstrapLastProgressAtRef: ref(null),
|
|
120
|
+
realtimeSuppressedEventQueueRef: ref([]),
|
|
121
|
+
setWorkspaceSyncBusy: vi.fn(),
|
|
122
|
+
setUserGlobalSyncStatus: vi.fn(),
|
|
123
|
+
setUserGlobalSyncError: vi.fn(),
|
|
124
|
+
setWorkspaceLastErrorMessage: vi.fn(),
|
|
125
|
+
setWorkspaceLastErrorAt: vi.fn(),
|
|
126
|
+
setWorkspaceLastPullAt: vi.fn(),
|
|
127
|
+
setWorkspaceLastPushAt: vi.fn(),
|
|
128
|
+
setWorkspaceSyncPendingChanges: vi.fn(),
|
|
129
|
+
setTasks: vi.fn(),
|
|
130
|
+
setArchivedTasks: vi.fn()
|
|
131
|
+
});
|
|
132
|
+
return { coordinator, persistWorkspaceSyncPatchSafely, scheduleWorkspaceSyncRetry, reportSyncEvent, workspacePendingPushReplayRef };
|
|
133
|
+
}
|
|
134
|
+
describe('createWorkspaceTransferCoordinator', () => {
|
|
135
|
+
beforeEach(() => {
|
|
136
|
+
runWorkspacePullSyncServiceMock.mockReset();
|
|
137
|
+
runWorkspacePushSyncServiceMock.mockReset();
|
|
138
|
+
});
|
|
139
|
+
it('persists a cleared cursor before scheduling an invalid-cursor retry', async () => {
|
|
140
|
+
runWorkspacePullSyncServiceMock.mockResolvedValueOnce({
|
|
141
|
+
success: false,
|
|
142
|
+
kind: 'pull_http',
|
|
143
|
+
status: 400,
|
|
144
|
+
errorCode: 'INVALID_SYNC_CURSOR',
|
|
145
|
+
error: 'Invalid sync cursor.',
|
|
146
|
+
cursor: 'stale-cursor',
|
|
147
|
+
pages: 0,
|
|
148
|
+
appliedChanges: 0,
|
|
149
|
+
pullRequestMs: 1,
|
|
150
|
+
applyMs: 0,
|
|
151
|
+
pulledDeleteTaskIds: new Set(),
|
|
152
|
+
pulledActiveUpserts: false,
|
|
153
|
+
pulledArchivedUpserts: false,
|
|
154
|
+
documentDecryptFailures: []
|
|
155
|
+
});
|
|
156
|
+
const { coordinator, persistWorkspaceSyncPatchSafely, scheduleWorkspaceSyncRetry } = createCoordinator();
|
|
157
|
+
const result = await coordinator.pullWorkspaceChangesFromCloud();
|
|
158
|
+
expect(result).toBe(false);
|
|
159
|
+
expect(runWorkspacePullSyncServiceMock).toHaveBeenCalledWith(expect.objectContaining({
|
|
160
|
+
cursor: 'stale-cursor'
|
|
161
|
+
}));
|
|
162
|
+
expect(persistWorkspaceSyncPatchSafely).toHaveBeenCalledWith({ pullCursor: null });
|
|
163
|
+
expect(scheduleWorkspaceSyncRetry).toHaveBeenCalledWith(150);
|
|
164
|
+
});
|
|
165
|
+
it('reports push payload diagnostics when a push fails', async () => {
|
|
166
|
+
runWorkspacePushSyncServiceMock.mockResolvedValueOnce({
|
|
167
|
+
success: false,
|
|
168
|
+
status: 524,
|
|
169
|
+
error: '524 unknown',
|
|
170
|
+
transient: true,
|
|
171
|
+
requestMs: 125000,
|
|
172
|
+
changeCount: 3,
|
|
173
|
+
deleteCount: 0,
|
|
174
|
+
currentTaskIds: new Set(),
|
|
175
|
+
deleteTaskIds: new Set(),
|
|
176
|
+
currentInitiativeIds: new Set(),
|
|
177
|
+
currentInitiativeWatermarks: new Map(),
|
|
178
|
+
currentWorkstreamIds: new Set(),
|
|
179
|
+
currentWorkstreamWatermarks: new Map(),
|
|
180
|
+
currentAiProfileIds: new Set(),
|
|
181
|
+
currentAiProfileWatermarks: new Map(),
|
|
182
|
+
currentDocumentPaths: new Set(),
|
|
183
|
+
deleteDocumentPaths: new Set(),
|
|
184
|
+
currentDocumentWatermarks: new Map(),
|
|
185
|
+
currentAssetPaths: new Set(),
|
|
186
|
+
deleteAssetPaths: new Set(),
|
|
187
|
+
currentAssetWatermarks: new Map(),
|
|
188
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
189
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
190
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
191
|
+
currentDocumentReviewCommentIds: new Set(),
|
|
192
|
+
deleteDocumentReviewCommentIds: new Set(),
|
|
193
|
+
currentDocumentReviewCommentWatermarks: new Map(),
|
|
194
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
195
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
196
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
197
|
+
currentTaskEventWatermarks: new Map(),
|
|
198
|
+
pushedWatermarks: new Map(),
|
|
199
|
+
emittedEventIds: [],
|
|
200
|
+
appliedTaskUpserts: []
|
|
201
|
+
});
|
|
202
|
+
const payloadDiagnostics = {
|
|
203
|
+
totalChanges: 3,
|
|
204
|
+
byOp: { 'document-upsert': 2, 'asset-upsert': 1 },
|
|
205
|
+
baselineResetReason: 'repair-reset',
|
|
206
|
+
domains: {
|
|
207
|
+
tasks: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
208
|
+
initiatives: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
209
|
+
workstreams: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
210
|
+
aiProfiles: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
211
|
+
documents: { mode: 'send-all', reason: 'repair-reset', currentCount: 2, baselineCount: 0, changeCount: 2 },
|
|
212
|
+
assets: { mode: 'send-all', reason: 'repair-reset', currentCount: 1, baselineCount: 0, changeCount: 1 },
|
|
213
|
+
documentReviewSessions: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
214
|
+
documentReviewComments: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
215
|
+
annotatedAttachmentSessions: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
216
|
+
taskEvents: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
217
|
+
taxonomy: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 }
|
|
218
|
+
}
|
|
219
|
+
};
|
|
220
|
+
const buildWorkspaceSyncPayload = vi.fn(() => ({
|
|
221
|
+
changes: [],
|
|
222
|
+
currentTaskIds: new Set(),
|
|
223
|
+
deleteTaskIds: new Set(),
|
|
224
|
+
currentInitiativeIds: new Set(),
|
|
225
|
+
currentInitiativeWatermarks: new Map(),
|
|
226
|
+
currentWorkstreamIds: new Set(),
|
|
227
|
+
currentWorkstreamWatermarks: new Map(),
|
|
228
|
+
currentAiProfileIds: new Set(),
|
|
229
|
+
currentAiProfileWatermarks: new Map(),
|
|
230
|
+
currentDocumentPaths: new Set(),
|
|
231
|
+
deleteDocumentPaths: new Set(),
|
|
232
|
+
currentDocumentWatermarks: new Map(),
|
|
233
|
+
currentAssetPaths: new Set(),
|
|
234
|
+
deleteAssetPaths: new Set(),
|
|
235
|
+
currentAssetWatermarks: new Map(),
|
|
236
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
237
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
238
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
239
|
+
currentDocumentReviewCommentIds: new Set(),
|
|
240
|
+
deleteDocumentReviewCommentIds: new Set(),
|
|
241
|
+
currentDocumentReviewCommentWatermarks: new Map(),
|
|
242
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
243
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
244
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
245
|
+
currentTaskEventWatermarks: new Map(),
|
|
246
|
+
pushedWatermarks: new Map(),
|
|
247
|
+
deltaDiagnostics: payloadDiagnostics
|
|
248
|
+
}));
|
|
249
|
+
const { coordinator, reportSyncEvent } = createCoordinator({ buildWorkspaceSyncPayload });
|
|
250
|
+
await coordinator.pushWorkspaceChangesToCloud('signature-1');
|
|
251
|
+
expect(buildWorkspaceSyncPayload).toHaveBeenCalled();
|
|
252
|
+
expect(reportSyncEvent).toHaveBeenCalledWith('workspace-local-active', expect.objectContaining({
|
|
253
|
+
eventType: 'push',
|
|
254
|
+
status: 'error',
|
|
255
|
+
details: expect.objectContaining({
|
|
256
|
+
payloadDiagnostics
|
|
257
|
+
})
|
|
258
|
+
}));
|
|
259
|
+
});
|
|
260
|
+
it('replays the same payload after a transient push failure before rebuilding a fresh one', async () => {
|
|
261
|
+
const firstPayload = {
|
|
262
|
+
changes: [],
|
|
263
|
+
currentTaskIds: new Set(),
|
|
264
|
+
deleteTaskIds: new Set(),
|
|
265
|
+
currentInitiativeIds: new Set(),
|
|
266
|
+
currentInitiativeWatermarks: new Map(),
|
|
267
|
+
currentWorkstreamIds: new Set(),
|
|
268
|
+
currentWorkstreamWatermarks: new Map(),
|
|
269
|
+
currentAiProfileIds: new Set(),
|
|
270
|
+
currentAiProfileWatermarks: new Map(),
|
|
271
|
+
currentDocumentPaths: new Set(),
|
|
272
|
+
deleteDocumentPaths: new Set(),
|
|
273
|
+
currentDocumentWatermarks: new Map(),
|
|
274
|
+
currentAssetPaths: new Set(),
|
|
275
|
+
deleteAssetPaths: new Set(),
|
|
276
|
+
currentAssetWatermarks: new Map(),
|
|
277
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
278
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
279
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
280
|
+
currentDocumentReviewCommentIds: new Set(),
|
|
281
|
+
deleteDocumentReviewCommentIds: new Set(),
|
|
282
|
+
currentDocumentReviewCommentWatermarks: new Map(),
|
|
283
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
284
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
285
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
286
|
+
currentTaskEventWatermarks: new Map(),
|
|
287
|
+
pushedWatermarks: new Map()
|
|
288
|
+
};
|
|
289
|
+
const secondPayload = {
|
|
290
|
+
...firstPayload,
|
|
291
|
+
deltaDiagnostics: {
|
|
292
|
+
totalChanges: 9,
|
|
293
|
+
byOp: { 'task-upsert': 9 },
|
|
294
|
+
baselineResetReason: 'missing-baseline',
|
|
295
|
+
domains: {
|
|
296
|
+
tasks: { mode: 'delta', reason: null, currentCount: 9, baselineCount: 8, changeCount: 1 },
|
|
297
|
+
initiatives: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
298
|
+
workstreams: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
299
|
+
aiProfiles: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
300
|
+
documents: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
301
|
+
assets: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
302
|
+
documentReviewSessions: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
303
|
+
documentReviewComments: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
304
|
+
annotatedAttachmentSessions: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
305
|
+
taskEvents: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 },
|
|
306
|
+
taxonomy: { mode: 'none', reason: null, currentCount: 0, baselineCount: 0, changeCount: 0 }
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
};
|
|
310
|
+
const buildWorkspaceSyncPayload = vi.fn()
|
|
311
|
+
.mockReturnValueOnce(firstPayload)
|
|
312
|
+
.mockReturnValueOnce(secondPayload);
|
|
313
|
+
runWorkspacePushSyncServiceMock
|
|
314
|
+
.mockResolvedValueOnce({
|
|
315
|
+
success: false,
|
|
316
|
+
status: 524,
|
|
317
|
+
error: '524 unknown',
|
|
318
|
+
transient: true,
|
|
319
|
+
requestMs: 125000,
|
|
320
|
+
changeCount: 1,
|
|
321
|
+
deleteCount: 0,
|
|
322
|
+
currentTaskIds: new Set(),
|
|
323
|
+
deleteTaskIds: new Set(),
|
|
324
|
+
currentInitiativeIds: new Set(),
|
|
325
|
+
currentInitiativeWatermarks: new Map(),
|
|
326
|
+
currentWorkstreamIds: new Set(),
|
|
327
|
+
currentWorkstreamWatermarks: new Map(),
|
|
328
|
+
currentAiProfileIds: new Set(),
|
|
329
|
+
currentAiProfileWatermarks: new Map(),
|
|
330
|
+
currentDocumentPaths: new Set(),
|
|
331
|
+
deleteDocumentPaths: new Set(),
|
|
332
|
+
currentDocumentWatermarks: new Map(),
|
|
333
|
+
currentAssetPaths: new Set(),
|
|
334
|
+
deleteAssetPaths: new Set(),
|
|
335
|
+
currentAssetWatermarks: new Map(),
|
|
336
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
337
|
+
deleteDocumentReviewSessionIds: new Set(),
|
|
338
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
339
|
+
currentDocumentReviewCommentIds: new Set(),
|
|
340
|
+
deleteDocumentReviewCommentIds: new Set(),
|
|
341
|
+
currentDocumentReviewCommentWatermarks: new Map(),
|
|
342
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
343
|
+
deleteAnnotatedAttachmentSessionIds: new Set(),
|
|
344
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
345
|
+
currentTaskEventWatermarks: new Map(),
|
|
346
|
+
pushedWatermarks: new Map(),
|
|
347
|
+
emittedEventIds: [],
|
|
348
|
+
appliedTaskUpserts: []
|
|
349
|
+
})
|
|
350
|
+
.mockResolvedValueOnce({
|
|
351
|
+
success: true,
|
|
352
|
+
syncedAt: '2026-04-21T12:00:00.000Z',
|
|
353
|
+
requestMs: 200,
|
|
354
|
+
changeCount: 1,
|
|
355
|
+
deleteCount: 0,
|
|
356
|
+
currentTaskIds: new Set(['task-1']),
|
|
357
|
+
deleteTaskIds: new Set(),
|
|
358
|
+
currentInitiativeIds: new Set(),
|
|
359
|
+
currentInitiativeWatermarks: new Map(),
|
|
360
|
+
currentWorkstreamIds: new Set(),
|
|
361
|
+
currentWorkstreamWatermarks: new Map(),
|
|
362
|
+
currentAiProfileIds: new Set(),
|
|
363
|
+
currentAiProfileWatermarks: new Map(),
|
|
364
|
+
currentDocumentPaths: new Set(),
|
|
365
|
+
currentDocumentWatermarks: new Map(),
|
|
366
|
+
currentAssetPaths: new Set(),
|
|
367
|
+
currentAssetWatermarks: new Map(),
|
|
368
|
+
currentDocumentReviewSessionIds: new Set(),
|
|
369
|
+
currentDocumentReviewSessionWatermarks: new Map(),
|
|
370
|
+
currentDocumentReviewCommentIds: new Set(),
|
|
371
|
+
currentDocumentReviewCommentWatermarks: new Map(),
|
|
372
|
+
currentAnnotatedAttachmentSessionIds: new Set(),
|
|
373
|
+
currentAnnotatedAttachmentSessionWatermarks: new Map(),
|
|
374
|
+
currentTaskEventWatermarks: new Map(),
|
|
375
|
+
pushedWatermarks: new Map([['task-1', '2026-04-21T12:00:00.000Z']]),
|
|
376
|
+
emittedEventIds: [],
|
|
377
|
+
appliedTaskUpserts: []
|
|
378
|
+
});
|
|
379
|
+
const { coordinator, workspacePendingPushReplayRef, reportSyncEvent } = createCoordinator({ buildWorkspaceSyncPayload });
|
|
380
|
+
const firstResult = await coordinator.pushWorkspaceChangesToCloud('signature-1');
|
|
381
|
+
const secondResult = await coordinator.pushWorkspaceChangesToCloud('signature-1');
|
|
382
|
+
expect(firstResult).toBe(false);
|
|
383
|
+
expect(secondResult).toBe(true);
|
|
384
|
+
expect(buildWorkspaceSyncPayload).toHaveBeenCalledTimes(1);
|
|
385
|
+
expect(runWorkspacePushSyncServiceMock.mock.calls[0]?.[0]?.payload).toBe(firstPayload);
|
|
386
|
+
expect(runWorkspacePushSyncServiceMock.mock.calls[1]?.[0]?.payload).toBe(firstPayload);
|
|
387
|
+
expect(workspacePendingPushReplayRef.current).toBeNull();
|
|
388
|
+
expect(reportSyncEvent).toHaveBeenLastCalledWith('workspace-local-active', expect.objectContaining({
|
|
389
|
+
eventType: 'push',
|
|
390
|
+
status: 'success',
|
|
391
|
+
details: expect.objectContaining({
|
|
392
|
+
replayedPayload: true
|
|
393
|
+
})
|
|
394
|
+
}));
|
|
395
|
+
});
|
|
396
|
+
});
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type SyncEventRecord } from '../../utils/syncEventPresentation';
|
|
2
|
+
interface UseRecentSyncEventsInput {
|
|
3
|
+
isOpen: boolean;
|
|
4
|
+
workspaceId: string;
|
|
5
|
+
refreshKeys: ReadonlyArray<string | null | undefined>;
|
|
6
|
+
}
|
|
7
|
+
export interface PendingSyncEventsScrollRestore {
|
|
8
|
+
scrollTop: number;
|
|
9
|
+
scrollHeight: number;
|
|
10
|
+
}
|
|
11
|
+
interface UseRecentSyncEventsResult {
|
|
12
|
+
syncRecentEvents: SyncEventRecord[];
|
|
13
|
+
syncRecentEventsLoading: boolean;
|
|
14
|
+
syncRecentEventsError: string | null;
|
|
15
|
+
syncEventsListRef: React.RefObject<HTMLDivElement | null>;
|
|
16
|
+
loadRecentSyncEvents: () => Promise<SyncEventRecord[]>;
|
|
17
|
+
}
|
|
18
|
+
export declare function useRecentSyncEvents({ isOpen, workspaceId, refreshKeys, }: UseRecentSyncEventsInput): UseRecentSyncEventsResult;
|
|
19
|
+
export declare function capturePendingSyncEventsScrollRestore(listEl: HTMLDivElement | null): PendingSyncEventsScrollRestore | null;
|
|
20
|
+
export declare function restorePendingSyncEventsScrollRestore(listEl: HTMLDivElement | null, pendingRestore: PendingSyncEventsScrollRestore | null): null;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
|
|
2
|
+
import { areSyncEventListsEqual, mergeRecentSyncEvents, } from '../../utils/syncEventPresentation';
|
|
3
|
+
export function useRecentSyncEvents({ isOpen, workspaceId, refreshKeys, }) {
|
|
4
|
+
const [syncRecentEvents, setSyncRecentEvents] = useState([]);
|
|
5
|
+
const [syncRecentEventsLoading, setSyncRecentEventsLoading] = useState(false);
|
|
6
|
+
const [syncRecentEventsError, setSyncRecentEventsError] = useState(null);
|
|
7
|
+
const syncEventsListRef = useRef(null);
|
|
8
|
+
const pendingSyncEventsScrollRestoreRef = useRef(null);
|
|
9
|
+
useLayoutEffect(() => {
|
|
10
|
+
pendingSyncEventsScrollRestoreRef.current = restorePendingSyncEventsScrollRestore(syncEventsListRef.current, pendingSyncEventsScrollRestoreRef.current);
|
|
11
|
+
}, [syncRecentEvents]);
|
|
12
|
+
const loadRecentSyncEvents = useCallback(async () => {
|
|
13
|
+
const res = await fetch(`/api/taskforce/sync/events?workspace_id=${encodeURIComponent(workspaceId)}&limit=15`, {
|
|
14
|
+
method: 'GET',
|
|
15
|
+
credentials: 'include'
|
|
16
|
+
});
|
|
17
|
+
if (!res.ok) {
|
|
18
|
+
throw new Error(`Failed to load sync events (${res.status})`);
|
|
19
|
+
}
|
|
20
|
+
const data = await res.json().catch(() => ({}));
|
|
21
|
+
return Array.isArray(data?.events)
|
|
22
|
+
? data.events.filter((event) => event && typeof event === 'object')
|
|
23
|
+
: [];
|
|
24
|
+
}, [workspaceId]);
|
|
25
|
+
useEffect(() => {
|
|
26
|
+
if (!isOpen)
|
|
27
|
+
return;
|
|
28
|
+
let cancelled = false;
|
|
29
|
+
const isInitialLoad = syncRecentEvents.length === 0;
|
|
30
|
+
if (isInitialLoad) {
|
|
31
|
+
setSyncRecentEventsLoading(true);
|
|
32
|
+
}
|
|
33
|
+
void loadRecentSyncEvents()
|
|
34
|
+
.then((events) => {
|
|
35
|
+
if (cancelled)
|
|
36
|
+
return;
|
|
37
|
+
pendingSyncEventsScrollRestoreRef.current = capturePendingSyncEventsScrollRestore(syncEventsListRef.current);
|
|
38
|
+
setSyncRecentEvents((current) => {
|
|
39
|
+
const next = current.length === 0 ? events : mergeRecentSyncEvents(current, events, 15);
|
|
40
|
+
return areSyncEventListsEqual(current, next) ? current : next;
|
|
41
|
+
});
|
|
42
|
+
setSyncRecentEventsError(null);
|
|
43
|
+
})
|
|
44
|
+
.catch((error) => {
|
|
45
|
+
if (cancelled)
|
|
46
|
+
return;
|
|
47
|
+
const message = error instanceof Error && error.message.trim().length > 0
|
|
48
|
+
? error.message.trim()
|
|
49
|
+
: 'Unable to load recent sync events.';
|
|
50
|
+
setSyncRecentEventsError(message);
|
|
51
|
+
if (isInitialLoad) {
|
|
52
|
+
setSyncRecentEvents([]);
|
|
53
|
+
}
|
|
54
|
+
})
|
|
55
|
+
.finally(() => {
|
|
56
|
+
if (cancelled)
|
|
57
|
+
return;
|
|
58
|
+
if (isInitialLoad) {
|
|
59
|
+
setSyncRecentEventsLoading(false);
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
return () => {
|
|
63
|
+
cancelled = true;
|
|
64
|
+
};
|
|
65
|
+
}, [
|
|
66
|
+
isOpen,
|
|
67
|
+
loadRecentSyncEvents,
|
|
68
|
+
...refreshKeys,
|
|
69
|
+
]);
|
|
70
|
+
return {
|
|
71
|
+
syncRecentEvents,
|
|
72
|
+
syncRecentEventsLoading,
|
|
73
|
+
syncRecentEventsError,
|
|
74
|
+
syncEventsListRef,
|
|
75
|
+
loadRecentSyncEvents,
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
export function capturePendingSyncEventsScrollRestore(listEl) {
|
|
79
|
+
return listEl && listEl.scrollTop > 8
|
|
80
|
+
? {
|
|
81
|
+
scrollTop: listEl.scrollTop,
|
|
82
|
+
scrollHeight: listEl.scrollHeight
|
|
83
|
+
}
|
|
84
|
+
: null;
|
|
85
|
+
}
|
|
86
|
+
export function restorePendingSyncEventsScrollRestore(listEl, pendingRestore) {
|
|
87
|
+
if (!pendingRestore || !listEl)
|
|
88
|
+
return null;
|
|
89
|
+
const delta = listEl.scrollHeight - pendingRestore.scrollHeight;
|
|
90
|
+
listEl.scrollTop = pendingRestore.scrollTop + Math.max(0, delta);
|
|
91
|
+
return null;
|
|
92
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { renderHook, waitFor } from '@testing-library/react';
|
|
2
|
+
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
3
|
+
import { capturePendingSyncEventsScrollRestore, restorePendingSyncEventsScrollRestore, useRecentSyncEvents, } from './useRecentSyncEvents';
|
|
4
|
+
describe('useRecentSyncEvents', () => {
|
|
5
|
+
const fetchMock = vi.fn();
|
|
6
|
+
beforeEach(() => {
|
|
7
|
+
fetchMock.mockReset();
|
|
8
|
+
vi.stubGlobal('fetch', fetchMock);
|
|
9
|
+
});
|
|
10
|
+
afterEach(() => {
|
|
11
|
+
vi.unstubAllGlobals();
|
|
12
|
+
});
|
|
13
|
+
it('does not fetch recent sync events while the modal is closed', () => {
|
|
14
|
+
renderHook(() => useRecentSyncEvents({
|
|
15
|
+
isOpen: false,
|
|
16
|
+
workspaceId: 'workspace-1',
|
|
17
|
+
refreshKeys: ['a'],
|
|
18
|
+
}));
|
|
19
|
+
expect(fetchMock).not.toHaveBeenCalled();
|
|
20
|
+
});
|
|
21
|
+
it('loads recent sync events when the modal opens', async () => {
|
|
22
|
+
fetchMock.mockResolvedValue({
|
|
23
|
+
ok: true,
|
|
24
|
+
json: async () => ({
|
|
25
|
+
events: [{
|
|
26
|
+
id: 1,
|
|
27
|
+
occurredAt: '2026-04-18T12:00:00.000Z',
|
|
28
|
+
eventType: 'pull',
|
|
29
|
+
status: 'success',
|
|
30
|
+
}],
|
|
31
|
+
}),
|
|
32
|
+
});
|
|
33
|
+
const { result } = renderHook(() => useRecentSyncEvents({
|
|
34
|
+
isOpen: true,
|
|
35
|
+
workspaceId: 'workspace-1',
|
|
36
|
+
refreshKeys: ['2026-04-18T12:00:00.000Z'],
|
|
37
|
+
}));
|
|
38
|
+
await waitFor(() => {
|
|
39
|
+
expect(result.current.syncRecentEventsLoading).toBe(false);
|
|
40
|
+
expect(result.current.syncRecentEvents).toHaveLength(1);
|
|
41
|
+
});
|
|
42
|
+
expect(fetchMock).toHaveBeenCalledWith('/api/taskforce/sync/events?workspace_id=workspace-1&limit=15', expect.objectContaining({
|
|
43
|
+
method: 'GET',
|
|
44
|
+
credentials: 'include',
|
|
45
|
+
}));
|
|
46
|
+
expect(result.current.syncRecentEventsError).toBeNull();
|
|
47
|
+
});
|
|
48
|
+
it('stores a readable error when the fetch fails', async () => {
|
|
49
|
+
fetchMock.mockResolvedValue({
|
|
50
|
+
ok: false,
|
|
51
|
+
status: 503,
|
|
52
|
+
json: async () => ({}),
|
|
53
|
+
});
|
|
54
|
+
const { result } = renderHook(() => useRecentSyncEvents({
|
|
55
|
+
isOpen: true,
|
|
56
|
+
workspaceId: 'workspace-1',
|
|
57
|
+
refreshKeys: ['2026-04-18T12:00:00.000Z'],
|
|
58
|
+
}));
|
|
59
|
+
await waitFor(() => {
|
|
60
|
+
expect(result.current.syncRecentEventsLoading).toBe(false);
|
|
61
|
+
expect(result.current.syncRecentEventsError).toBe('Failed to load sync events (503)');
|
|
62
|
+
});
|
|
63
|
+
expect(result.current.syncRecentEvents).toEqual([]);
|
|
64
|
+
});
|
|
65
|
+
it('merges refreshed events into the recent event list', async () => {
|
|
66
|
+
fetchMock
|
|
67
|
+
.mockResolvedValueOnce({
|
|
68
|
+
ok: true,
|
|
69
|
+
json: async () => ({
|
|
70
|
+
events: [{
|
|
71
|
+
id: 1,
|
|
72
|
+
occurredAt: '2026-04-18T12:00:00.000Z',
|
|
73
|
+
eventType: 'pull',
|
|
74
|
+
status: 'success',
|
|
75
|
+
}],
|
|
76
|
+
}),
|
|
77
|
+
})
|
|
78
|
+
.mockResolvedValueOnce({
|
|
79
|
+
ok: true,
|
|
80
|
+
json: async () => ({
|
|
81
|
+
events: [{
|
|
82
|
+
id: 2,
|
|
83
|
+
occurredAt: '2026-04-18T12:01:00.000Z',
|
|
84
|
+
eventType: 'push',
|
|
85
|
+
status: 'success',
|
|
86
|
+
}],
|
|
87
|
+
}),
|
|
88
|
+
});
|
|
89
|
+
const { result, rerender } = renderHook(({ refreshKey }) => useRecentSyncEvents({
|
|
90
|
+
isOpen: true,
|
|
91
|
+
workspaceId: 'workspace-1',
|
|
92
|
+
refreshKeys: [refreshKey],
|
|
93
|
+
}), {
|
|
94
|
+
initialProps: { refreshKey: 'first' },
|
|
95
|
+
});
|
|
96
|
+
await waitFor(() => {
|
|
97
|
+
expect(result.current.syncRecentEvents).toHaveLength(1);
|
|
98
|
+
});
|
|
99
|
+
rerender({ refreshKey: 'second' });
|
|
100
|
+
await waitFor(() => {
|
|
101
|
+
expect(result.current.syncRecentEvents).toHaveLength(2);
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
it('captures and restores list scroll offset when the event list grows', () => {
|
|
105
|
+
let scrollHeight = 100;
|
|
106
|
+
const listEl = document.createElement('div');
|
|
107
|
+
Object.defineProperty(listEl, 'scrollTop', {
|
|
108
|
+
value: 24,
|
|
109
|
+
writable: true,
|
|
110
|
+
});
|
|
111
|
+
Object.defineProperty(listEl, 'scrollHeight', {
|
|
112
|
+
get: () => scrollHeight,
|
|
113
|
+
});
|
|
114
|
+
const pendingRestore = capturePendingSyncEventsScrollRestore(listEl);
|
|
115
|
+
expect(pendingRestore).toEqual({
|
|
116
|
+
scrollTop: 24,
|
|
117
|
+
scrollHeight: 100,
|
|
118
|
+
});
|
|
119
|
+
scrollHeight = 140;
|
|
120
|
+
const result = restorePendingSyncEventsScrollRestore(listEl, pendingRestore);
|
|
121
|
+
expect(result).toBeNull();
|
|
122
|
+
expect(listEl.scrollTop).toBe(64);
|
|
123
|
+
});
|
|
124
|
+
});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { type WorkspaceSyncDiagnosticsPresentation } from '../../utils/syncStatusPresentation';
|
|
2
|
+
import type { SyncEventRecord } from '../../utils/syncEventPresentation';
|
|
3
|
+
interface UseSyncStatusActionsInput {
|
|
4
|
+
currentWorkspaceId: string;
|
|
5
|
+
syncStatusLabel: string;
|
|
6
|
+
workspaceSyncSummary: string;
|
|
7
|
+
workspaceSyncRecommendedAction: string;
|
|
8
|
+
formattedLastSyncTime: string;
|
|
9
|
+
formattedLastPullTime: string;
|
|
10
|
+
formattedLastPushTime: string;
|
|
11
|
+
workspaceSyncDiagnostics: WorkspaceSyncDiagnosticsPresentation;
|
|
12
|
+
workspaceSyncPendingChanges: string | number;
|
|
13
|
+
syncLastError: string;
|
|
14
|
+
workspaceSyncPhase: string;
|
|
15
|
+
referenceMismatchCount: number;
|
|
16
|
+
syncRecentEvents: SyncEventRecord[];
|
|
17
|
+
loadRecentSyncEvents: () => Promise<SyncEventRecord[]>;
|
|
18
|
+
pushNotice: (message: string, tone: 'success' | 'error') => void;
|
|
19
|
+
resetWorkspaceSyncCursorAndPull: () => Promise<void>;
|
|
20
|
+
workspaceSyncBusy: boolean;
|
|
21
|
+
}
|
|
22
|
+
interface UseSyncStatusActionsResult {
|
|
23
|
+
workspaceSyncRepairBusy: boolean;
|
|
24
|
+
workspaceSyncRepairQueued: boolean;
|
|
25
|
+
workspaceSyncCopied: boolean;
|
|
26
|
+
handleCopySyncDetails: () => Promise<void>;
|
|
27
|
+
handleQueueOrRunRepairSync: () => void;
|
|
28
|
+
}
|
|
29
|
+
export declare function useSyncStatusActions({ currentWorkspaceId, syncStatusLabel, workspaceSyncSummary, workspaceSyncRecommendedAction, formattedLastSyncTime, formattedLastPullTime, formattedLastPushTime, workspaceSyncDiagnostics, workspaceSyncPendingChanges, syncLastError, workspaceSyncPhase, referenceMismatchCount, syncRecentEvents, loadRecentSyncEvents, pushNotice, resetWorkspaceSyncCursorAndPull, workspaceSyncBusy, }: UseSyncStatusActionsInput): UseSyncStatusActionsResult;
|
|
30
|
+
export {};
|