@tiinex/app 0.1.1

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.
Files changed (580) hide show
  1. package/LICENSE +201 -0
  2. package/NOTICE +31 -0
  3. package/README.md +26 -0
  4. package/docs/CONSUMER-CONTRACT.md +65 -0
  5. package/package.json +94 -0
  6. package/src/acceptance/knownScenarios.case.mjs +48 -0
  7. package/src/acceptance/knownScenarios.js +89 -0
  8. package/src/acceptance/postV423CanonicalTransitionProductVerticalSlice.case.mjs +774 -0
  9. package/src/acceptance/postV437M0ETimePortalProductParityClosure.case.mjs +51 -0
  10. package/src/acceptance/postV447M0FGithubSocialPublicationProductIntegration.case.mjs +33 -0
  11. package/src/acceptance/postV450M0ProductAcceptanceHardening.case.mjs +82 -0
  12. package/src/acceptance/postV470SchemaReadingContractMaterializationIdentitySourceCoalescingAuthorityCorrection.case.mjs +236 -0
  13. package/src/acceptance/recoveryAcceptance.case.mjs +196 -0
  14. package/src/adapters/adapter.definition.schema.json +33 -0
  15. package/src/adapters/archive/archive.adapter.case.mjs +212 -0
  16. package/src/adapters/export/export.adapter.js +79 -0
  17. package/src/adapters/git-native/git-native.adapter.js +43 -0
  18. package/src/adapters/github/github.adapter.case.mjs +843 -0
  19. package/src/adapters/github/github.adapter.js +395 -0
  20. package/src/adapters/github/github.issueEmbedded.js +262 -0
  21. package/src/adapters/github/github.issueMirror.js +309 -0
  22. package/src/adapters/github/github.issueSnapshot.js +475 -0
  23. package/src/adapters/github/github.issueSurface.js +188 -0
  24. package/src/adapters/github/github.issueTransport.js +237 -0
  25. package/src/adapters/github/github.publicationRead.js +24 -0
  26. package/src/adapters/github/github.readTransport.js +18 -0
  27. package/src/adapters/github/github.repoDiscovery.js +222 -0
  28. package/src/adapters/github/github.repoMirror.js +255 -0
  29. package/src/adapters/github/github.repoProxy.js +276 -0
  30. package/src/adapters/github/github.repoSurface.js +60 -0
  31. package/src/adapters/github/github.transportDiagnostics.js +68 -0
  32. package/src/adapters/local/local.adapter.case.mjs +72 -0
  33. package/src/adapters/local/local.adapter.js +188 -0
  34. package/src/adapters/registry.js +35 -0
  35. package/src/adapters/static/static.adapter.js +84 -0
  36. package/src/app/App.js +1 -0
  37. package/src/app/TiinexApp.jsx +822 -0
  38. package/src/app/appShell.views.jsx +58 -0
  39. package/src/app/artifactAuthoringCapability.js +49 -0
  40. package/src/app/boot/bootApp.js +19 -0
  41. package/src/app/boot/environment.js +1 -0
  42. package/src/app/canonicalAuthoringValues.js +4 -0
  43. package/src/app/canonicalCreationProductController.js +57 -0
  44. package/src/app/canonicalCreationProductSettlement.case.mjs +10 -0
  45. package/src/app/canonicalCreationProductSettlement.js +11 -0
  46. package/src/app/canonicalReferenceLocalCreateCommand.js +210 -0
  47. package/src/app/canonicalReferenceTargets.js +73 -0
  48. package/src/app/canonicalTransitionLocalCreateCommand.js +217 -0
  49. package/src/app/defaultWorkspaceStart.case.mjs +39 -0
  50. package/src/app/defaultWorkspaceStart.js +65 -0
  51. package/src/app/defaultWorkspaceStartCommand.js +55 -0
  52. package/src/app/durableLocalMutationPolicy.js +21 -0
  53. package/src/app/githubMaterializationSummary.js +69 -0
  54. package/src/app/githubProgress.js +25 -0
  55. package/src/app/githubSourceInput.js +47 -0
  56. package/src/app/githubSourceMaterializationCommand.js +97 -0
  57. package/src/app/githubSourceOperation.js +226 -0
  58. package/src/app/governanceDialogData.js +27 -0
  59. package/src/app/handoffPackageImportCommand.js +182 -0
  60. package/src/app/historyAuthority.js +53 -0
  61. package/src/app/initialWorkspaceBootstrapOperation.js +105 -0
  62. package/src/app/lineageCommand.js +118 -0
  63. package/src/app/lineageSourceRecovery.js +339 -0
  64. package/src/app/localDraftMutationCommand.js +174 -0
  65. package/src/app/localMaterialCommand.js +124 -0
  66. package/src/app/nodeGraphVerse.case.mjs +111 -0
  67. package/src/app/persistenceOwnership.js +92 -0
  68. package/src/app/productStateBoundary.js +7 -0
  69. package/src/app/providers/AppProviders.js +1 -0
  70. package/src/app/providers/LocaleProvider.js +1 -0
  71. package/src/app/providers/SchemaRegistryProvider.js +1 -0
  72. package/src/app/providers/WorkspaceProvider.js +1 -0
  73. package/src/app/publicTarget.js +251 -0
  74. package/src/app/publicTargetRestoreCommand.js +149 -0
  75. package/src/app/recordUi.cache.js +35 -0
  76. package/src/app/recordUi.js +11 -0
  77. package/src/app/routes/RouteSurface.js +1 -0
  78. package/src/app/routes/routes.js +1 -0
  79. package/src/app/runtimeState.js +54 -0
  80. package/src/app/schemaCurrentDeclaration.js +69 -0
  81. package/src/app/schemaFactoryLocalCreateCommand.js +101 -0
  82. package/src/app/schemaFactoryViewerProof.case.mjs +134 -0
  83. package/src/app/schemaFactoryViewerProof.js +20 -0
  84. package/src/app/schemaNavigationCommand.js +285 -0
  85. package/src/app/schemaNavigationMaterialization.js +171 -0
  86. package/src/app/schemaNavigationRuntimeCatalog.js +25 -0
  87. package/src/app/schemaNavigationState.js +66 -0
  88. package/src/app/schemaReadingContractQualification.js +91 -0
  89. package/src/app/schemaSourceRecovery.js +373 -0
  90. package/src/app/scrollPersistence.js +30 -0
  91. package/src/app/semanticOperationHistory.js +18 -0
  92. package/src/app/shareActionCommand.js +55 -0
  93. package/src/app/shareProjection.js +190 -0
  94. package/src/app/shell/AppShell.js +1 -0
  95. package/src/app/shell/Header.js +1 -0
  96. package/src/app/shell/Navigation.js +1 -0
  97. package/src/app/shell/SurfaceSwitcher.js +1 -0
  98. package/src/app/sourceTransportRefresh.js +176 -0
  99. package/src/app/startupOwnership.js +40 -0
  100. package/src/app/startupPresentation.case.mjs +34 -0
  101. package/src/app/startupPresentation.js +33 -0
  102. package/src/app/startupPresentation.views.jsx +21 -0
  103. package/src/app/startupRenderPhase.js +9 -0
  104. package/src/app/startupWorkspaceCommand.js +62 -0
  105. package/src/app/startupWorkspaceConfigApplication.js +49 -0
  106. package/src/app/statePersistenceScheduler.js +106 -0
  107. package/src/app/tiinexAppConfigPlan.js +108 -0
  108. package/src/app/tiinexAppConfigSource.js +349 -0
  109. package/src/app/tiinexAppStartupSource.js +79 -0
  110. package/src/app/tiinexHostedWorkspaceConventions.js +572 -0
  111. package/src/app/timePortalHistoricalRead.js +114 -0
  112. package/src/app/timePortalSnapshotResolution.js +53 -0
  113. package/src/app/urlMaterialCommand.js +24 -0
  114. package/src/app/useCanonicalPlacementSelectionOptions.js +9 -0
  115. package/src/app/useCanonicalReferenceSelectionOptions.js +8 -0
  116. package/src/app/useLocalMaterialIntake.js +68 -0
  117. package/src/app/useTimePortalProductController.jsx +111 -0
  118. package/src/app/useWorkspaceEntrypointIntake.js +77 -0
  119. package/src/app/useWorkspaceSelectionProductController.jsx +21 -0
  120. package/src/app/viewState.js +35 -0
  121. package/src/app/viewport.js +21 -0
  122. package/src/app/visualDormancy.js +286 -0
  123. package/src/app/workspaceContinuityNotices.js +32 -0
  124. package/src/app/workspaceDisplayCounts.js +9 -0
  125. package/src/app/workspaceEntrypointIntakeCommand.js +87 -0
  126. package/src/app/workspaceEntrypointProductRouting.case.mjs +20 -0
  127. package/src/app/workspaceExportCommand.js +21 -0
  128. package/src/app/workspaceExportDownload.js +23 -0
  129. package/src/app/workspaceExportExecutionCommand.js +10 -0
  130. package/src/app/workspaceGithubPublication.js +237 -0
  131. package/src/app/workspaceHandoffExport.js +56 -0
  132. package/src/app/workspaceHomeTarget.js +9 -0
  133. package/src/app/workspaceMulticolumn.js +113 -0
  134. package/src/app/workspaceNavigationParity.case.mjs +110 -0
  135. package/src/app/workspaceOpenProgress.js +26 -0
  136. package/src/app/workspacePlacementOptions.js +46 -0
  137. package/src/app/workspaceRecordActions.js +158 -0
  138. package/src/app/workspaceScopedInteraction.js +68 -0
  139. package/src/app/workspaceSelectionOriginContext.js +29 -0
  140. package/src/app/workspaceSelectionSession.js +54 -0
  141. package/src/app/workspaceSourceCloseCommand.js +25 -0
  142. package/src/app/workspaceSpineProductRouting.case.mjs +22 -0
  143. package/src/app/workspaceStartupTransition.js +32 -0
  144. package/src/app/workspaceWindow.js +85 -0
  145. package/src/artifacts/artifact.fixture.js +1 -0
  146. package/src/artifacts/artifact.identity.js +6 -0
  147. package/src/artifacts/artifact.identityAggregation.js +218 -0
  148. package/src/artifacts/artifact.model.js +2 -0
  149. package/src/artifacts/artifact.parse.case.mjs +196 -0
  150. package/src/artifacts/artifact.participantIndex.js +189 -0
  151. package/src/artifacts/fixtures/evidence.trace.md +50 -0
  152. package/src/artifacts/fixtures/topic.trace.md +33 -0
  153. package/src/artifacts/fixtures/unknown-schema.trace.md +25 -0
  154. package/src/audit/audit.findings.js +1 -0
  155. package/src/audit/audit.model.js +2 -0
  156. package/src/audit/audit.plan.js +13 -0
  157. package/src/audit/audit.report.js +12 -0
  158. package/src/audit/audit.severity.js +1 -0
  159. package/src/audit/audit.traverse.js +119 -0
  160. package/src/audit/integrity/auditIntegrity.checks.js +1 -0
  161. package/src/audit/integrity/auditIntegrity.compare.js +1 -0
  162. package/src/audit/lineage/auditLineage.load.js +1 -0
  163. package/src/audit/lineage/auditLineage.plan.js +1 -0
  164. package/src/audit/lineage/auditLineage.resolve.js +12 -0
  165. package/src/audit/sources/auditSources.boundaries.js +1 -0
  166. package/src/audit/sources/auditSources.checks.js +1 -0
  167. package/src/audit/validation/auditValidation.recheck.js +1 -0
  168. package/src/audit/validation/auditValidation.run.js +1 -0
  169. package/src/build.identity.js +15 -0
  170. package/src/commands/command.vocabulary.js +14 -0
  171. package/src/conformance/conformance.fixtures.js +151 -0
  172. package/src/conformance/conformance.run.js +238 -0
  173. package/src/data/applicationDataStore.js +23 -0
  174. package/src/data/companionAccess.js +35 -0
  175. package/src/diagnostics/events.js +1 -0
  176. package/src/diagnostics/invariant.js +1 -0
  177. package/src/diagnostics/schemaBindingChecks.js +1 -0
  178. package/src/diagnostics/schemaModuleChecks.js +1 -0
  179. package/src/diagnostics/sourceBoundaryChecks.js +5 -0
  180. package/src/diagnostics/sourceTransport.report.js +190 -0
  181. package/src/discovery/discovery.controls.js +7 -0
  182. package/src/export/export.plan.js +182 -0
  183. package/src/export/handoff.plan.js +50 -0
  184. package/src/export/package.builder.case.mjs +97 -0
  185. package/src/export/package.controlTopology.case.mjs +130 -0
  186. package/src/export/package.zip.case.mjs +33 -0
  187. package/src/graph/artifactGraph.model.js +344 -0
  188. package/src/graph/artifactGraph.project.js +139 -0
  189. package/src/graph/artifactGraph.worker.js +10 -0
  190. package/src/i18n/i18n.keys.js +1 -0
  191. package/src/i18n/i18n.provider.js +1 -0
  192. package/src/i18n/i18n.resolve.js +5 -0
  193. package/src/i18n/locales/en/common.json +4 -0
  194. package/src/i18n/locales/en/schemas/evidence.json +3 -0
  195. package/src/i18n/locales/en/schemas/presentation-surface.json +3 -0
  196. package/src/i18n/locales/en/schemas/preservation.json +3 -0
  197. package/src/i18n/locales/en/schemas/root.json +3 -0
  198. package/src/i18n/locales/en/schemas/schema-module.json +3 -0
  199. package/src/i18n/locales/en/schemas/topic.json +3 -0
  200. package/src/i18n/locales/en/surfaces/audit.json +3 -0
  201. package/src/i18n/locales/en/surfaces/create.json +3 -0
  202. package/src/i18n/locales/en/surfaces/detail.json +3 -0
  203. package/src/i18n/locales/en/surfaces/display-options.json +3 -0
  204. package/src/i18n/locales/en/surfaces/edit.json +3 -0
  205. package/src/i18n/locales/en/surfaces/feed.json +3 -0
  206. package/src/i18n/locales/en/surfaces/lineage.json +3 -0
  207. package/src/i18n/locales/en/surfaces/preview.json +3 -0
  208. package/src/i18n/locales/en/surfaces/share.json +3 -0
  209. package/src/i18n/locales/en/surfaces/source-settings.json +3 -0
  210. package/src/i18n/locales/en/surfaces/tree.json +3 -0
  211. package/src/i18n/locales/sv/common.json +4 -0
  212. package/src/i18n/locales/sv/schemas/evidence.json +3 -0
  213. package/src/i18n/locales/sv/schemas/presentation-surface.json +3 -0
  214. package/src/i18n/locales/sv/schemas/preservation.json +3 -0
  215. package/src/i18n/locales/sv/schemas/root.json +3 -0
  216. package/src/i18n/locales/sv/schemas/schema-module.json +3 -0
  217. package/src/i18n/locales/sv/schemas/topic.json +3 -0
  218. package/src/i18n/locales/sv/surfaces/audit.json +3 -0
  219. package/src/i18n/locales/sv/surfaces/create.json +3 -0
  220. package/src/i18n/locales/sv/surfaces/detail.json +3 -0
  221. package/src/i18n/locales/sv/surfaces/display-options.json +3 -0
  222. package/src/i18n/locales/sv/surfaces/edit.json +3 -0
  223. package/src/i18n/locales/sv/surfaces/feed.json +3 -0
  224. package/src/i18n/locales/sv/surfaces/lineage.json +3 -0
  225. package/src/i18n/locales/sv/surfaces/preview.json +3 -0
  226. package/src/i18n/locales/sv/surfaces/share.json +3 -0
  227. package/src/i18n/locales/sv/surfaces/source-settings.json +3 -0
  228. package/src/i18n/locales/sv/surfaces/tree.json +3 -0
  229. package/src/index.js +10 -0
  230. package/src/integrity/integrity.testFixture.js +9 -0
  231. package/src/interaction/interaction.spine.js +12 -0
  232. package/src/lineage/lineage.audit.js +1 -0
  233. package/src/lineage/lineage.edges.js +1 -0
  234. package/src/main.js +319 -0
  235. package/src/main.jsx +34 -0
  236. package/src/multiverse/multiverse.model.js +10 -0
  237. package/src/parity/poc.m1ParityScenarios.js +42 -0
  238. package/src/parity/poc.parityLedger.js +261 -0
  239. package/src/publication/publication.githubSocialContract.case.mjs +247 -0
  240. package/src/publication/publication.preflight.case.mjs +64 -0
  241. package/src/react/TiinexApplication.jsx +39 -0
  242. package/src/react/VerseHost.jsx +29 -0
  243. package/src/react/applicationDataContext.jsx +30 -0
  244. package/src/react.js +2 -0
  245. package/src/readers/modes/audit.reader.js +1 -0
  246. package/src/readers/modes/detail.reader.js +1 -0
  247. package/src/readers/modes/handover.reader.js +1 -0
  248. package/src/readers/modes/mobile.reader.js +1 -0
  249. package/src/readers/modes/print.reader.js +1 -0
  250. package/src/readers/modes/scan.reader.js +1 -0
  251. package/src/readers/reader.model.js +1 -0
  252. package/src/readers/reader.resolve.js +2 -0
  253. package/src/reingest/reingest.plan.case.mjs +65 -0
  254. package/src/runtime.js +54 -0
  255. package/src/schemas/README.md +99 -0
  256. package/src/schemas/coordination/handoff/tiinex.handoff.v1.schema.md +614 -0
  257. package/src/schemas/coordination/project/tiinex.project.v1.schema.md +311 -0
  258. package/src/schemas/core/decision/tiinex.decision.v1.schema.md +227 -0
  259. package/src/schemas/core/evidence/tiinex.evidence.v1.schema.md +318 -0
  260. package/src/schemas/core/feedback/tiinex.feedback.v1.schema.md +243 -0
  261. package/src/schemas/core/interpretation/.transitions/evidence-to-interpretation-transition-definition.trace.md +102 -0
  262. package/src/schemas/core/interpretation/tiinex.interpretation.v1.schema.md +308 -0
  263. package/src/schemas/core/preservation/tiinex.preservation.v1.schema.md +312 -0
  264. package/src/schemas/core/relation/.generation/reference-relation-generation-authority.trace.md +185 -0
  265. package/src/schemas/core/relation/.transitions/topic-references-task-transition-definition.trace.md +119 -0
  266. package/src/schemas/core/relation/tiinex.relation.v1.schema.md +240 -0
  267. package/src/schemas/core/relation/workspace/representation/tiinex.workspace.representation.v1.schema.md +550 -0
  268. package/src/schemas/core/signal/tiinex.signal.v1.schema.md +239 -0
  269. package/src/schemas/core/task/.transitions/create-task-transition-definition.trace.md +93 -0
  270. package/src/schemas/core/task/.transitions/topic-to-task-transition-definition.trace.md +102 -0
  271. package/src/schemas/core/task/task-semantic-package.trace.md +53 -0
  272. package/src/schemas/core/task/tiinex.task.v1-transitions.trace.md +33 -0
  273. package/src/schemas/core/task/tiinex.task.v1.authoring.js +65 -0
  274. package/src/schemas/core/task/tiinex.task.v1.schema.md +229 -0
  275. package/src/schemas/core/topic/.transitions/create-topic-transition-definition.trace.md +93 -0
  276. package/src/schemas/core/topic/tiinex.topic.v1-transitions.trace.md +33 -0
  277. package/src/schemas/core/topic/tiinex.topic.v1.schema.md +197 -0
  278. package/src/schemas/core/topic/topic-semantic-package.trace.md +53 -0
  279. package/src/schemas/discovery/finding/tiinex.discovery.finding.v1.schema.md +240 -0
  280. package/src/schemas/discovery/tiinex.discovery.v1.schema.md +294 -0
  281. package/src/schemas/manifest.json +367 -0
  282. package/src/schemas/origins.js +46 -0
  283. package/src/schemas/party/organization/tiinex.party.organization.v1.schema.md +290 -0
  284. package/src/schemas/party/role/tiinex.party.role.v1.schema.md +298 -0
  285. package/src/schemas/party/tiinex.party.v1.schema.js +14 -0
  286. package/src/schemas/party/tiinex.party.v1.schema.json +23 -0
  287. package/src/schemas/party/tiinex.party.v1.schema.md +311 -0
  288. package/src/schemas/party/tiinex.party.v1.schema.runtime.json +2033 -0
  289. package/src/schemas/party/tiinex.party.v1.schema.source.js +9 -0
  290. package/src/schemas/presentation/surface/tiinex.presentation.surface.v1.schema.md +476 -0
  291. package/src/schemas/reduction/tiinex.reduction.v1.schema.md +248 -0
  292. package/src/schemas/schema/module/tiinex.schema.module.v1.schema.md +465 -0
  293. package/src/schemas/schema.companionContract.case.mjs +259 -0
  294. package/src/schemas/schema.factory.case.mjs +256 -0
  295. package/src/schemas/schema.factory.viewerProjection.js +183 -0
  296. package/src/schemas/schemaMarkdownCatalog.js +19 -0
  297. package/src/schemas/tiinex.root.v1.schema.md +865 -0
  298. package/src/schemas/validation/finding/tiinex.validation.finding.v1.schema.md +309 -0
  299. package/src/schemas/validation/method/tiinex.validation.method.v1.schema.md +280 -0
  300. package/src/schemas/validation/report/tiinex.validation.report.v1.schema.md +300 -0
  301. package/src/schemas/workspace/tiinex.workspace.v1.schema.md +486 -0
  302. package/src/schemas/workspace/workspace.add.views.jsx +327 -0
  303. package/src/schemas/workspace/workspace.audit.views.jsx +160 -0
  304. package/src/schemas/workspace/workspace.auditBadge.views.jsx +98 -0
  305. package/src/schemas/workspace/workspace.canonicalReferenceDialog.views.jsx +63 -0
  306. package/src/schemas/workspace/workspace.canonicalTaskDialog.views.jsx +169 -0
  307. package/src/schemas/workspace/workspace.cardActions.js +9 -0
  308. package/src/schemas/workspace/workspace.cards.views.jsx +146 -0
  309. package/src/schemas/workspace/workspace.chrome.views.jsx +299 -0
  310. package/src/schemas/workspace/workspace.continuationDialog.views.jsx +80 -0
  311. package/src/schemas/workspace/workspace.discovery.views.jsx +63 -0
  312. package/src/schemas/workspace/workspace.discoveryRenderWindow.js +56 -0
  313. package/src/schemas/workspace/workspace.displayOptions.views.jsx +114 -0
  314. package/src/schemas/workspace/workspace.entrypointChoice.views.jsx +30 -0
  315. package/src/schemas/workspace/workspace.exportDialog.controller.jsx +40 -0
  316. package/src/schemas/workspace/workspace.exportDialog.views.jsx +142 -0
  317. package/src/schemas/workspace/workspace.governance.views.jsx +45 -0
  318. package/src/schemas/workspace/workspace.graph.views.jsx +134 -0
  319. package/src/schemas/workspace/workspace.lineage.views.jsx +307 -0
  320. package/src/schemas/workspace/workspace.read.views.jsx +105 -0
  321. package/src/schemas/workspace/workspace.recordActionButton.views.jsx +35 -0
  322. package/src/schemas/workspace/workspace.recordDialogs.views.jsx +257 -0
  323. package/src/schemas/workspace/workspace.selection.views.jsx +14 -0
  324. package/src/schemas/workspace/workspace.sourceReceipt.views.jsx +40 -0
  325. package/src/schemas/workspace/workspace.timePortal.views.jsx +56 -0
  326. package/src/schemas/workspace/workspace.tree.views.jsx +107 -0
  327. package/src/schemas/workspace/workspace.viewFormatting.js +172 -0
  328. package/src/schemas/workspace/workspace.views.jsx +210 -0
  329. package/src/source-settings/sourceSettings.model.js +7 -0
  330. package/src/sources/draft/draft.source.js +1 -0
  331. package/src/sources/github/github.loader.js +204 -0
  332. package/src/sources/github/github.permalink.js +1 -0
  333. package/src/sources/github/github.source.js +1 -0
  334. package/src/sources/github/github.transport.case.mjs +237 -0
  335. package/src/sources/github/github.transport.js +472 -0
  336. package/src/sources/local/local.source.js +1 -0
  337. package/src/sources/source.assetReferences.js +109 -0
  338. package/src/sources/source.boundaries.js +24 -0
  339. package/src/sources/source.identity.js +56 -0
  340. package/src/sources/source.model.case.mjs +26 -0
  341. package/src/sources/source.model.js +56 -0
  342. package/src/sources/source.presenter.js +66 -0
  343. package/src/sources/source.resolve.js +11 -0
  344. package/src/sources/static/static.source.js +1 -0
  345. package/src/sources/transport.policy.case.mjs +39 -0
  346. package/src/sources/transport.policy.js +81 -0
  347. package/src/storage/storage.policy.js +79 -0
  348. package/src/styles/app.css +8699 -0
  349. package/src/styles/responsive.css +10 -0
  350. package/src/styles/theme.css +4 -0
  351. package/src/styles/tokens.css +30 -0
  352. package/src/surfaces/audit/AuditSurface.js +1 -0
  353. package/src/surfaces/audit/audit.model.js +1 -0
  354. package/src/surfaces/audit/audit.render.js +1 -0
  355. package/src/surfaces/contracts.js +45 -0
  356. package/src/surfaces/create/CreateSurface.js +1 -0
  357. package/src/surfaces/create/create.model.js +1 -0
  358. package/src/surfaces/create/create.render.js +1 -0
  359. package/src/surfaces/detail/DetailSurface.js +1 -0
  360. package/src/surfaces/detail/detail.model.js +1 -0
  361. package/src/surfaces/detail/detail.render.js +1 -0
  362. package/src/surfaces/display-options/DisplayOptionsSurface.js +1 -0
  363. package/src/surfaces/display-options/displayOptions.model.js +1 -0
  364. package/src/surfaces/display-options/displayOptions.render.js +1 -0
  365. package/src/surfaces/edit/EditSurface.js +1 -0
  366. package/src/surfaces/edit/edit.model.js +1 -0
  367. package/src/surfaces/edit/edit.render.js +1 -0
  368. package/src/surfaces/feed/FeedSurface.js +1 -0
  369. package/src/surfaces/feed/feed.model.js +1 -0
  370. package/src/surfaces/feed/feed.render.js +1 -0
  371. package/src/surfaces/lineage/LineageSurface.js +1 -0
  372. package/src/surfaces/lineage/lineage.model.js +1 -0
  373. package/src/surfaces/lineage/lineage.render.js +1 -0
  374. package/src/surfaces/preview/PreviewSurface.js +1 -0
  375. package/src/surfaces/preview/preview.model.js +1 -0
  376. package/src/surfaces/preview/preview.render.js +1 -0
  377. package/src/surfaces/registry.js +58 -0
  378. package/src/surfaces/share/ShareSurface.js +1 -0
  379. package/src/surfaces/share/share.model.js +1 -0
  380. package/src/surfaces/share/share.render.js +1 -0
  381. package/src/surfaces/source-settings/SourceSettingsSurface.js +1 -0
  382. package/src/surfaces/source-settings/sourceSettings.model.js +1 -0
  383. package/src/surfaces/source-settings/sourceSettings.render.js +1 -0
  384. package/src/surfaces/surfaceContext.js +1 -0
  385. package/src/surfaces/tree/TreeSurface.js +1 -0
  386. package/src/surfaces/tree/tree.model.js +1 -0
  387. package/src/surfaces/tree/tree.render.js +1 -0
  388. package/src/tooling/portable/adapters/cli/cli.common-output.case.mjs +153 -0
  389. package/src/tooling/portable/adapters/cli/cli.handoff-sibling-allocation.case.mjs +52 -0
  390. package/src/tooling/portable/adapters/cli/cli.run.case.mjs +372 -0
  391. package/src/tooling/portable/adapters/cli/cli.summaryProjection.case.mjs +46 -0
  392. package/src/tooling/portable/audit/audit.capability.case.mjs +45 -0
  393. package/src/tooling/portable/fixtures/legacy-artifacts/collaboration/dogfood/001-tiinex-development-dogfood-collaboration-model.trace.fixture.txt +37 -0
  394. package/src/tooling/portable/fixtures/legacy-artifacts/handoff/tooling/001-v480-tooling-workflow-schema-enablement-handoff.trace.fixture.txt +108 -0
  395. package/src/tooling/portable/fixtures/legacy-artifacts/handoff/tooling/002-v481-tooling-recipient-relative-handoff-material-closure-planner-foundation-handoff.trace.fixture.txt +130 -0
  396. package/src/tooling/portable/fixtures/legacy-artifacts/loom/role/001-loom-role.trace.fixture.txt +61 -0
  397. package/src/tooling/portable/fixtures/legacy-artifacts/sigma/role/001-1-sigma-role.trace.fixture.txt +61 -0
  398. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-1-1-1-site-tooling-v474-loaded-parent-identity-evidence-closure-result.trace.fixture.txt +48 -0
  399. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-1-1-site-tooling-v474-loaded-parent-identity-evidence-closure.trace.fixture.txt +48 -0
  400. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-1-site-tooling-v473-portable-parent-authority-coherence-metadata-fidelity-closure-result.trace.fixture.txt +48 -0
  401. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-1-site-tooling-v473-portable-parent-authority-coherence-metadata-fidelity-closure.trace.fixture.txt +48 -0
  402. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-1-site-tooling-v472-portable-exact-authoring-fidelity-closure-result.trace.fixture.txt +48 -0
  403. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-1-site-tooling-v472-portable-exact-authoring-fidelity-closure.trace.fixture.txt +48 -0
  404. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-1-site-tooling-v471-portable-lineage-authoring-closure-result.trace.fixture.txt +48 -0
  405. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/001-site-tooling-v471-portable-lineage-authoring-closure.trace.fixture.txt +39 -0
  406. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/002-1-v475-canonical-artifact-envelope-reference-integrity-validation.trace.fixture.txt +43 -0
  407. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/003-1-v476-canonical-authority-binding-integrity-method-lineage-alloca.trace.fixture.txt +42 -0
  408. package/src/tooling/portable/fixtures/legacy-artifacts/tooling/dogfood/027-handoff-package-workspace-archive-and-control-plane-minimality-audit.trace.fixture.txt +56 -0
  409. package/src/tooling/portable/fixtures/legacyArtifactFixtures.mjs +34 -0
  410. package/src/tooling/portable/grounding/grounding.capsule.case.mjs +65 -0
  411. package/src/tooling/portable/grounding/grounding.readiness.case.mjs +543 -0
  412. package/src/tooling/portable/grounding/grounding.semanticIntegration.case.mjs +131 -0
  413. package/src/tooling/portable/handoff/boundedWorkspaceRepresentation.case.mjs +103 -0
  414. package/src/tooling/portable/handoff/carrierLineage.fixedWidth.case.mjs +97 -0
  415. package/src/tooling/portable/handoff/coldStartQualification.case.mjs +293 -0
  416. package/src/tooling/portable/handoff/fixtures/027-invalid-audit-result.fixture.txt +192 -0
  417. package/src/tooling/portable/handoff/fixtures/027-invalid-return-handoff.fixture.txt +92 -0
  418. package/src/tooling/portable/handoff/fixtures/cold-start-qualification.v1.examples.json +60 -0
  419. package/src/tooling/portable/handoff/handoff.manufacture.case.mjs +293 -0
  420. package/src/tooling/portable/handoff/materialClosure.case.mjs +727 -0
  421. package/src/tooling/portable/handoff/multiRootManufacture.case.mjs +615 -0
  422. package/src/tooling/portable/handoff/operatorBridgeCore.case.mjs +205 -0
  423. package/src/tooling/portable/handoff/workspaceLandingPlan.case.mjs +143 -0
  424. package/src/tooling/portable/input/node.input.case.mjs +293 -0
  425. package/src/tooling/portable/lifecycle/lifecycle.readiness.case.mjs +179 -0
  426. package/src/tooling/portable/lineage/fixtures/lineage.integrity.repair-projection.v1.examples.json +605 -0
  427. package/src/tooling/portable/lineage/lineage.integrity.shared-capability.case.mjs +37 -0
  428. package/src/tooling/portable/lineage/publicationProviderReceipt.fixture.mjs +50 -0
  429. package/src/tooling/portable/package/fixtures/reference-relation-generation-authority.trace.md +84 -0
  430. package/src/tooling/portable/package/fixtures/tiinex.root.v1.package-authority.contract-fixture.md +64 -0
  431. package/src/tooling/portable/package/fixtures/tiinex.schema.generation.v1.generation-binding.contract-fixture.md +140 -0
  432. package/src/tooling/portable/package/fixtures/tiinex.schema.transition.companion.v1.contract-fixture.md +73 -0
  433. package/src/tooling/portable/package/fixtures/tiinex.semantic.package.v1.contract-fixture.md +147 -0
  434. package/src/tooling/portable/package/fixtures/tiinex.transition.definition.v1.package-contract-fixture.md +77 -0
  435. package/src/tooling/portable/providers/schema.providers.genericity.case.mjs +31 -0
  436. package/src/tooling/portable/reduction/reduction.preflight.case.mjs +298 -0
  437. package/src/tooling/portable/schema/fixtures/evidence-preservation-body.inheritance-record-fixture.md +65 -0
  438. package/src/tooling/portable/schema/fixtures/tiinex.portal.time.v1.contract-fixture.md +294 -0
  439. package/src/tooling/portable/schema/fixtures/tiinex.root.v1.contract-fixture.md +584 -0
  440. package/src/tooling/portable/schema/fixtures/tiinex.root.v1.machine-shape.contract-fixture.md +44 -0
  441. package/src/tooling/portable/schema/fixtures/tiinex.root.v1.ordinary-target.contract-fixture.md +630 -0
  442. package/src/tooling/portable/schema/fixtures/tiinex.schema.contract.v1.repeated-record.contract-fixture.md +69 -0
  443. package/src/tooling/portable/schema/fixtures/tiinex.schema.generation.v1.repeated-record.contract-fixture.md +98 -0
  444. package/src/tooling/portable/schema/fixtures/tiinex.schema.inheritance.v1.repeated-record.contract-fixture.md +58 -0
  445. package/src/tooling/portable/schema/fixtures/tiinex.task.v1.contract-fixture.md +165 -0
  446. package/src/tooling/portable/schema/fixtures/tiinex.transition.definition.v1.contract-fixture.md +744 -0
  447. package/src/tooling/portable/schema/fixtures/tiinex.transition.definition.v1.field-domain.contract-fixture.md +319 -0
  448. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.relation.v1.schema.md +240 -0
  449. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.schema.contract.v1.schema.md +391 -0
  450. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.schema.generation.v1.schema.md +379 -0
  451. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.schema.transition.companion.v1.schema.md +265 -0
  452. package/src/transitions/canonical-schema-cache/053d46ce082d4ec261b82abc44ecca403d61e240/tiinex.semantic.package.v1.schema.md +402 -0
  453. package/src/transitions/canonical-schema-cache/52ecdea0a75893882ce282214d155f70e1309c2a/tiinex.topic.v1.schema.md +197 -0
  454. package/src/transitions/canonical-schema-cache/d69b8ff55a56b8cb9282b8684db6a938a4435b94/tiinex.root.v1.schema.md +797 -0
  455. package/src/transitions/canonical-schema-cache/d69b8ff55a56b8cb9282b8684db6a938a4435b94/tiinex.transition.definition.v1.schema.md +1062 -0
  456. package/src/transitions/canonicalTransition.packageContracts.js +22 -0
  457. package/src/transitions/canonicalTransition.productDefaults.js +105 -0
  458. package/src/transitions/canonicalTransition.schemaCache.case.mjs +45 -0
  459. package/src/transitions/canonicalTransition.schemaCache.js +81 -0
  460. package/src/transitions/canonicalTransition.semanticPackage.js +146 -0
  461. package/src/transitions/record.transitions.case.mjs +88 -0
  462. package/src/transitions/transition.authorityRepresentation.js +55 -0
  463. package/src/transitions/transition.availabilityPlanner.js +376 -0
  464. package/src/transitions/transition.availabilitySemantics.js +150 -0
  465. package/src/transitions/transition.definitionReadProjection.js +107 -0
  466. package/src/transitions/transition.definitionRegistry.js +355 -0
  467. package/src/transitions/transition.definitionRegistryAggregation.js +21 -0
  468. package/src/transitions/transition.definitions.js +46 -0
  469. package/src/transitions/transition.explicitGenerationPlanner.js +58 -0
  470. package/src/transitions/transition.generationInputPlanner.js +19 -0
  471. package/src/transitions/transition.interpretationMaterializer.js +2 -0
  472. package/src/transitions/transition.invocationBindingPacket.js +52 -0
  473. package/src/transitions/transition.invocationBindingPlanner.js +467 -0
  474. package/src/transitions/transition.legacyShorthand.js +133 -0
  475. package/src/transitions/transition.localArtifactMaterializers.js +16 -0
  476. package/src/transitions/transition.localCreateCapability.js +111 -0
  477. package/src/transitions/transition.outputMaterializationPlanner.js +336 -0
  478. package/src/transitions/transition.parentReference.js +90 -0
  479. package/src/transitions/transition.presentation.js +43 -0
  480. package/src/transitions/transition.productPreparation.js +377 -0
  481. package/src/transitions/transition.productPresentation.browser.js +28 -0
  482. package/src/transitions/transition.productPresentation.js +55 -0
  483. package/src/transitions/transition.referenceCreateCapability.js +119 -0
  484. package/src/transitions/transition.referenceTarget.js +50 -0
  485. package/src/transitions/transition.relationMaterializer.js +2 -0
  486. package/src/transitions/transition.resultSemantics.js +453 -0
  487. package/src/transitions/transition.taskMaterializer.js +2 -0
  488. package/src/transitions/transition.topicMaterializer.js +2 -0
  489. package/src/transitions/transition.validate.case.mjs +58 -0
  490. package/src/ui/cards/ArtifactCard.js +1 -0
  491. package/src/ui/cards/SchemaCard.js +1 -0
  492. package/src/ui/cards/SourceCard.js +1 -0
  493. package/src/ui/dialog.presenter.js +24 -0
  494. package/src/ui/feedback/DegradedNotice.js +1 -0
  495. package/src/ui/feedback/EmptyState.js +1 -0
  496. package/src/ui/feedback/ValidationNotice.js +1 -0
  497. package/src/ui/forms/FormRenderer.js +1 -0
  498. package/src/ui/forms/fields/MarkdownField.js +1 -0
  499. package/src/ui/forms/fields/SelectField.js +1 -0
  500. package/src/ui/forms/fields/SourcePickerField.js +1 -0
  501. package/src/ui/forms/fields/TextField.js +1 -0
  502. package/src/ui/icon.paths.js +37 -0
  503. package/src/ui/layout/Panel.js +1 -0
  504. package/src/ui/layout/ResponsiveFrame.js +1 -0
  505. package/src/ui/layout/SplitView.js +1 -0
  506. package/src/ui/layout/Stack.js +1 -0
  507. package/src/ui/panels/DetailPanel.js +1 -0
  508. package/src/ui/panels/LineagePanel.js +1 -0
  509. package/src/ui/panels/SourcePanel.js +1 -0
  510. package/src/ui/primitives/Badge.js +1 -0
  511. package/src/ui/primitives/Badge.jsx +5 -0
  512. package/src/ui/primitives/Button.js +1 -0
  513. package/src/ui/primitives/Button.jsx +12 -0
  514. package/src/ui/primitives/Card.js +1 -0
  515. package/src/ui/primitives/Field.js +1 -0
  516. package/src/ui/primitives/Field.jsx +21 -0
  517. package/src/ui/primitives/Icon.jsx +90 -0
  518. package/src/ui/primitives/Modal.jsx +27 -0
  519. package/src/validation/i18n.js +37 -0
  520. package/src/validation/validateArtifact.case.mjs +41 -0
  521. package/src/verses/column/ColumnVerse.js +1 -0
  522. package/src/verses/column/column.model.js +6 -0
  523. package/src/verses/column/column.project.js +7 -0
  524. package/src/verses/context.js +26 -0
  525. package/src/verses/contracts.js +1 -0
  526. package/src/verses/hostRegistry.js +47 -0
  527. package/src/verses/registry.js +22 -0
  528. package/src/verses/universe.model.js +8 -0
  529. package/src/verses/universe.presenter.js +8 -0
  530. package/src/verses/universe.project.js +12 -0
  531. package/src/viewer.js +34 -0
  532. package/src/workspace.model.js +5 -0
  533. package/src/workspaces/workspace.actions.js +1 -0
  534. package/src/workspaces/workspace.artifactActions.js +56 -0
  535. package/src/workspaces/workspace.auditView.js +153 -0
  536. package/src/workspaces/workspace.candidates.js +149 -0
  537. package/src/workspaces/workspace.config.js +153 -0
  538. package/src/workspaces/workspace.configuredSource.js +68 -0
  539. package/src/workspaces/workspace.discoveryProgress.js +34 -0
  540. package/src/workspaces/workspace.discoveryView.js +386 -0
  541. package/src/workspaces/workspace.displayFilters.js +63 -0
  542. package/src/workspaces/workspace.displayOptions.js +58 -0
  543. package/src/workspaces/workspace.emptyStateCopy.js +24 -0
  544. package/src/workspaces/workspace.entrypointLifecycle.js +131 -0
  545. package/src/workspaces/workspace.entrypointViewIntent.js +83 -0
  546. package/src/workspaces/workspace.entrypoints.js +157 -0
  547. package/src/workspaces/workspace.feedSort.js +152 -0
  548. package/src/workspaces/workspace.import.js +212 -0
  549. package/src/workspaces/workspace.importConflicts.js +200 -0
  550. package/src/workspaces/workspace.importLifecycle.case.mjs +103 -0
  551. package/src/workspaces/workspace.lifecycle.case.mjs +353 -0
  552. package/src/workspaces/workspace.lifecycle.js +357 -0
  553. package/src/workspaces/workspace.lineageView.js +244 -0
  554. package/src/workspaces/workspace.localSourceLifecycle.js +91 -0
  555. package/src/workspaces/workspace.materialLedger.js +110 -0
  556. package/src/workspaces/workspace.materialReconciliation.case.mjs +164 -0
  557. package/src/workspaces/workspace.materialReconciliation.js +390 -0
  558. package/src/workspaces/workspace.memberIdentity.js +140 -0
  559. package/src/workspaces/workspace.model.js +2 -0
  560. package/src/workspaces/workspace.navigation.js +20 -0
  561. package/src/workspaces/workspace.openSemantics.js +33 -0
  562. package/src/workspaces/workspace.pathTree.js +132 -0
  563. package/src/workspaces/workspace.persistence.case.mjs +271 -0
  564. package/src/workspaces/workspace.persistence.js +469 -0
  565. package/src/workspaces/workspace.persistenceCache.js +41 -0
  566. package/src/workspaces/workspace.persistenceClear.js +45 -0
  567. package/src/workspaces/workspace.persistencePresentation.js +93 -0
  568. package/src/workspaces/workspace.persistenceRecovery.js +147 -0
  569. package/src/workspaces/workspace.persistenceRouteCache.js +82 -0
  570. package/src/workspaces/workspace.publicationReceipts.case.mjs +36 -0
  571. package/src/workspaces/workspace.publicationReceipts.js +56 -0
  572. package/src/workspaces/workspace.recoverabilityView.js +264 -0
  573. package/src/workspaces/workspace.route.js +432 -0
  574. package/src/workspaces/workspace.runtimeCanonical.js +18 -0
  575. package/src/workspaces/workspace.sourceMaterial.js +71 -0
  576. package/src/workspaces/workspace.sourceRecordPath.js +5 -0
  577. package/src/workspaces/workspace.sourceRecords.js +75 -0
  578. package/src/workspaces/workspace.store.js +3 -0
  579. package/src/workspaces/workspace.summary.js +116 -0
  580. package/src/workspaces/workspace.timePortal.js +137 -0
@@ -0,0 +1,822 @@
1
+ import { useTiinexApplicationRuntime } from '../react/applicationDataContext.jsx';
2
+ import { runWorkspaceStartupTransition } from './workspaceStartupTransition.js';
3
+ import { workspaceHomeHref } from './workspaceHomeTarget.js';
4
+ import { canonicalProductState } from './productStateBoundary.js';
5
+ import React, { useEffect, useMemo, useRef, useState } from 'react';
6
+ import { EmptyStage, GlobalDock, HelpDialog } from './appShell.views.jsx';
7
+ import { activeWorkspace, CLEAN_URL_BOUNDARY, defaultState, initialRuntimeSnapshot, runtime } from './runtimeState.js';
8
+ import { initialStartupRenderPhase, shouldRenderProductStage } from './startupRenderPhase.js';
9
+ import { startupPresentationFor } from './startupPresentation.js';
10
+ import { StartupStage } from './startupPresentation.views.jsx';
11
+ import { createStartupOwnershipGate, runOwnedWorkspaceStartupTransition } from './startupOwnership.js';
12
+ import { shouldPageWorkspaces, useViewportWidth } from './viewport.js';
13
+ import { buildDisplayOptionCounts } from './workspaceDisplayCounts.js';
14
+ import { hydrateUiRecord, hydrateUiWorkspace } from './recordUi.js';
15
+ import { activeWorkspaceViewFor, stateWithWorkspaceLayoutMode, stateWithWorkspaceViewPatch, visibleWorkspaceItemsFor } from './workspaceMulticolumn.js';
16
+ import { sourceTransportPendingUpdateInputForSource, sourceTransportRefreshInputForSource } from './sourceTransportRefresh.js';
17
+ import { sourceGovernanceDialogData } from './governanceDialogData.js';
18
+ import { AssetDetailDialog, CloseWorkspaceDialog, CreateWorkspaceDialog, RenameWorkspaceDialog, RecordActionDialog, RecordDetailDialog, GovernanceBoundaryDialog, WorkspaceCanonicalCreateDialog, WorkspaceColumnSurface } from '../schemas/workspace/workspace.views.jsx';
19
+ import { normalizeWorkspaceDisplayOptions } from '../workspaces/workspace.displayOptions.js';
20
+ import { AddToWorkspaceDialog, ImportConflictDialog } from '../schemas/workspace/workspace.add.views.jsx';
21
+ import { DisplayOptionsDialog } from '../schemas/workspace/workspace.displayOptions.views.jsx';
22
+ import { WorkspaceExportDialogController } from '../schemas/workspace/workspace.exportDialog.controller.jsx';
23
+ import { stateWithWorkspacePublicationReceipt } from '../workspaces/workspace.publicationReceipts.js';
24
+ import { WorkspaceEntrypointChoiceDialog } from '../schemas/workspace/workspace.entrypointChoice.views.jsx';
25
+ import { schemaRegistry } from '@tiinex/core/schemas/registry.js';
26
+ import { workspaceViewScrollKeyFor, stateWithCapturedViewScroll } from './viewState.js';
27
+ import { TIINEX_RUNTIME_ID } from '../build.identity.js';
28
+ import { installVisualDormancy, visualDormancySummary } from './visualDormancy.js';
29
+ import { clearScheduledScrollPersistence, persistCapturedScroll, scheduleIdleScrollPersist } from './scrollPersistence.js';
30
+ import { commitStateWithPersistence, createStatePersistenceScheduler } from './statePersistenceScheduler.js';
31
+ import { createPersistenceOwnershipPolicy, DurableLocalAuthority } from './persistenceOwnership.js';
32
+ import { durableLocalAuthorityForRoute, markCurrentHistoryDurableAuthority } from './historyAuthority.js';
33
+ import { durableLocalMutationDecision, DurableLocalMutationOperation } from './durableLocalMutationPolicy.js';
34
+ import { runLocalDraftDiscardCommand, runLocalDraftUpdateCommand } from './localDraftMutationCommand.js';
35
+ import { useWorkspaceSelectionProductController } from './useWorkspaceSelectionProductController.jsx';
36
+ import { createCanonicalCreationProductController } from './canonicalCreationProductController.js';
37
+ import { schemaFactoryViewerProofActions } from './schemaFactoryViewerProof.js';
38
+ import { useCanonicalReferenceSelectionOptions } from './useCanonicalReferenceSelectionOptions.js';
39
+ import { useCanonicalPlacementSelectionOptions } from './useCanonicalPlacementSelectionOptions.js';
40
+ import { captureWorkspaceSelectionOriginContext, restoreWorkspaceSelectionOriginContext } from './workspaceSelectionOriginContext.js';
41
+ import { transitionProductActionsForWorkspace } from '../transitions/transition.productPresentation.browser.js';
42
+ import { RecordActionKind } from '@tiinex/core/actions/record.actions.js';
43
+ import { ensureUniqueTransitionPath } from '@tiinex/core/transitions/record.transitions.js';
44
+ import { mergeWorkspaceRecordAction, openWorkspaceRecordAction } from './workspaceRecordActions.js';
45
+ import { stateWithWorkspaceRecordOpenProgress } from './workspaceOpenProgress.js';
46
+ import { workspaceRecordMergedNotice, workspaceRecordOpenedNotice } from './workspaceContinuityNotices.js';
47
+ import { lineageLoadReportForSelectedView, loadFullLineageCommand, runLineageAuditCommand, shouldAutoLoadLineage } from './lineageCommand.js';
48
+ import { useLocalMaterialIntake } from './useLocalMaterialIntake.js';
49
+ import { useWorkspaceEntrypointIntake } from './useWorkspaceEntrypointIntake.js';
50
+ import { executeWorkspaceExportCommand } from './workspaceExportExecutionCommand.js';
51
+ import { openSchemaForRecordCommand } from './schemaNavigationCommand.js';
52
+ import { loadViewerSchemaMarkdown } from './schemaNavigationRuntimeCatalog.js';
53
+ import { abortGithubSourceOperation, clearGithubSourceCacheForSource, runGithubSourceOperation } from './githubSourceOperation.js';
54
+ import { createSemanticOperationHistoryCommit } from './semanticOperationHistory.js';
55
+ import { classifyRouteLocation } from './publicTarget.js';
56
+ import { runPublicTargetRestoreCommand } from './publicTargetRestoreCommand.js';
57
+ import { runExplicitUrlMaterialImportCommand } from './urlMaterialCommand.js';
58
+ import { runWorkspaceSourceCloseCommand } from './workspaceSourceCloseCommand.js';
59
+ import { timePortalGithubSources } from './timePortalSnapshotResolution.js';
60
+ import { historicalWorkspaceForReadModel } from './timePortalHistoricalRead.js';
61
+ import { timePortalReferencesSource, timePortalViewFor, timePortalWithoutIntent } from '../workspaces/workspace.timePortal.js';
62
+ import { useTimePortalProductController } from './useTimePortalProductController.jsx';
63
+ import { TimePortalResolveDialog } from '../schemas/workspace/workspace.timePortal.views.jsx';
64
+ import { projectShareTruth, ShareScope } from './shareProjection.js';
65
+ import { executeShareProjectionAction } from './shareActionCommand.js';
66
+ import { stateAfterWorkspaceClosePresentation, stateWithRecordLineageFocused, stateWithWorkspaceFocused, stateWithWorkspaceViewPatchAndFocus, stateWithWorkspaceViewUpdateAndFocus, workspaceById, workspaceVerseNavigationPatch } from './workspaceScopedInteraction.js';
67
+ import { stateWithWorkspaceWindowPage, workspaceWindowFor } from './workspaceWindow.js';
68
+ export function TiinexApp({ initialWorkspaces = [] } = {}) {
69
+ const sharedApplication = useTiinexApplicationRuntime();
70
+ const initialRuntimeRef = useRef(null);
71
+ if (!initialRuntimeRef.current) initialRuntimeRef.current = initialRuntimeSnapshot();
72
+ const startupOwnershipRef = useRef(null);
73
+ if (!startupOwnershipRef.current) startupOwnershipRef.current = createStartupOwnershipGate();
74
+ const [state, setState] = useState(() => initialWorkspaces.length ? { ...initialRuntimeRef.current.state, workspaces: initialWorkspaces, activeWorkspaceId: initialWorkspaces[0].id } : initialRuntimeRef.current.state);
75
+ useEffect(() => { sharedApplication.setWorkspaces((state.workspaces || []).map(hydrateUiWorkspace)); }, [sharedApplication, state.workspaces]);
76
+ const [startupPhase, setStartupPhase] = useState(() => initialStartupRenderPhase({ locationLike: typeof window !== 'undefined' ? window.location : null, routeResolved: initialRuntimeRef.current.routeResolved }));
77
+ const [dialog, setDialog] = useState(null);
78
+ const [dialogWorkspaceId, setDialogWorkspaceId] = useState('');
79
+ const [notice, setNotice] = useState('');
80
+ const [createError, setCreateError] = useState('');
81
+ const [activeRecordId, setActiveRecordId] = useState('');
82
+ const [activeAssetId, setActiveAssetId] = useState('');
83
+ const [recordAction, setRecordAction] = useState(null);
84
+ const [githubRequestPending, setGithubRequestPending] = useState(false);
85
+ const [sourceContinuationId, setSourceContinuationId] = useState('');
86
+ const viewScrollRef = useRef({}); const latestStateRef = useRef(state);
87
+ const githubOperationRef = useRef({ token: null, controller: null }); const lineageAutoLoadKeysRef = useRef(new Set());
88
+ const scrollPersistTimerRef = useRef(null);
89
+ const scrollPersistIdleRef = useRef(null);
90
+ const persistenceOwnershipRef = useRef(null);
91
+ if (!persistenceOwnershipRef.current) persistenceOwnershipRef.current = createPersistenceOwnershipPolicy(initialRuntimeRef.current.routeKind, { durableLocalAuthority: initialRuntimeRef.current.durableLocalAuthority });
92
+ const statePersistenceSchedulerRef = useRef(null);
93
+ const appConfigDiagnosticsRef = useRef({ last: null });
94
+ if (!statePersistenceSchedulerRef.current) statePersistenceSchedulerRef.current = createStatePersistenceScheduler(typeof window !== 'undefined' ? window : globalThis, { persistenceOwnership: persistenceOwnershipRef.current });
95
+ const workspaceConfig = useMemo(() => runtime().config?.createDefaultWorkspaceConfig?.(), []);
96
+ const startupPresentation = useMemo(() => startupPresentationFor({ startupPhase, state }), [startupPhase, state]);
97
+ const active = activeWorkspace(state);
98
+ const referenceParticipantRecords = useMemo(() => (state.workspaces || []).flatMap((workspace) => (workspace.records || []).map((record) => ({ ...record, workspaceIds: [...new Set([...(record.workspaceIds || []), workspace.id].filter(Boolean))] }))), [state.workspaces]);
99
+ const graphParticipantWorkspaces = useMemo(() => (state.workspaces || []).map((workspace) => hydrateUiWorkspace(workspace)), [state.workspaces]);
100
+ const activeWorkspaceConfig = active?.workspaceConfig || workspaceConfig;
101
+ const activeUi = useMemo(() => hydrateUiWorkspace(active), [active]);
102
+ const viewportWidth = useViewportWidth();
103
+ const selection = useWorkspaceSelectionProductController({ setNotice, captureOriginContext: () => captureWorkspaceSelectionOriginContext(latestStateRef.current || state), restoreOriginContext: (context) => commit(restoreWorkspaceSelectionOriginContext(latestStateRef.current || state, context), 'replace', { deferPersistence: true, persistenceReason: 'workspace-selection-origin-restore' }) });
104
+ const canonicalCreation = createCanonicalCreationProductController({ getState: () => latestStateRef.current || state, getLifecycle: () => runtime().lifecycle, getPersistenceOwnership: () => persistenceOwnershipRef.current, getRecordAction: () => recordAction, getDialogWorkspaceId: () => dialogWorkspaceId, resetSelection: selection.reset, setDialog, setDialogWorkspaceId, setRecordAction, setActiveRecordId, setActiveAssetId, setNotice, commitSemanticNavigation, viewportWidth });
105
+ const workspaceWindow = useMemo(() => workspaceWindowFor(state, { viewportWidth, activeWorkspaceId: active?.id || state.activeWorkspaceId }), [state, viewportWidth, active]);
106
+ const pagerVisible = shouldPageWorkspaces(state.workspaces.length, viewportWidth);
107
+ const visibleWorkspaceItems = useMemo(() => visibleWorkspaceItemsFor(state, { active, activeUi, viewportWidth }), [state, active, activeUi, viewportWidth]);
108
+ const workspaceGridColumns = useMemo(() => visibleWorkspaceItems.map((item) => selection.session ? 'minmax(16rem, 1fr)' : (item.layoutMode === 'compact' ? 'minmax(4.5rem, 5.75rem)' : 'minmax(0, 1fr)')).join(' '), [visibleWorkspaceItems, selection.session]);
109
+ useEffect(() => {
110
+ const onRoute = () => {
111
+ const { lifecycle, route, persistence } = runtime();
112
+ startupOwnershipRef.current.invalidate();
113
+ abortGithubSourceOperation(githubOperationRef);
114
+ setGithubRequestPending(false);
115
+ const routeOwner = classifyRouteLocation(window.location);
116
+ const durableLocalAuthority = durableLocalAuthorityForRoute(routeOwner.kind, window.history?.state || null);
117
+ persistenceOwnershipRef.current?.restoreHistoryEntry?.({ routeKind: routeOwner.kind, durableLocalAuthority });
118
+ if (routeOwner.kind === 'public-target') {
119
+ markCurrentHistoryDurableAuthority(window.history, window.location, DurableLocalAuthority.isolatedPreexistingRecovery);
120
+ setStartupPhase('resolving'); window.setTimeout(() => restorePublicTargetFromOwnership(routeOwner.target), 0); return;
121
+ }
122
+ if (routeOwner.kind !== 'semantic-state') { setStartupPhase('resolving'); window.setTimeout(() => startWorkspaceFromOwnership('replace'), 0); return; }
123
+ const routeResolution = persistence?.resolveInitialState?.({
124
+ location: window.location,
125
+ storage: window.localStorage,
126
+ durableLocalPolicy: durableLocalAuthority === DurableLocalAuthority.isolatedPreexistingRecovery ? 'preserve-existing' : 'normal'
127
+ });
128
+ if (!routeResolution?.resolved) { setStartupPhase('resolving'); window.setTimeout(() => startWorkspaceFromOwnership('replace'), 0); return; }
129
+ const routeState = routeResolution.state;
130
+ const routed = route?.normalizeRouteState?.(routeState, lifecycle) || routeState;
131
+ setStartupPhase('resolved');
132
+ setState(canonicalProductState(routed, persistence, 'route-navigation'));
133
+ };
134
+ window.addEventListener('popstate', onRoute);
135
+ window.addEventListener('hashchange', onRoute);
136
+ return () => { window.removeEventListener('popstate', onRoute); window.removeEventListener('hashchange', onRoute); };
137
+ }, []);
138
+ useEffect(() => {
139
+ if (typeof window === 'undefined') return;
140
+ if (initialRuntimeRef.current.routeKind === 'public-target') {
141
+ markCurrentHistoryDurableAuthority(window.history, window.location, DurableLocalAuthority.isolatedPreexistingRecovery);
142
+ }
143
+ }, []);
144
+ useEffect(() => {
145
+ if (typeof window === 'undefined') return;
146
+ if (initialRuntimeRef.current.routeKind === 'public-target' && initialRuntimeRef.current.publicTarget) {
147
+ window.setTimeout(() => restorePublicTargetFromOwnership(initialRuntimeRef.current.publicTarget), 0);
148
+ return;
149
+ }
150
+ if (initialRuntimeRef.current.routeResolved || state.workspaces?.length) return;
151
+ window.setTimeout(() => startWorkspaceFromOwnership('replace'), 0);
152
+ }, []);
153
+ useEffect(() => {
154
+ if (typeof window === 'undefined') return undefined;
155
+ const onPersistenceFailure = (event) => {
156
+ if (!event?.detail?.localMaterialAtRisk) return;
157
+ if (event.detail.lastKnownGoodPreserved) setNotice('Newest local changes could not be saved. Your previous local recovery is still preserved; keep this tab open and export or copy the newest work before continuing.');
158
+ else setNotice('Local changes could not be saved. Keep this tab open and export or copy important work before continuing.');
159
+ };
160
+ window.addEventListener('tiinex:local-persistence-failure', onPersistenceFailure);
161
+ return () => window.removeEventListener('tiinex:local-persistence-failure', onPersistenceFailure);
162
+ }, []);
163
+ useEffect(() => { document.title = workspaceConfig?.viewerIdentity?.browserTitle || 'Tiinex'; }, [workspaceConfig]);
164
+ useEffect(() => {
165
+ if (typeof window === 'undefined') return undefined;
166
+ window.TiinexAppConfigSourceReport = () => appConfigDiagnosticsRef.current;
167
+ return () => {
168
+ if (window.TiinexAppConfigSourceReport) delete window.TiinexAppConfigSourceReport;
169
+ };
170
+ }, []);
171
+ useEffect(() => {
172
+ latestStateRef.current = state;
173
+ }, [state]);
174
+ useEffect(() => installVisualDormancy({ getSummary: () => visualDormancySummary(latestStateRef.current || state) }), []);
175
+ useEffect(() => { window.TiinexStatePersistenceReport = () => statePersistenceSchedulerRef.current?.report?.() || { pending: false }; return () => { try { delete window.TiinexStatePersistenceReport; } catch (_) { window.TiinexStatePersistenceReport = undefined; } }; }, []);
176
+ useEffect(() => () => { clearScheduledScrollPersistence({ timerRef: scrollPersistTimerRef, idleRef: scrollPersistIdleRef }, window); statePersistenceSchedulerRef.current?.cancel?.(); }, []);
177
+ useEffect(() => {
178
+ const flushOnUnload = () => { statePersistenceSchedulerRef.current?.flush?.('beforeunload'); persistCapturedViewScroll('replace', { force: true }); };
179
+ window.addEventListener('beforeunload', flushOnUnload);
180
+ return () => window.removeEventListener('beforeunload', flushOnUnload);
181
+ }, []);
182
+ useEffect(() => {
183
+ if (!notice) return undefined;
184
+ const timer = window.setTimeout(() => setNotice(''), 9000);
185
+ return () => window.clearTimeout(timer);
186
+ }, [notice]);
187
+ useEffect(() => { const id = String(state.view?.selectedRecordId || '').trim(); if (state.view?.workspaceVerse !== 'lineage' || !active || !id) return; const decision = shouldAutoLoadLineage({ workspace: activeUi || active, selectedRecordId: id, existingLoadReport: lineageLoadReportForSelected(state), loadedKeys: lineageAutoLoadKeysRef.current }); if (decision.shouldLoad) { lineageAutoLoadKeysRef.current.add(decision.key); window.setTimeout(() => loadFullLineage(), 0); } }, [state]);
188
+ function commit(nextState, mode = 'push', options = {}) {
189
+ commitStateWithPersistence({ nextState, mode, options, sourceState: latestStateRef.current || state, preserveCapturedViewScroll, latestStateRef, setState, runtime, scheduler: statePersistenceSchedulerRef.current, persistenceOwnership: persistenceOwnershipRef.current });
190
+ }
191
+ function commitSemanticNavigation(nextState, mode = 'push', options = {}) {
192
+ const transition = persistenceOwnershipRef.current?.beginSemanticNavigation?.(mode) || { mode };
193
+ const isolated = persistenceOwnershipRef.current?.report?.().durableLocalAuthority === DurableLocalAuthority.isolatedPreexistingRecovery;
194
+ const navigationOptions = Object.assign({}, options, { allowEmptySemanticState: isolated && !(nextState?.workspaces?.length) });
195
+ if (transition.firstExitFromPublicTarget) {
196
+ navigationOptions.deferPersistence = false;
197
+ navigationOptions.persistenceReason = 'public-route-semantic-exit';
198
+ }
199
+ commit(nextState, transition.mode || mode, navigationOptions);
200
+ return transition;
201
+ }
202
+ function authorizeDurableLocalMutation(operation) {
203
+ return durableLocalMutationDecision(persistenceOwnershipRef.current, operation);
204
+ }
205
+ async function restorePublicTargetFromOwnership(target) {
206
+ if (typeof window === 'undefined') return null;
207
+ const token = startupOwnershipRef.current.claim();
208
+ const isCurrentOwner = () => startupOwnershipRef.current.isCurrent(token);
209
+ setStartupPhase('resolving');
210
+ const result = await runPublicTargetRestoreCommand({ target, runtimeApi: runtime(), fetchImpl: fetch, workspaceConfig, isCurrentOwner });
211
+ if (!isCurrentOwner()) return Object.assign({}, result, { stale: true });
212
+ if (!result?.ok) { setStartupPhase('failed'); setNotice(result?.message || 'Could not restore public target.'); return result; }
213
+ commit(result.state, 'replace');
214
+ setStartupPhase('resolved');
215
+ return result;
216
+ }
217
+ async function startWorkspaceFromOwnership(mode = 'replace') {
218
+ if (typeof window === 'undefined') return null;
219
+ return runOwnedWorkspaceStartupTransition({
220
+ gate: startupOwnershipRef.current,
221
+ runTransition: runWorkspaceStartupTransition,
222
+ setPhase: setStartupPhase,
223
+ setNotice,
224
+ transitionOptions: {
225
+ runtimeApi: runtime(),
226
+ emptyState: defaultState(),
227
+ workspaceConfig,
228
+ storage: window.localStorage,
229
+ locationLike: window.location,
230
+ windowObj: window,
231
+ fetchImpl: fetch,
232
+ commit,
233
+ materializeSource: addGitHubSource,
234
+ setDiagnostics: (value) => { appConfigDiagnosticsRef.current = value; },
235
+ mode
236
+ }
237
+ });
238
+ }
239
+ function viewScrollKeyFor(sourceState = state, viewOverride = null, workspaceId = '') {
240
+ return workspaceViewScrollKeyFor(sourceState, viewOverride, workspaceId || sourceState?.activeWorkspaceId || active?.id || 'workspace');
241
+ }
242
+ function commitWorkspaceViewPatch(workspaceId = '', patch = {}, mode = 'replace') {
243
+ const sourceState = latestStateRef.current || state;
244
+ commitSemanticNavigation(stateWithWorkspaceViewPatchAndFocus(sourceState, workspaceId || active?.id, patch, viewportWidth), mode, { deferPersistence: true, persistenceReason: 'workspace-view-patch' });
245
+ }
246
+ function commitWorkspaceViewUpdate(workspaceId = '', updater = null, mode = 'replace') {
247
+ const sourceState = latestStateRef.current || state;
248
+ commitSemanticNavigation(stateWithWorkspaceViewUpdateAndFocus(sourceState, workspaceId || active?.id, updater, viewportWidth), mode, { deferPersistence: true, persistenceReason: 'workspace-view-update' });
249
+ }
250
+ const timePortalController = useTimePortalProductController({ state, latestStateRef, activeWorkspaceId: active?.id || '', dialogWorkspaceId, dialog, commitWorkspaceViewUpdate, setNotice, setDialog, setDialogWorkspaceId, setActiveRecordId, setActiveAssetId, dismissDialog, fetchImpl: typeof fetch !== 'undefined' ? fetch : null });
251
+ const { readFor: timePortalReadFor, clearHistoricalRead, openResolver: openTimePortalResolver, loadSnapshot: loadHistoricalSnapshot, resolveFromDialog: resolveTimePortalFromDialog, returnToLatest: returnTimePortalToLatest, busy: timePortalBusy, error: timePortalError } = timePortalController;
252
+ function commitViewPatch(patch = {}, mode = 'replace') { commitWorkspaceViewPatch(active?.id, patch, mode); }
253
+ function commitViewUpdate(updater = null, mode = 'replace') { commitWorkspaceViewUpdate(active?.id, updater, mode); }
254
+ function preserveCapturedViewScroll(nextState = state, sourceState = state) {
255
+ return stateWithCapturedViewScroll(nextState, sourceState, viewScrollRef.current, active?.id || 'workspace');
256
+ }
257
+ // UI guard: persistCapturedViewScroll('replace') remains the scroll replace-state path.
258
+ function persistCapturedViewScroll(mode = 'replace', options = {}) {
259
+ return persistCapturedScroll({ latestStateRef, state, preserveCapturedViewScroll, runtime, mode, options: Object.assign({ setState }, options), doc: document, persistenceOwnership: persistenceOwnershipRef.current });
260
+ }
261
+ function persistWorkspaceScroll(workspaceId, key, top) {
262
+ const currentState = latestStateRef.current || state;
263
+ const currentView = activeWorkspaceViewFor(currentState, workspaceId);
264
+ const scrollPositions = Object.assign({}, currentView.scrollPositions || {}, { [key]: Math.max(0, Math.round(Number(top || 0))) });
265
+ commit(stateWithWorkspaceViewPatch(currentState, workspaceId, { scrollPositions }), 'replace', { deferPersistence: true, persistenceReason: 'workspace-scroll' });
266
+ }
267
+ function noteViewScroll(workspaceId, verse, top) {
268
+ const id = String(workspaceId || active?.id || '').trim();
269
+ if (!id) return;
270
+ const currentState = latestStateRef.current || state;
271
+ const currentView = activeWorkspaceViewFor(currentState, id);
272
+ const view = Object.assign({}, currentView, { workspaceVerse: verse || currentView.workspaceVerse || 'feed' });
273
+ const key = viewScrollKeyFor(currentState, view, id);
274
+ const roundedTop = Math.max(0, Math.round(Number(top || 0)));
275
+ viewScrollRef.current[key] = roundedTop;
276
+ scheduleIdleScrollPersist({ timerRef: scrollPersistTimerRef, idleRef: scrollPersistIdleRef }, () => persistWorkspaceScroll(id, key, roundedTop), window);
277
+ }
278
+ function currentStageScrollTop(workspaceId, surfaceState = state) {
279
+ const id = String(workspaceId || active?.id || '').trim();
280
+ const view = activeWorkspaceViewFor(surfaceState, id);
281
+ const key = viewScrollKeyFor(surfaceState, view, id);
282
+ const fromRef = viewScrollRef.current[key];
283
+ if (Number.isFinite(Number(fromRef))) return Number(fromRef);
284
+ return Number(view.scrollPositions?.[key] || 0);
285
+ }
286
+ const { addLocalFiles, resolveLocalImportConflict, addPastedTrace, pendingLocalImport } = useLocalMaterialIntake({
287
+ getLifecycle: () => runtime().lifecycle,
288
+ getState: () => latestStateRef.current || state,
289
+ workspaceId: active?.id || '',
290
+ setNotice,
291
+ setDialog,
292
+ commit,
293
+ getPersistenceOwnership: () => persistenceOwnershipRef.current,
294
+ windowObj: typeof window !== 'undefined' ? window : null
295
+ });
296
+ const { handleGlobalWorkspaceDrop, resolveWorkspaceEntrypointChoice, pendingWorkspaceEntrypoint } = useWorkspaceEntrypointIntake({
297
+ getLifecycle: () => runtime().lifecycle,
298
+ getState: () => latestStateRef.current || state,
299
+ parseWorkspaceConfig: runtime().config?.parseWorkspaceConfig,
300
+ setNotice,
301
+ setDialog,
302
+ commit,
303
+ getPersistenceOwnership: () => persistenceOwnershipRef.current,
304
+ materializeSource: addGitHubSource,
305
+ windowObj: typeof window !== 'undefined' ? window : null
306
+ });
307
+ function focusWorkspaceForInteraction(workspaceId = '', mode = 'replace') {
308
+ const id = String(workspaceId || '').trim();
309
+ const sourceState = latestStateRef.current || state;
310
+ if (!id || !workspaceById(sourceState, id)) return sourceState;
311
+ const next = stateWithWorkspaceFocused(sourceState, id, viewportWidth);
312
+ if (next !== sourceState) commitSemanticNavigation(next, mode, { deferPersistence: true, persistenceReason: 'workspace-focus' });
313
+ return next;
314
+ }
315
+ function openCreate() {
316
+ setCreateError('');
317
+ setSourceContinuationId('');
318
+ setDialogWorkspaceId('');
319
+ setDialog('create-workspace');
320
+ }
321
+ function openAddToWorkspace(sourceId = '', workspaceId = active?.id || '') {
322
+ const id = String(workspaceId || active?.id || '').trim();
323
+ if (id) focusWorkspaceForInteraction(id);
324
+ setDialogWorkspaceId(id);
325
+ setSourceContinuationId(String(sourceId || ''));
326
+ setDialog('add-to-workspace');
327
+ }
328
+ function openGovernanceBoundary(sourceId = '', workspaceId = active?.id || '') {
329
+ const source = String(sourceId || '').trim();
330
+ const id = String(workspaceId || active?.id || '').trim();
331
+ if (!source || !id) return;
332
+ focusWorkspaceForInteraction(id);
333
+ setDialogWorkspaceId(id);
334
+ setSourceContinuationId(source);
335
+ setDialog('source-governance');
336
+ }
337
+ function openWorkspaceDialog(name, workspaceId = active?.id || '') {
338
+ const id = String(workspaceId || active?.id || '').trim();
339
+ if (!id) return;
340
+ focusWorkspaceForInteraction(id);
341
+ setDialogWorkspaceId(id);
342
+ setDialog(name);
343
+ }
344
+ function dismissDialog() {
345
+ selection.reset();
346
+ setDialog(null);
347
+ setDialogWorkspaceId('');
348
+ setSourceContinuationId('');
349
+ }
350
+ function createWorkspace(name) {
351
+ const result = runtime().lifecycle?.createWorkspace?.(state, { name });
352
+ if (!result?.ok) {
353
+ setCreateError(result?.error === 'workspace.name.required' ? 'Workspace name is required.' : 'Could not create workspace.');
354
+ return false;
355
+ }
356
+ setDialog(null);
357
+ setNotice('');
358
+ commitSemanticNavigation(result.state, 'push');
359
+ return true;
360
+ }
361
+ function renameWorkspace(name) { const sourceState = latestStateRef.current || state, targetId = dialogWorkspaceId || sourceState.activeWorkspaceId; const result = runtime().lifecycle?.renameWorkspace?.(sourceState, targetId, name); if (!result?.ok) return false; dismissDialog(); setNotice('Workspace renamed.'); commitSemanticNavigation(stateWithWorkspaceFocused(result.state, targetId, viewportWidth), 'replace'); return true; }
362
+ function closeWorkspace(workspaceId) {
363
+ const sourceState = latestStateRef.current || state;
364
+ const result = runtime().lifecycle?.closeWorkspace?.(sourceState, workspaceId || dialogWorkspaceId || sourceState.activeWorkspaceId);
365
+ if (!result?.ok) return;
366
+ dismissDialog();
367
+ const isolated = persistenceOwnershipRef.current?.report?.().durableLocalAuthority === DurableLocalAuthority.isolatedPreexistingRecovery;
368
+ setNotice(result.state.workspaces.length ? 'Workspace closed.' : (isolated ? 'Workspace closed. This shared view is now empty.' : 'Workspace closed. Clean start restored.'));
369
+ commitSemanticNavigation(stateAfterWorkspaceClosePresentation(result.state, viewportWidth), 'push');
370
+ }
371
+ async function addExplicitUrls(urlText) {
372
+ const result = await runExplicitUrlMaterialImportCommand({ lifecycle: runtime().lifecycle, state: latestStateRef.current || state, workspaceId: dialogWorkspaceId || active?.id, urlText, fetchImpl: fetch });
373
+ if (result.exception) console.error(result.exception);
374
+ if (!result.ok) return setNotice(result.notice || 'Could not add URL material.');
375
+ setDialog(null);
376
+ setNotice(result.notice || 'URL material added.');
377
+ commitSemanticNavigation(result.state, 'push');
378
+ }
379
+
380
+ async function addGitHubSource(input = {}, options = {}) {
381
+ const isCurrentOwner = typeof options.isCurrentOwner === 'function' ? options.isCurrentOwner : null;
382
+ const ownerAllows = () => !isCurrentOwner || isCurrentOwner();
383
+ const guarded = (fn) => (...args) => ownerAllows() ? fn(...args) : undefined;
384
+ return runGithubSourceOperation({
385
+ input,
386
+ options,
387
+ state,
388
+ active,
389
+ runtimeApi: runtime(),
390
+ workspaceConfig,
391
+ githubRequestPending,
392
+ operationRef: githubOperationRef,
393
+ setNotice: guarded(setNotice),
394
+ setDialog: guarded(setDialog),
395
+ setGithubRequestPending: guarded(setGithubRequestPending),
396
+ commit: guarded(options.bufferProductState
397
+ ? () => {}
398
+ : options.semanticNavigation
399
+ ? createSemanticOperationHistoryCommit({ commit, commitSemanticNavigation })
400
+ : options.semanticNavigationEstablished
401
+ ? createSemanticOperationHistoryCommit({ commit, commitSemanticNavigation, navigationEstablished: true })
402
+ : commit),
403
+ getLatestState: () => latestStateRef.current || state,
404
+ fetchImpl: fetch,
405
+ AbortControllerImpl: typeof AbortController !== 'undefined' ? AbortController : undefined
406
+ });
407
+ }
408
+ async function refreshSourceTransport(sourceId, currentTier = '', surfaceKeys = [], workspaceId = active?.id || '') {
409
+ const sourceState = latestStateRef.current || state;
410
+ const targetId = String(workspaceId || sourceState.activeWorkspaceId || '').trim();
411
+ const targetWorkspace = workspaceById(sourceState, targetId);
412
+ const source = (targetWorkspace?.sources || []).find((item) => String(item.id || '') === String(sourceId || ''));
413
+ if (!source) return setNotice('Source not found.');
414
+ const refresh = sourceTransportRefreshInputForSource(source, currentTier, surfaceKeys);
415
+ if (refresh.replacingPending) { abortGithubSourceOperation(githubOperationRef); setGithubRequestPending(false); }
416
+ if (refresh.reason === 'last-tier') return setNotice(`${source.label || 'Source'} is already using the last transport tier (direct).`);
417
+ if (refresh.reason === 'no-surfaces') return openAddToWorkspace(source.id || sourceId, targetId);
418
+ clearGithubSourceCacheForSource(source);
419
+ const focusedState = stateWithWorkspaceFocused(sourceState, targetId, viewportWidth);
420
+ const pendingSource = runtime().lifecycle?.addWorkspaceSource?.(focusedState, targetId, sourceTransportPendingUpdateInputForSource(source, refresh));
421
+ const operationState = pendingSource?.ok ? pendingSource.state : focusedState;
422
+ if (pendingSource?.ok) commit(operationState, 'replace');
423
+ setNotice(`${source.label || 'Source'} trying ${refresh.nextTier} transport.`);
424
+ await addGitHubSource(Object.assign({}, refresh.input, { preserveView: true, resetSourceMaterial: true, resetSourceCache: false, abortPreviousGithubOperation: Boolean(refresh.replacingPending) }), { state: operationState, workspaceId: targetId });
425
+ }
426
+ function openRecord(recordId, workspaceId = active?.id || '') {
427
+ const id = String(recordId || '');
428
+ if (workspaceId) focusWorkspaceForInteraction(workspaceId);
429
+ setRecordAction(null);
430
+ setActiveAssetId('');
431
+ setActiveRecordId(id);
432
+ }
433
+ function focusRecordLineage(recordId, workspaceId = active?.id || '') {
434
+ const id = String(recordId || '');
435
+ setRecordAction(null);
436
+ setActiveAssetId('');
437
+ setActiveRecordId('');
438
+ if (!id) return;
439
+ const sourceState = latestStateRef.current || state;
440
+ commitSemanticNavigation(stateWithRecordLineageFocused(sourceState, workspaceId || active?.id, id, viewportWidth), 'push', { deferPersistence: true, persistenceReason: 'workspace-lineage-focus' });
441
+ }
442
+ function dismissRecord() {
443
+ setActiveRecordId('');
444
+ }
445
+ function openAsset(assetId, workspaceId = active?.id || '') {
446
+ if (workspaceId) focusWorkspaceForInteraction(workspaceId);
447
+ setRecordAction(null);
448
+ setActiveRecordId('');
449
+ setActiveAssetId(String(assetId || ''));
450
+ }
451
+ function dismissAsset() {
452
+ setActiveAssetId('');
453
+ }
454
+ async function openWorkspaceRecord(record = {}, originWorkspaceId = '') {
455
+ const currentState = latestStateRef.current || state;
456
+ const result = openWorkspaceRecordAction({ lifecycle: runtime().lifecycle, parseWorkspaceConfig: runtime().config?.parseWorkspaceConfig, state: currentState, record });
457
+ if (!result?.ok) return setNotice(result?.message || 'Could not open workspace artifact.');
458
+ setDialog(null); setActiveRecordId(''); setActiveAssetId(''); setRecordAction(null);
459
+ const preparedState = stateWithWorkspaceRecordOpenProgress(result.state, result.workspace?.id, result.sourceInputs || [], result.entry);
460
+ setNotice(workspaceRecordOpenedNotice(result));
461
+ commitSemanticNavigation(preparedState, 'push');
462
+ let materialState = preparedState;
463
+ for (const sourceInput of result.sourceInputs || []) {
464
+ const loaded = await addGitHubSource(sourceInput, { state: materialState, workspaceId: sourceInput.workspaceId || result.workspace?.id, semanticNavigationEstablished: true });
465
+ if (loaded?.state) materialState = loaded.state;
466
+ }
467
+ }
468
+ async function mergeWorkspaceRecord(record = {}, originWorkspaceId = '') {
469
+ const currentState = latestStateRef.current || state;
470
+ const result = mergeWorkspaceRecordAction({ lifecycle: runtime().lifecycle, parseWorkspaceConfig: runtime().config?.parseWorkspaceConfig, state: currentState, workspaceId: originWorkspaceId || currentState.activeWorkspaceId || active?.id, record });
471
+ if (!result?.ok) return setNotice(result?.message || 'Could not merge workspace artifact.');
472
+ setNotice(workspaceRecordMergedNotice(result));
473
+ commitSemanticNavigation(result.state, 'push');
474
+ let materialState = result.state;
475
+ for (const sourceInput of result.sourceInputs || []) {
476
+ const loaded = await addGitHubSource(sourceInput, { state: materialState, workspaceId: sourceInput.workspaceId || result.workspace?.id || active?.id, semanticNavigationEstablished: true });
477
+ if (loaded?.state) materialState = loaded.state;
478
+ }
479
+ }
480
+ function openRecordAction(record, action, originWorkspaceId = '') {
481
+ if (action?.id === RecordActionKind.workspaceOpen) return openWorkspaceRecord(record, originWorkspaceId);
482
+ if (action?.id === RecordActionKind.workspaceMerge) return mergeWorkspaceRecord(record, originWorkspaceId);
483
+ if (action?.id === RecordActionKind.deleteLocal) return deleteLocalDraftRecord(record, originWorkspaceId);
484
+ if (originWorkspaceId) focusWorkspaceForInteraction(originWorkspaceId);
485
+ selection.reset(); setActiveRecordId(''); setActiveAssetId(''); setRecordAction({ recordId: record?.id || '', workspaceId: originWorkspaceId || state.activeWorkspaceId || active?.id || '', action });
486
+ }
487
+ function dismissRecordAction() { selection.reset(); setRecordAction(null); }
488
+ function deleteLocalDraftRecord(record = {}, originWorkspaceId = '') {
489
+ const currentState = latestStateRef.current || state, workspaceId = originWorkspaceId || currentState.activeWorkspaceId || active?.id;
490
+ const result = runLocalDraftDiscardCommand({ lifecycle: runtime().lifecycle, state: currentState, workspaceId, recordId: record?.id || '', persistenceOwnership: persistenceOwnershipRef.current });
491
+ if (!result?.ok) return setNotice(result?.notice || 'Could not discard local draft.');
492
+ setRecordAction(null); if (activeRecordId === record?.id) setActiveRecordId(''); setNotice(result.notice); commitSemanticNavigation(stateWithWorkspaceFocused(result.state, workspaceId, viewportWidth), 'push');
493
+ }
494
+ function updateLocalDraftRecord(record = {}, markdown = '', originWorkspaceId = '') {
495
+ const currentState = latestStateRef.current || state, workspaceId = originWorkspaceId || currentState.activeWorkspaceId || active?.id;
496
+ const result = runLocalDraftUpdateCommand({ lifecycle: runtime().lifecycle, state: currentState, workspaceId, recordId: record?.id || '', candidate: { markdown }, persistenceOwnership: persistenceOwnershipRef.current });
497
+ if (!result?.ok) { setNotice(result?.notice || 'Could not update local draft.'); return result; }
498
+ setRecordAction(null); setNotice(result.notice); commit(result.state, 'replace', { persistenceReason: 'local-draft-edit' });
499
+ return result;
500
+ }
501
+
502
+ function createTransitionRecord(parentRecord, draft) {
503
+ if (!draft?.title) return setNotice('Transition draft is missing a title.');
504
+ const authority = authorizeDurableLocalMutation(DurableLocalMutationOperation.localDraftCreate);
505
+ if (!authority.ok) return setNotice(authority.notice);
506
+ const uniqueDraft = ensureUniqueTransitionPath(draft, active?.records || []), result = runtime().lifecycle?.addWorkspaceRecord?.(state, active?.id, uniqueDraft);
507
+ if (!result?.ok) return setNotice('Could not create transition leaf.');
508
+ setRecordAction(null);
509
+ setActiveRecordId('');
510
+ setActiveAssetId('');
511
+ setNotice(`Created local ${uniqueDraft.kind || 'transition'} leaf from ${parentRecord?.title || 'artifact'}; focused new lineage.`);
512
+ commitSemanticNavigation(stateWithWorkspaceViewPatch(result.state, result.workspace?.id || active?.id, { workspaceVerse: 'lineage', selectedRecordId: result.record?.id || uniqueDraft.id || '', lineageQuery: '', lineageLoadReport: null, lineageAuditReport: null }), 'push');
513
+ }
514
+ async function shareRecord(record, workspaceId = active?.id || '') {
515
+ const sourceState = latestStateRef.current || state;
516
+ const targetWorkspace = workspaceById(sourceState, workspaceId || sourceState.activeWorkspaceId) || active;
517
+ const projection = shareProjectionFor(ShareScope.artifact, { state: sourceState, workspace: targetWorkspace, record });
518
+ const result = await executeShareProjectionAction({ projection, clipboard: typeof navigator !== 'undefined' ? navigator.clipboard : null, label: record?.title || record?.path || 'artifact' });
519
+ setNotice(result.notice);
520
+ }
521
+ async function shareWorkspace(workspaceId = active?.id || '') {
522
+ const sourceState = latestStateRef.current || state;
523
+ const targetWorkspace = workspaceById(sourceState, workspaceId || sourceState.activeWorkspaceId);
524
+ if (!targetWorkspace) return setNotice('No workspace is available to share.');
525
+ const projection = shareProjectionFor(ShareScope.workspace, { state: sourceState, workspace: targetWorkspace });
526
+ const result = await executeShareProjectionAction({ projection, clipboard: typeof navigator !== 'undefined' ? navigator.clipboard : null, label: targetWorkspace.name || targetWorkspace.title || 'workspace' });
527
+ setNotice(result.notice);
528
+ }
529
+ function openWorkspaceExportDialog(workspaceId = active?.id || '') {
530
+ const sourceState = latestStateRef.current || state;
531
+ const target = workspaceById(sourceState, workspaceId || sourceState.activeWorkspaceId);
532
+ if (!target) return setNotice('No workspace to export.');
533
+ openWorkspaceDialog('export-workspace', target.id);
534
+ }
535
+ function persistWorkspacePublicationResult(result = null, plan = null, executionAttestation = null) {
536
+ const sourceState = latestStateRef.current || state;
537
+ const targetId = dialogWorkspaceId || sourceState.activeWorkspaceId;
538
+ const applied = stateWithWorkspacePublicationReceipt(sourceState, targetId, result || {}, { executionAttestation });
539
+ if (!applied.ok) { setNotice('Verified publication could not be recorded locally.'); return applied; }
540
+ commit(applied.state, 'replace', { persistenceReason: 'publication-receipt' });
541
+ setNotice('GitHub publication verified and receipt recorded locally.');
542
+ return applied;
543
+ }
544
+ function executeWorkspaceExport(exportPlan = null) {
545
+ const sourceState = latestStateRef.current || state;
546
+ const target = workspaceById(sourceState, dialogWorkspaceId || sourceState.activeWorkspaceId) || active;
547
+ const result = executeWorkspaceExportCommand({ workspace: hydrateUiWorkspace(target) || target, exportPlan, document, window });
548
+ if (result.exception) console.error(result.exception);
549
+ setNotice(result.notice || (result.ok ? 'Export completed.' : 'Could not execute export.'));
550
+ if (result.ok) setDialog(null);
551
+ }
552
+ function closeSource(sourceId, workspaceId = active?.id || '') {
553
+ const sourceState = latestStateRef.current || state;
554
+ const targetId = String(workspaceId || sourceState.activeWorkspaceId || '').trim();
555
+ const sourceForClose = timePortalReferencesSource(activeWorkspaceViewFor(sourceState, targetId), sourceId) ? stateWithWorkspaceViewUpdateAndFocus(sourceState, targetId, (view) => timePortalWithoutIntent(view), viewportWidth) : sourceState;
556
+ if (sourceForClose !== sourceState) clearHistoricalRead(targetId);
557
+ const result = runWorkspaceSourceCloseCommand({ lifecycle: runtime().lifecycle, state: sourceForClose, workspaceId: targetId, sourceId });
558
+ if (!result?.ok) return setNotice(result.notice || 'Source stays pinned.');
559
+ setNotice(result.notice || 'Source closed.');
560
+ commitSemanticNavigation(stateWithWorkspaceFocused(result.state, targetId, viewportWidth), 'push');
561
+ }
562
+ function pageWorkspaceWindow(direction) {
563
+ const sourceState = latestStateRef.current || state;
564
+ const nextState = stateWithWorkspaceWindowPage(sourceState, direction, viewportWidth);
565
+ if (nextState === sourceState) return;
566
+ commitSemanticNavigation(nextState, 'replace', { deferPersistence: true, persistenceReason: 'workspace-window-page' });
567
+ }
568
+ function activateWorkspace(workspaceId, mode = 'replace') {
569
+ const id = String(workspaceId || '').trim();
570
+ const sourceState = latestStateRef.current || state;
571
+ if (!id || id === sourceState.activeWorkspaceId) return;
572
+ if (!(Array.isArray(sourceState.workspaces) ? sourceState.workspaces : []).some((workspace) => workspace.id === id)) return;
573
+ commitSemanticNavigation(stateWithWorkspaceFocused(sourceState, id, viewportWidth), mode, { deferPersistence: true, persistenceReason: 'workspace-activate' });
574
+ }
575
+ function setWorkspaceLayoutMode(workspaceId, layoutMode) {
576
+ const id = String(workspaceId || '').trim();
577
+ const sourceState = latestStateRef.current || state;
578
+ if (!id || !workspaceById(sourceState, id)) return;
579
+ const withLayout = stateWithWorkspaceLayoutMode(sourceState, id, layoutMode);
580
+ commit(stateWithWorkspaceFocused(withLayout, id, viewportWidth), 'replace', { deferPersistence: true, persistenceReason: 'workspace-layout' });
581
+ }
582
+ function lineageLoadReportForSelected(sourceState = state) {
583
+ return lineageLoadReportForSelectedView(sourceState?.view || {});
584
+ }
585
+ async function loadFullLineage(workspaceId = active?.id || '') {
586
+ const sourceState = latestStateRef.current || state;
587
+ const targetId = String(workspaceId || sourceState.activeWorkspaceId || '').trim();
588
+ const targetWorkspace = workspaceById(sourceState, targetId);
589
+ const targetView = activeWorkspaceViewFor(sourceState, targetId);
590
+ const selectedRecordId = String(targetView.selectedRecordId || '').trim();
591
+ const result = await loadFullLineageCommand({ lifecycle: runtime().lifecycle, state: Object.assign({}, sourceState, { view: targetView }), workspace: targetWorkspace, selectedRecordId, fetchImpl: fetch, workspaceConfig });
592
+ if (!result?.ok) return setNotice(result?.message || 'Could not load lineage.');
593
+ setNotice(result.notice);
594
+ commit(stateWithWorkspaceViewPatchAndFocus(result.state, targetId, { lineageQuery: '', lineageLoadReport: result.lineageLoadReport, lineageAuditReport: null }, viewportWidth), result.commitMode || 'replace');
595
+ }
596
+ function runLineageAudit(workspaceId = active?.id || '') {
597
+ const sourceState = latestStateRef.current || state;
598
+ const targetId = String(workspaceId || sourceState.activeWorkspaceId || '').trim();
599
+ const targetWorkspace = workspaceById(sourceState, targetId);
600
+ const targetView = activeWorkspaceViewFor(sourceState, targetId);
601
+ const selectedRecordId = String(targetView.selectedRecordId || '').trim();
602
+ const result = runLineageAuditCommand({ state: Object.assign({}, sourceState, { view: targetView }), workspace: targetWorkspace, selectedRecordId, query: targetView.lineageQuery || '', existingLoadReport: lineageLoadReportForSelectedView(targetView) });
603
+ if (!result?.ok) return setNotice(result?.message || 'Could not run lineage audit.');
604
+ commit(stateWithWorkspaceViewPatchAndFocus(result.state, targetId, { lineageAuditReport: result.lineageAuditReport }, viewportWidth), 'replace');
605
+ }
606
+ function setVerse(verse, workspaceId = active?.id || '') {
607
+ commitWorkspaceViewPatch(workspaceId, workspaceVerseNavigationPatch(verse), 'push');
608
+ }
609
+ function toggleLineageCard(recordId, workspaceId = active?.id || '') {
610
+ const id = String(recordId || '').trim();
611
+ if (!id) return;
612
+ commitWorkspaceViewUpdate(workspaceId, (currentView) => {
613
+ const current = new Set(Array.isArray(currentView.expandedLineageRecordIds) ? currentView.expandedLineageRecordIds : []);
614
+ if (current.has(id)) current.delete(id);
615
+ else current.add(id);
616
+ return Object.assign({}, currentView, { expandedLineageRecordIds: Array.from(current) });
617
+ }, 'replace');
618
+ }
619
+ function setQuery(query, workspaceId = active?.id || '') {
620
+ commitWorkspaceViewUpdate(workspaceId, (currentView) => {
621
+ const verse = currentView.workspaceVerse || 'feed';
622
+ return verse === 'lineage'
623
+ ? Object.assign({}, currentView, { lineageQuery: query })
624
+ : Object.assign({}, currentView, { query });
625
+ }, 'replace');
626
+ }
627
+ async function openSchemaForRecord(record, workspaceId = active?.id || '') {
628
+ const sourceState = latestStateRef.current || state;
629
+ const targetId = String(workspaceId || sourceState.activeWorkspaceId || '').trim();
630
+ const targetWorkspace = workspaceById(sourceState, targetId);
631
+ const result = await openSchemaForRecordCommand({ state: stateWithWorkspaceFocused(sourceState, targetId, viewportWidth), workspace: targetWorkspace, record, loadSchemaMarkdown: (schemaId) => loadViewerSchemaMarkdown(schemaId, fetch), fetchImpl: fetch, clock: () => new Date().toISOString() });
632
+ if (!result?.ok) return setNotice(result?.notice || 'Schema reading contract is not available.');
633
+ setNotice(result.notice);
634
+ commitSemanticNavigation(result.state, result.commitMode || 'push');
635
+ }
636
+ function setDisplayOptions(options) {
637
+ const targetId = dialogWorkspaceId || (latestStateRef.current || state).activeWorkspaceId;
638
+ dismissDialog();
639
+ commitWorkspaceViewPatch(targetId, { displayOptions: normalizeWorkspaceDisplayOptions(options) }, 'replace');
640
+ }
641
+ function toggleTreeFolder(folderPath, open, workspaceId = active?.id || '') {
642
+ const path = String(folderPath || '').trim();
643
+ if (!path) return;
644
+ commitWorkspaceViewUpdate(workspaceId, (currentView) => {
645
+ const existing = new Set(Array.isArray(currentView.expandedTreeFolders) ? currentView.expandedTreeFolders : []);
646
+ if (open) existing.add(path);
647
+ else existing.delete(path);
648
+ return Object.assign({}, currentView, { expandedTreeFolders: Array.from(existing).sort() });
649
+ }, 'replace');
650
+ }
651
+ function shareProjectionFor(scope, { state: sourceState = latestStateRef.current || state, workspace = null, record = null } = {}) {
652
+ const configForScope = workspace?.workspaceConfig || activeWorkspaceConfig || workspaceConfig;
653
+ const { route, persistence } = runtime();
654
+ return projectShareTruth({
655
+ scope,
656
+ state: sourceState,
657
+ workspace,
658
+ record,
659
+ publicViewerUrl: configForScope?.viewerIdentity?.publicViewerUrl || workspaceConfig?.viewerIdentity?.publicViewerUrl || '',
660
+ exactStateBaseUrl: typeof window !== 'undefined' ? window.location.href : '',
661
+ routeCodec: route,
662
+ persistenceCodec: persistence
663
+ });
664
+ }
665
+ async function shareCurrent() {
666
+ const sourceState = latestStateRef.current || state;
667
+ const projection = shareProjectionFor(ShareScope.current, { state: sourceState, workspace: workspaceById(sourceState, sourceState.activeWorkspaceId) });
668
+ const result = await executeShareProjectionAction({ projection, clipboard: typeof navigator !== 'undefined' ? navigator.clipboard : null });
669
+ setNotice(result.notice);
670
+ }
671
+ const activeTemporal = active ? timePortalViewFor(activeWorkspaceViewFor(state, active.id)) : null;
672
+ const activeHistoricalRead = active ? timePortalReadFor(active, activeWorkspaceViewFor(state, active.id)) : null;
673
+ const activeHistoricalWorkspace = activeHistoricalRead ? historicalWorkspaceForReadModel(active, activeHistoricalRead) : null;
674
+ const activeRecord = activeRecordId
675
+ ? hydrateUiRecord((activeHistoricalWorkspace?.records || activeUi?.records || []).find((record) => record.id === activeRecordId))
676
+ : null;
677
+ const activeAsset = activeAssetId && activeUi?.assets ? activeUi.assets.find((asset) => asset.id === activeAssetId || asset.path === activeAssetId) : null;
678
+ const actionWorkspace = recordAction?.workspaceId ? workspaceById(state, recordAction.workspaceId) : active;
679
+ const actionWorkspaceUi = hydrateUiWorkspace(actionWorkspace);
680
+ const actionRecord = recordAction?.recordId && actionWorkspaceUi?.records ? hydrateUiRecord(actionWorkspaceUi.records.find((record) => record.id === recordAction.recordId)) : null;
681
+ const dialogWorkspace = workspaceById(state, dialogWorkspaceId || state.activeWorkspaceId) || active;
682
+ const dialogWorkspaceUi = hydrateUiWorkspace(dialogWorkspace);
683
+ const dialogWorkspaceView = activeWorkspaceViewFor(state, dialogWorkspace?.id || '');
684
+ const referenceSelectionOptions = useCanonicalReferenceSelectionOptions({ state, actionRecord, recordAction, actionWorkspace });
685
+ const placementSelectionOptions = useCanonicalPlacementSelectionOptions({ state, actionRecord, recordAction, actionWorkspace, dialog, dialogWorkspace });
686
+ const workspaceCreateActions = useMemo(() => dialog === 'create-artifact' && dialogWorkspace?.id
687
+ ? Object.freeze([
688
+ ...transitionProductActionsForWorkspace({ workspaceId: dialogWorkspace.id }),
689
+ ...schemaFactoryViewerProofActions()
690
+ ])
691
+ : Object.freeze([]), [dialog, dialogWorkspace?.id]);
692
+ const governanceDialogSource = dialog === 'source-governance' && dialogWorkspaceUi?.sources
693
+ ? dialogWorkspaceUi.sources.find((source) => source.id === sourceContinuationId) || null
694
+ : null;
695
+ const governanceDialogData = governanceDialogSource ? sourceGovernanceDialogData(governanceDialogSource, dialogWorkspaceUi) : null;
696
+ if (!shouldRenderProductStage(startupPhase)) return <StartupStage presentation={startupPresentation} runtimeId={TIINEX_RUNTIME_ID} sourceBoundary={CLEAN_URL_BOUNDARY} />;
697
+ const shellClasses = [
698
+ 'tx-react-runtime',
699
+ 'tx-uc001-shell',
700
+ 'tx-shell-config-grounded',
701
+ 'tx-shell-route-grounded',
702
+ 'tx-shell-command-portable',
703
+ 'tx-shell-scroll-owned',
704
+ 'tx-shell-footer-row-owned',
705
+ 'tx-schema-companion-runtime',
706
+ active ? 'tx-workspace-mode' : 'tx-empty-stage-mode'
707
+ ].join(' ');
708
+ return (
709
+ <main className={shellClasses} data-runtime={TIINEX_RUNTIME_ID} data-source-boundary={CLEAN_URL_BOUNDARY} data-uc="UC-001-empty-create-local-workspace-add-flow" onDragOver={(event) => event.preventDefault()} onDrop={(event) => { if (event.dataTransfer) { event.preventDefault(); if (activeTemporal?.mode === 'historical') { setNotice('Return to latest before importing material.'); return; } void handleGlobalWorkspaceDrop(event.dataTransfer, { sourceMode: 'stage-drop', fromDataTransfer: true }); } }}>
710
+ <GlobalDock
711
+ hasWorkspace={Boolean(active)}
712
+ workspaceCount={state.workspaces.length}
713
+ pagerVisible={pagerVisible}
714
+ previousWorkspaceEnabled={workspaceWindow.previousEnabled}
715
+ nextWorkspaceEnabled={workspaceWindow.nextEnabled}
716
+ onPreviousWorkspace={() => pageWorkspaceWindow('previous')}
717
+ onNextWorkspace={() => pageWorkspaceWindow('next')}
718
+ onCreate={activeTemporal?.mode === 'historical' ? () => setNotice('Return to latest before creating or importing material.') : openCreate}
719
+ homeHref={workspaceHomeHref(activeWorkspaceConfig, typeof window !== 'undefined' ? window.location : null)}
720
+ onShare={shareCurrent}
721
+ onHelp={() => setDialog('help')}
722
+ />
723
+ {active ? (
724
+ <div
725
+ className={`${visibleWorkspaceItems.length > 1 ? 'tx-workspace-multicolumn-stage' : 'tx-workspace-single-stage'} ${visibleWorkspaceItems.length === 1 && visibleWorkspaceItems[0]?.layoutMode === 'compact' ? 'tx-workspace-single-stage-compact' : ''}`.trim()}
726
+ data-workspace-columns={visibleWorkspaceItems.length}
727
+ data-window-from={workspaceWindow.from}
728
+ data-window-to={workspaceWindow.to}
729
+ style={{ '--tx-visible-workspace-columns': visibleWorkspaceItems.length, '--tx-workspace-columns': workspaceGridColumns }}
730
+ >
731
+ {visibleWorkspaceItems.map(({ workspace, ui, active: itemActive, surfaceState, layoutMode }) => {
732
+ const itemView = (surfaceState || state).view || {};
733
+ const itemTemporal = timePortalViewFor(itemView);
734
+ const itemReadModel = timePortalReadFor(workspace, itemView);
735
+ const historicalResolved = itemTemporal?.mode === 'historical';
736
+ const historicalWorkspace = historicalResolved && itemReadModel ? historicalWorkspaceForReadModel(workspace, itemReadModel) : null;
737
+ const presentedWorkspace = historicalResolved ? (historicalWorkspace || Object.assign({}, ui || workspace, { records: [], assets: [], sources: [], sourceOrder: [], historicalReview: true, historicalSnapshot: itemTemporal.snapshot })) : (ui || workspace);
738
+ return (
739
+ <div key={workspace.id} className={`tx-workspace-frame ${itemActive ? 'tx-workspace-frame-active' : 'tx-workspace-frame-inactive'} ${layoutMode === 'compact' ? 'tx-workspace-frame-compact' : 'tx-workspace-frame-expanded'}`} onMouseDownCapture={() => { if (!selection.session && !itemActive) activateWorkspace(workspace.id); }}>
740
+ <WorkspaceColumnSurface
741
+ workspace={presentedWorkspace}
742
+ state={surfaceState || state}
743
+ referenceRecords={referenceParticipantRecords}
744
+ graphWorkspaces={graphParticipantWorkspaces}
745
+ layoutMode={selection.session ? 'expanded' : layoutMode}
746
+ selectionSession={selection.session}
747
+ onSelectionChoose={selection.choose}
748
+ onSelectionCancel={selection.cancel}
749
+ onLayoutMode={(mode) => setWorkspaceLayoutMode(workspace.id, mode)}
750
+ onClose={() => openWorkspaceDialog('close-workspace', workspace.id)}
751
+ onRenameWorkspace={() => openWorkspaceDialog('rename-workspace', workspace.id)}
752
+ onVerse={(verse) => setVerse(verse, workspace.id)}
753
+ onQuery={(query) => setQuery(query, workspace.id)}
754
+ onOpenDisplayOptions={() => openWorkspaceDialog('display-options', workspace.id)}
755
+ onOpenAddDialog={(sourceId = '') => openAddToWorkspace(sourceId, workspace.id)}
756
+ onOpenCreateArtifact={() => openWorkspaceDialog('create-artifact', workspace.id)}
757
+ onExportWorkspace={() => openWorkspaceExportDialog(workspace.id)}
758
+ onShareWorkspace={() => historicalResolved ? shareCurrent() : shareWorkspace(workspace.id)}
759
+ onCloseSource={(sourceId) => closeSource(sourceId, workspace.id)}
760
+ onDropFiles={historicalResolved ? undefined : (fileList, options = {}) => addLocalFiles(fileList, Object.assign({}, options, { workspaceId: workspace.id }))}
761
+ onOpenRecord={(recordId) => openRecord(recordId, workspace.id)}
762
+ onOpenGraphRecord={(targetWorkspaceId, recordId) => openRecord(recordId, targetWorkspaceId || workspace.id)}
763
+ onFocusRecordLineage={(recordId) => focusRecordLineage(recordId, workspace.id)}
764
+ onOpenAsset={(assetId) => openAsset(assetId, workspace.id)}
765
+ onShareRecord={(record) => shareRecord(record, workspace.id)}
766
+ onRecordAction={(record, action) => openRecordAction(record, action, workspace.id)}
767
+ onOpenSchema={(record) => openSchemaForRecord(record, workspace.id)}
768
+ onToggleTreeFolder={(folderPath, open) => toggleTreeFolder(folderPath, open, workspace.id)}
769
+ onSourceTransportRefresh={(sourceId, currentTier, surfaceKeys) => refreshSourceTransport(sourceId, currentTier, surfaceKeys, workspace.id)}
770
+ onOpenGovernance={(sourceId) => openGovernanceBoundary(sourceId, workspace.id)}
771
+ onViewScroll={(verse, top) => noteViewScroll(workspace.id, verse, top)}
772
+ stageScrollTop={currentStageScrollTop(workspace.id, surfaceState || state)}
773
+ expandedLineageRecordIds={(surfaceState || state).view?.expandedLineageRecordIds || []}
774
+ lineageAuditReport={(surfaceState || state).view?.lineageAuditReport || null}
775
+ lineageLoadReport={(surfaceState || state).view?.lineageLoadReport || null}
776
+ onToggleLineageCard={(recordId) => toggleLineageCard(recordId, workspace.id)}
777
+ onRunLineageAudit={() => runLineageAudit(workspace.id)}
778
+ onLoadFullLineage={() => loadFullLineage(workspace.id)}
779
+ timePortal={itemTemporal}
780
+ historicalReadModel={itemReadModel}
781
+ readOnlyHistorical={historicalResolved}
782
+ onLoadHistoricalSnapshot={() => loadHistoricalSnapshot(workspace.id)}
783
+ onReturnToLatest={() => returnTimePortalToLatest(workspace.id)}
784
+ />
785
+ </div>
786
+ );
787
+ })}
788
+ </div>
789
+ ) : (
790
+ <EmptyStage workspaceConfig={activeWorkspaceConfig} />
791
+ )}
792
+ {notice ? <div className="tx-toast" role="status"><span>{notice}</span><button type="button" aria-label="Dismiss notice" onClick={() => setNotice('')}>×</button></div> : null}
793
+ <footer className="tx-footer" translate="no" title="Powered by Tiinex">Powered by <a href="https://github.com/Tiinex" target="_blank" rel="noopener noreferrer">Tiinex</a></footer>
794
+ {dialog === 'create-workspace' ? <CreateWorkspaceDialog error={createError} onSubmit={createWorkspace} onDismiss={dismissDialog} /> : null}
795
+ {dialog === 'create-artifact' && dialogWorkspace ? <WorkspaceCanonicalCreateDialog workspace={dialogWorkspaceUi || dialogWorkspace} actions={workspaceCreateActions} placementTargets={placementSelectionOptions.dialog?.options || []} selectionSession={selection.session} selectionResult={selection.result} onBeginSelection={selection.begin} onSelectionConsumed={selection.consume} onDismiss={dismissDialog} onCreate={canonicalCreation.createWorkspaceArtifactRecord} /> : null}
796
+ {dialog === 'rename-workspace' && dialogWorkspace ? <RenameWorkspaceDialog workspace={dialogWorkspaceUi || dialogWorkspace} onSubmit={renameWorkspace} onDismiss={dismissDialog} /> : null}
797
+ {dialog === 'close-workspace' && dialogWorkspace ? <CloseWorkspaceDialog workspace={dialogWorkspaceUi || dialogWorkspace} onDismiss={dismissDialog} onConfirm={() => closeWorkspace(dialogWorkspace.id)} /> : null}
798
+ {activeRecord ? <RecordDetailDialog record={activeRecord} onDismiss={dismissRecord} onLineage={activeRecord?.historicalSnapshot ? null : () => { const recordId = activeRecord.id; dismissRecord(); focusRecordLineage(recordId, active?.id || ''); }} onShare={activeRecord?.historicalSnapshot ? null : () => shareRecord(activeRecord)} /> : null}
799
+ {activeAsset ? <AssetDetailDialog asset={activeAsset} onDismiss={dismissAsset} /> : null}
800
+ {actionRecord ? <RecordActionDialog record={actionRecord} action={recordAction.action} schemaRegistry={schemaRegistry} workspaceId={actionWorkspace?.id || ''} workspaceRecords={actionWorkspace?.records || []} referenceTargets={referenceSelectionOptions?.options || []} placementTargets={placementSelectionOptions.action?.options || []} selectionSession={selection.session} selectionResult={selection.result} onBeginSelection={selection.begin} onSelectionConsumed={selection.consume} onDismiss={dismissRecordAction} onShare={() => shareRecord(actionRecord, actionWorkspace?.id || '')} onCreateTransition={createTransitionRecord} onCreateCanonicalTransition={canonicalCreation.createTransitionRecord} onCreateCanonicalReference={canonicalCreation.createReferenceRecord} onUpdateLocalDraft={updateLocalDraftRecord} /> : null}
801
+ {dialog === 'display-options' && dialogWorkspace ? <DisplayOptionsDialog options={dialogWorkspaceView?.displayOptions} counts={buildDisplayOptionCounts(dialogWorkspaceUi || dialogWorkspace)} scope={dialogWorkspaceView?.workspaceVerse === 'lineage' ? 'lineage' : 'discovery'} timePortal={timePortalViewFor(dialogWorkspaceView)} onResolveTimePortal={(intent) => openTimePortalResolver(intent, dialogWorkspace.id)} onReturnLatest={() => returnTimePortalToLatest(dialogWorkspace.id)} onSubmit={setDisplayOptions} onDismiss={dismissDialog} /> : null}
802
+ {dialog === 'time-portal-resolve' && dialogWorkspace ? <TimePortalResolveDialog timePortal={timePortalViewFor(dialogWorkspaceView)} sources={timePortalGithubSources(dialogWorkspace)} busy={timePortalBusy} error={timePortalError} onResolve={resolveTimePortalFromDialog} onDismiss={dismissDialog} /> : null}
803
+ {dialog === 'export-workspace' && dialogWorkspace ? <WorkspaceExportDialogController workspace={dialogWorkspaceUi || dialogWorkspace} onDismiss={dismissDialog} onExecute={executeWorkspaceExport} onPublicationResult={persistWorkspacePublicationResult} /> : null}
804
+ {dialog === 'add-to-workspace' && dialogWorkspace ? (
805
+ <AddToWorkspaceDialog
806
+ workspace={dialogWorkspaceUi || dialogWorkspace}
807
+ sourceContinuation={(dialogWorkspaceUi || dialogWorkspace).sources?.find((source) => source.id === sourceContinuationId) || null}
808
+ onDismiss={dismissDialog}
809
+ onAddFiles={(fileList, options = {}) => addLocalFiles(fileList, Object.assign({}, options, { workspaceId: dialogWorkspace.id }))}
810
+ onAddPastedTrace={addPastedTrace}
811
+ onAddGitHubSource={(input) => addGitHubSource(input, { state: latestStateRef.current || state, workspaceId: dialogWorkspace.id, semanticNavigation: true })}
812
+ onAddUrls={addExplicitUrls}
813
+ githubBusy={githubRequestPending}
814
+ />
815
+ ) : null}
816
+ {dialog === 'import-conflict' && pendingLocalImport ? <ImportConflictDialog conflicts={pendingLocalImport.conflicts} onResolve={resolveLocalImportConflict} onDismiss={() => resolveLocalImportConflict('cancel')} /> : null}
817
+ {dialog === 'workspace-entrypoint-choice' && pendingWorkspaceEntrypoint ? <WorkspaceEntrypointChoiceDialog entries={pendingWorkspaceEntrypoint.workspaceEntries} onResolve={resolveWorkspaceEntrypointChoice} onDismiss={() => resolveWorkspaceEntrypointChoice('cancel')} /> : null}
818
+ {governanceDialogSource && governanceDialogData ? <GovernanceBoundaryDialog source={governanceDialogSource} boundary={governanceDialogData.boundary} documents={governanceDialogData.documents} onDismiss={dismissDialog} /> : null}
819
+ {dialog === 'help' ? <HelpDialog workspaceConfig={activeWorkspaceConfig} onDismiss={dismissDialog} /> : null}
820
+ </main>
821
+ );
822
+ }