@marimo-team/islands 0.23.14-dev2 → 0.23.14-dev23

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 (79) hide show
  1. package/dist/{ConnectedDataExplorerComponent-Du3_nUzI.js → ConnectedDataExplorerComponent-DXBx_nQg.js} +4 -4
  2. package/dist/{chat-ui-CsPewo4h.js → chat-ui-CO8WuXGb.js} +3243 -3039
  3. package/dist/{code-visibility-CRYdBxcA.js → code-visibility-B3ntFQLc.js} +1115 -917
  4. package/dist/{formats-d6MhLuQ9.js → formats-WsOgyW_K.js} +1 -1
  5. package/dist/{glide-data-editor-DkzAInWG.js → glide-data-editor-qpmKyAPn.js} +2 -2
  6. package/dist/{html-to-image-DXwLcQ6l.js → html-to-image-DLSOS-bE.js} +2351 -2282
  7. package/dist/{input-CbEz_aj_.js → input-BSdZp5Ng.js} +1 -1
  8. package/dist/main.js +1139 -1071
  9. package/dist/{mermaid-CJW9vIyO.js → mermaid-D-HYBMEV.js} +2 -2
  10. package/dist/{process-output-C6_e1pT_.js → process-output-B9ysqk1y.js} +1 -1
  11. package/dist/{reveal-component-CbqUMhp8.js → reveal-component-C8j14RKU.js} +16 -16
  12. package/dist/{spec-Bv-XlYiv.js → spec-CnTgI25l.js} +1 -1
  13. package/dist/{toDate-D-l5s8nn.js → toDate-D1Z7ZXWh.js} +1 -1
  14. package/dist/{useAsyncData-1Dhzjfwf.js → useAsyncData-BMc8itk2.js} +1 -1
  15. package/dist/{useDeepCompareMemoize-CDWT3BDz.js → useDeepCompareMemoize-ZwmDBRDY.js} +1 -1
  16. package/dist/{useLifecycle-AHlswLw-.js → useLifecycle-CxffarYV.js} +1 -1
  17. package/dist/{useTheme-BrYvK-_A.js → useTheme-yGsGEk82.js} +26 -24
  18. package/dist/{vega-component-Pk6lyc_a.js → vega-component-BFJTyykA.js} +5 -5
  19. package/package.json +2 -2
  20. package/src/components/chat/acp/agent-panel.tsx +35 -1
  21. package/src/components/chat/chat-panel.tsx +68 -29
  22. package/src/components/data-table/__tests__/column-explorer.test.tsx +25 -0
  23. package/src/components/data-table/__tests__/column-visibility-dropdown.test.tsx +60 -3
  24. package/src/components/data-table/column-explorer-panel/column-explorer.tsx +33 -12
  25. package/src/components/data-table/column-visibility-dropdown.tsx +15 -0
  26. package/src/components/editor/actions/useNotebookActions.tsx +2 -2
  27. package/src/components/editor/chrome/panels/snippets-panel.tsx +5 -2
  28. package/src/components/editor/chrome/wrapper/__tests__/useOpenAiAssistant.test.ts +36 -0
  29. package/src/components/editor/chrome/wrapper/footer-items/pyodide-status.tsx +6 -36
  30. package/src/components/editor/chrome/wrapper/useAiPanel.ts +3 -1
  31. package/src/components/editor/chrome/wrapper/useOpenAiAssistant.ts +88 -0
  32. package/src/components/editor/code/readonly-python-code.tsx +16 -2
  33. package/src/components/editor/errors/__tests__/auto-fix.test.ts +23 -0
  34. package/src/components/editor/errors/auto-fix.tsx +88 -34
  35. package/src/components/editor/errors/fix-mode.ts +1 -1
  36. package/src/components/editor/output/MarimoTracebackOutput.tsx +10 -1
  37. package/src/components/editor/output/__tests__/traceback.test.tsx +14 -6
  38. package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +6 -2
  39. package/src/components/lifecycle/ProgressiveBoundary.tsx +42 -0
  40. package/src/components/lifecycle/RuntimeStatusBadge.tsx +59 -0
  41. package/src/components/lifecycle/__tests__/ProgressiveBoundary.test.tsx +147 -0
  42. package/src/components/lifecycle/__tests__/RuntimeStatusBadge.test.tsx +72 -0
  43. package/src/components/slides/slide-cell-view.tsx +7 -6
  44. package/src/core/ai/config.ts +2 -2
  45. package/src/core/ai/context/__tests__/registry.test.ts +133 -3
  46. package/src/core/ai/context/providers/__tests__/datasource.test.ts +3 -1
  47. package/src/core/ai/context/providers/__tests__/error.test.ts +200 -15
  48. package/src/core/ai/context/providers/datasource.ts +27 -2
  49. package/src/core/ai/context/providers/error.ts +226 -36
  50. package/src/core/ai/context/registry.ts +77 -43
  51. package/src/core/ai/state.ts +11 -0
  52. package/src/core/cells/__tests__/readonly-code-display.test.ts +46 -0
  53. package/src/core/cells/readonly-code-display.ts +35 -0
  54. package/src/core/codemirror/__tests__/setup.test.ts +33 -1
  55. package/src/core/codemirror/ai/resources.ts +15 -10
  56. package/src/core/codemirror/cells/extensions.ts +1 -4
  57. package/src/core/codemirror/completion/__tests__/signature-hint.test.ts +94 -0
  58. package/src/core/codemirror/completion/completer.ts +12 -1
  59. package/src/core/codemirror/completion/signature-hint.ts +68 -0
  60. package/src/core/codemirror/language/languages/python.ts +10 -4
  61. package/src/core/codemirror/utils.ts +15 -0
  62. package/src/core/edit-app.tsx +8 -5
  63. package/src/core/errors/errors.ts +2 -1
  64. package/src/core/lifecycle/__tests__/render-policy.test.ts +247 -0
  65. package/src/core/lifecycle/render-policy.ts +125 -0
  66. package/src/core/mime.ts +11 -4
  67. package/src/core/run-app.tsx +27 -23
  68. package/src/core/runtime/__tests__/adapter.test.ts +160 -0
  69. package/src/core/runtime/adapter.ts +182 -0
  70. package/src/core/wasm/PyodideLoader.tsx +20 -62
  71. package/src/core/wasm/bridge.ts +9 -4
  72. package/src/core/wasm/state.ts +8 -19
  73. package/src/core/wasm/store.ts +1 -1
  74. package/src/hooks/__tests__/useDelayElapsed.test.tsx +55 -0
  75. package/src/hooks/useDelayElapsed.ts +27 -0
  76. package/src/core/ai/context/providers/__tests__/__snapshots__/error.test.ts.snap +0 -3
  77. package/src/core/wasm/__tests__/PyodideLoader.test.ts +0 -72
  78. package/src/core/wasm/__tests__/state.test.ts +0 -124
  79. /package/dist/{files → export_demos}/wasm-intro.py +0 -0
@@ -13,6 +13,7 @@ import { AppHeader } from "@/components/editor/header/app-header";
13
13
  import { FilenameForm } from "@/components/editor/header/filename-form";
14
14
  import { MultiCellActionToolbar } from "@/components/editor/navigation/multi-cell-action-toolbar";
15
15
  import { ViewerBanner } from "@/components/editor/viewer-banner";
16
+ import { ProgressiveBoundary } from "@/components/lifecycle/ProgressiveBoundary";
16
17
  import { cn } from "@/utils/cn";
17
18
  import { Paths } from "@/utils/paths";
18
19
  import { AppContainer } from "../components/editor/app-container";
@@ -64,7 +65,6 @@ export const EditApp: React.FC<AppProps> = ({
64
65
  useCellActions();
65
66
  const viewState = useAtomValue(viewStateAtom);
66
67
  const numColumns = useAtomValue(numColumnsAtom);
67
- const hasCells = useAtomValue(hasCellsAtom);
68
68
  const filename = useFilename();
69
69
  const setLastSavedNotebook = useSetAtom(lastSavedNotebookAtom);
70
70
  const { sendComponentValues, sendInterrupt } = useRequestClient();
@@ -181,13 +181,16 @@ export const EditApp: React.FC<AppProps> = ({
181
181
 
182
182
  <ViewerBanner />
183
183
 
184
- {/* Don't render until we have a single cell */}
185
- {hasCells && (
184
+ {/* Don't render until we have a single cell. NotStartedConnectionAlert
185
+ still covers the "no remote runtime started" prompt. */}
186
+ <ProgressiveBoundary
187
+ requires={hasCellsAtom}
188
+ fallback={<NotStartedConnectionAlert />}
189
+ >
186
190
  <CellsRenderer appConfig={appConfig} mode={viewState.mode}>
187
191
  {editableCellsArray}
188
192
  </CellsRenderer>
189
- )}
190
- {!hasCells && <NotStartedConnectionAlert />}
193
+ </ProgressiveBoundary>
191
194
  </AppContainer>
192
195
  <MultiCellActionToolbar />
193
196
  {!hideControls && (
@@ -6,6 +6,7 @@ import type { AiCompletionCell } from "../ai/state";
6
6
  import type { CellId } from "../cells/ids";
7
7
  import type { MarimoError } from "../kernel/messages";
8
8
  import { wrapInFunction } from "./utils";
9
+ import { store } from "../state/jotai";
9
10
 
10
11
  interface AIFix {
11
12
  setAiCompletionCell: (opts: AiCompletionCell) => void;
@@ -84,7 +85,7 @@ export function getAutoFixes(
84
85
  description: "Fix the SQL statement",
85
86
  fixType: "ai",
86
87
  onFix: async (ctx) => {
87
- const datasourceContext = getDatasourceContext(ctx.cellId);
88
+ const datasourceContext = getDatasourceContext(ctx.cellId, store);
88
89
  let initialPrompt = `Fix the SQL statement: ${error.msg}.`;
89
90
  if (datasourceContext) {
90
91
  initialPrompt += `\nDatabase schema: ${datasourceContext}`;
@@ -0,0 +1,247 @@
1
+ /* Copyright 2026 Marimo. All rights reserved. */
2
+
3
+ import { afterEach, beforeEach, describe, expect, it } from "vitest";
4
+ import { visibleForTesting } from "../render-policy";
5
+
6
+ const { computeRenderPolicy } = visibleForTesting;
7
+
8
+ const originalHref = window.location.href;
9
+ function setSearch(search: string) {
10
+ window.history.replaceState(null, "", `/${search}`);
11
+ }
12
+
13
+ describe("computeRenderPolicy", () => {
14
+ it("shows code in edit mode", () => {
15
+ const policy = computeRenderPolicy({
16
+ mode: "edit",
17
+ showAppCode: false, // ignored in edit mode
18
+ hasCells: true,
19
+ hasCachedOutputs: false,
20
+ allCellsIdle: false,
21
+ });
22
+ expect(policy.showCode).toBe(true);
23
+ });
24
+
25
+ it("hides code in present mode regardless of config", () => {
26
+ const policy = computeRenderPolicy({
27
+ mode: "present",
28
+ showAppCode: true,
29
+ hasCells: true,
30
+ hasCachedOutputs: true,
31
+ allCellsIdle: false,
32
+ });
33
+ expect(policy.showCode).toBe(false);
34
+ });
35
+
36
+ it("respects showAppCode in read mode", () => {
37
+ expect(
38
+ computeRenderPolicy({
39
+ mode: "read",
40
+ showAppCode: true,
41
+ hasCells: true,
42
+ hasCachedOutputs: false,
43
+ allCellsIdle: false,
44
+ }).showCode,
45
+ ).toBe(true);
46
+
47
+ expect(
48
+ computeRenderPolicy({
49
+ mode: "read",
50
+ showAppCode: false,
51
+ hasCells: true,
52
+ hasCachedOutputs: false,
53
+ allCellsIdle: false,
54
+ }).showCode,
55
+ ).toBe(false);
56
+ });
57
+
58
+ it("reports showCachedOutputs when cells and cached outputs are present", () => {
59
+ expect(
60
+ computeRenderPolicy({
61
+ mode: "read",
62
+ showAppCode: false,
63
+ hasCells: true,
64
+ hasCachedOutputs: true,
65
+ allCellsIdle: false,
66
+ }).showCachedOutputs,
67
+ ).toBe(true);
68
+ });
69
+
70
+ it("does not report showCachedOutputs when there are no cells", () => {
71
+ expect(
72
+ computeRenderPolicy({
73
+ mode: "read",
74
+ showAppCode: false,
75
+ hasCells: false,
76
+ hasCachedOutputs: true,
77
+ allCellsIdle: false,
78
+ }).showCachedOutputs,
79
+ ).toBe(false);
80
+ });
81
+
82
+ it("only reports showCachedOutputs for real outputs, not an idle notebook", () => {
83
+ // Regression guard: `showCachedOutputs` must stay honest even when the
84
+ // notebook is settled with no outputs (that only affects `canPaint`).
85
+ expect(
86
+ computeRenderPolicy({
87
+ mode: "read",
88
+ showAppCode: false,
89
+ hasCells: true,
90
+ hasCachedOutputs: false,
91
+ allCellsIdle: true,
92
+ }).showCachedOutputs,
93
+ ).toBe(false);
94
+ });
95
+ });
96
+
97
+ describe("computeRenderPolicy — read-mode code visibility", () => {
98
+ beforeEach(() => {
99
+ setSearch("");
100
+ });
101
+
102
+ afterEach(() => {
103
+ window.history.replaceState(null, "", originalHref);
104
+ });
105
+
106
+ it("hides code when the server stripped sources (?include-code=false)", () => {
107
+ setSearch("?include-code=false");
108
+ const policy = computeRenderPolicy({
109
+ mode: "read",
110
+ showAppCode: true, // config would show code, but sources are stripped
111
+ hasCells: true,
112
+ hasCachedOutputs: false,
113
+ allCellsIdle: false,
114
+ });
115
+ expect(policy.showCode).toBe(false);
116
+ // With no code, no outputs, and still running, there is nothing to paint.
117
+ expect(policy.canPaint).toBe(false);
118
+ });
119
+
120
+ it("include-code=false still paints when cached outputs exist", () => {
121
+ setSearch("?include-code=false");
122
+ expect(
123
+ computeRenderPolicy({
124
+ mode: "read",
125
+ showAppCode: true,
126
+ hasCells: true,
127
+ hasCachedOutputs: true,
128
+ allCellsIdle: false,
129
+ }).canPaint,
130
+ ).toBe(true);
131
+ });
132
+ });
133
+
134
+ describe("computeRenderPolicy.canPaint", () => {
135
+ it("is false when no cells exist, even if all (zero) cells are vacuously idle", () => {
136
+ expect(
137
+ computeRenderPolicy({
138
+ mode: "read",
139
+ showAppCode: true,
140
+ hasCells: false,
141
+ hasCachedOutputs: false,
142
+ allCellsIdle: true,
143
+ }).canPaint,
144
+ ).toBe(false);
145
+ });
146
+
147
+ it("is true in edit mode whenever cells exist", () => {
148
+ expect(
149
+ computeRenderPolicy({
150
+ mode: "edit",
151
+ showAppCode: false,
152
+ hasCells: true,
153
+ hasCachedOutputs: false,
154
+ allCellsIdle: false,
155
+ }).canPaint,
156
+ ).toBe(true);
157
+ });
158
+
159
+ it("is true in read mode when code is visible", () => {
160
+ expect(
161
+ computeRenderPolicy({
162
+ mode: "read",
163
+ showAppCode: true,
164
+ hasCells: true,
165
+ hasCachedOutputs: false,
166
+ allCellsIdle: false,
167
+ }).canPaint,
168
+ ).toBe(true);
169
+ });
170
+
171
+ it("is false in headless read mode while the notebook is still running with no outputs", () => {
172
+ expect(
173
+ computeRenderPolicy({
174
+ mode: "read",
175
+ showAppCode: false,
176
+ hasCells: true,
177
+ hasCachedOutputs: false,
178
+ allCellsIdle: false,
179
+ }).canPaint,
180
+ ).toBe(false);
181
+ });
182
+
183
+ it("is true in headless read mode with cached outputs", () => {
184
+ expect(
185
+ computeRenderPolicy({
186
+ mode: "read",
187
+ showAppCode: false,
188
+ hasCells: true,
189
+ hasCachedOutputs: true,
190
+ allCellsIdle: false,
191
+ }).canPaint,
192
+ ).toBe(true);
193
+ });
194
+
195
+ it("is true in headless read mode for a settled notebook with no outputs", () => {
196
+ // A notebook that ran to completion producing no outputs must still paint
197
+ // (empty) rather than sit on a spinner — parity with the pre-framework
198
+ // `hasAnyOutputAtom` idle fallback.
199
+ expect(
200
+ computeRenderPolicy({
201
+ mode: "read",
202
+ showAppCode: false,
203
+ hasCells: true,
204
+ hasCachedOutputs: false,
205
+ allCellsIdle: true,
206
+ }).canPaint,
207
+ ).toBe(true);
208
+ });
209
+
210
+ // In present mode `showCode` is always false, so `canPaint` rides entirely
211
+ // on cached outputs / a settled notebook.
212
+ it("is true in present mode with cached outputs", () => {
213
+ expect(
214
+ computeRenderPolicy({
215
+ mode: "present",
216
+ showAppCode: true,
217
+ hasCells: true,
218
+ hasCachedOutputs: true,
219
+ allCellsIdle: false,
220
+ }).canPaint,
221
+ ).toBe(true);
222
+ });
223
+
224
+ it("is false in present mode while still running with no outputs", () => {
225
+ expect(
226
+ computeRenderPolicy({
227
+ mode: "present",
228
+ showAppCode: true,
229
+ hasCells: true,
230
+ hasCachedOutputs: false,
231
+ allCellsIdle: false,
232
+ }).canPaint,
233
+ ).toBe(false);
234
+ });
235
+
236
+ it("is true in present mode for a settled notebook with no outputs", () => {
237
+ expect(
238
+ computeRenderPolicy({
239
+ mode: "present",
240
+ showAppCode: true,
241
+ hasCells: true,
242
+ hasCachedOutputs: false,
243
+ allCellsIdle: true,
244
+ }).canPaint,
245
+ ).toBe(true);
246
+ });
247
+ });
@@ -0,0 +1,125 @@
1
+ /* Copyright 2026 Marimo. All rights reserved. */
2
+
3
+ import { atom } from "jotai";
4
+ import { hasCellsAtom, notebookAtom } from "../cells/cells";
5
+ import { isOutputEmpty } from "../cells/outputs";
6
+ import { KnownQueryParams } from "../constants";
7
+ import { showCodeInRunModeAtom } from "../meta/state";
8
+ import { type AppMode, initialModeAtom } from "../mode";
9
+ import { hasQueryParam } from "@/utils/urls";
10
+
11
+ export interface RenderPolicy {
12
+ /** False in `present` mode, and in `read` mode when the user has opted to hide code. */
13
+ showCode: boolean;
14
+ /** True only when there are real, non-empty cached outputs to display. */
15
+ showCachedOutputs: boolean;
16
+ /**
17
+ * Whether the current view has anything to paint without waiting on the
18
+ * runtime:
19
+ * - In edit/home/gallery mode, this is `hasCells` — the editor renders the
20
+ * cell skeleton even when output is empty.
21
+ * - In read/present mode with code visible, the cell source is enough.
22
+ * - In headless read mode (code hidden), we need either cached outputs or a
23
+ * settled notebook (all cells idle) — a completed but output-less notebook
24
+ * is still "done" and shouldn't strand on an infinite spinner.
25
+ */
26
+ canPaint: boolean;
27
+ }
28
+
29
+ function readCodeVisibility(
30
+ mode: AppMode | undefined,
31
+ showAppCode: boolean,
32
+ ): boolean {
33
+ if (mode === "edit" || mode === "home" || mode === "gallery") {
34
+ return true;
35
+ }
36
+ if (mode === "present") {
37
+ return false;
38
+ }
39
+ // read mode (or undefined). If `marimo run` stripped the sources
40
+ // (`--include-code` off), there is no code to show regardless of any other
41
+ // signal — mirror `core/meta/code-visibility.ts` so the two don't drift.
42
+ if (hasQueryParam(KnownQueryParams.includeCode, "false")) {
43
+ return false;
44
+ }
45
+ // Otherwise the URL `show-code` param wins, then the view config.
46
+ if (hasQueryParam(KnownQueryParams.showCode, "false")) {
47
+ return false;
48
+ }
49
+ if (hasQueryParam(KnownQueryParams.showCode, "true")) {
50
+ return true;
51
+ }
52
+ return showAppCode;
53
+ }
54
+
55
+ function computeRenderPolicy(input: {
56
+ mode: AppMode | undefined;
57
+ showAppCode: boolean;
58
+ hasCells: boolean;
59
+ hasCachedOutputs: boolean;
60
+ /**
61
+ * True when every cell is idle. A settled notebook is paintable even with no
62
+ * visible outputs — otherwise a completed but output-less notebook viewed in
63
+ * headless read mode would strand on an infinite spinner. Mirrors the
64
+ * pre-framework `hasAnyOutputAtom` idle fallback.
65
+ */
66
+ allCellsIdle: boolean;
67
+ }): RenderPolicy {
68
+ const showCode = readCodeVisibility(input.mode, input.showAppCode);
69
+ const showCachedOutputs = input.hasCells && input.hasCachedOutputs;
70
+ const canPaint =
71
+ input.hasCells && (showCode || showCachedOutputs || input.allCellsIdle);
72
+
73
+ return { showCode, showCachedOutputs, canPaint };
74
+ }
75
+
76
+ /**
77
+ * Both cell-runtime facts the render policy needs, computed in a single pass
78
+ * over `cellRuntime`:
79
+ * - `hasCachedOutputs`: any cell has a non-empty output.
80
+ * - `allCellsIdle`: every cell's status is idle — nothing queued or running.
81
+ * Vacuously true for an empty notebook, so `canPaint` still gates on
82
+ * `hasCells`.
83
+ *
84
+ * Fan out to two boolean selector atoms below so `renderPolicyAtom` only
85
+ * recomputes when one of the booleans actually flips, not on every notebook
86
+ * update.
87
+ */
88
+ const cellRuntimeSummaryAtom = atom((get) => {
89
+ let hasCachedOutputs = false;
90
+ let allCellsIdle = true;
91
+ for (const runtime of Object.values(get(notebookAtom).cellRuntime)) {
92
+ if (!isOutputEmpty(runtime.output)) {
93
+ hasCachedOutputs = true;
94
+ }
95
+ if (runtime.status !== "idle") {
96
+ allCellsIdle = false;
97
+ }
98
+ }
99
+ return { hasCachedOutputs, allCellsIdle };
100
+ });
101
+
102
+ const hasCachedOutputsAtom = atom(
103
+ (get) => get(cellRuntimeSummaryAtom).hasCachedOutputs,
104
+ );
105
+
106
+ const allCellsIdleAtom = atom(
107
+ (get) => get(cellRuntimeSummaryAtom).allCellsIdle,
108
+ );
109
+
110
+ export const renderPolicyAtom = atom<RenderPolicy>((get) =>
111
+ computeRenderPolicy({
112
+ mode: get(initialModeAtom),
113
+ showAppCode: get(showCodeInRunModeAtom),
114
+ hasCells: get(hasCellsAtom),
115
+ hasCachedOutputs: get(hasCachedOutputsAtom),
116
+ allCellsIdle: get(allCellsIdleAtom),
117
+ }),
118
+ );
119
+
120
+ /** Sugar over `renderPolicyAtom.canPaint`. */
121
+ export const canPaintAtom = atom((get) => get(renderPolicyAtom).canPaint);
122
+
123
+ export const visibleForTesting = {
124
+ computeRenderPolicy,
125
+ };
package/src/core/mime.ts CHANGED
@@ -1,9 +1,16 @@
1
1
  /* Copyright 2026 Marimo. All rights reserved. */
2
2
  import type { OutputMessage } from "./kernel/messages";
3
3
 
4
+ export function isMarimoErrorsMime(
5
+ mime: OutputMessage["mimetype"] | undefined,
6
+ ) {
7
+ return mime === "application/vnd.marimo+error";
8
+ }
9
+
10
+ export function isTracebackMime(mime: OutputMessage["mimetype"] | undefined) {
11
+ return mime === "application/vnd.marimo+traceback";
12
+ }
13
+
4
14
  export function isErrorMime(mime: OutputMessage["mimetype"] | undefined) {
5
- return (
6
- mime === "application/vnd.marimo+error" ||
7
- mime === "application/vnd.marimo+traceback"
8
- );
15
+ return isMarimoErrorsMime(mime) || isTracebackMime(mime);
9
16
  }
@@ -1,13 +1,13 @@
1
1
  /* Copyright 2026 Marimo. All rights reserved. */
2
2
 
3
- import { useAtomValue } from "jotai";
3
+ import { atom, useAtomValue } from "jotai";
4
4
  import { ArrowLeftIcon } from "lucide-react";
5
5
  import { useEffect } from "react";
6
6
  import { AppContainer } from "@/components/editor/app-container";
7
7
  import { AppHeader } from "@/components/editor/header/app-header";
8
+ import { ProgressiveBoundary } from "@/components/lifecycle/ProgressiveBoundary";
8
9
  import { Spinner } from "@/components/icons/spinner";
9
10
  import { buttonVariants } from "@/components/ui/button";
10
- import { DelayMount } from "@/components/utils/delay-mount";
11
11
  import { cn } from "@/utils/cn";
12
12
  import { CellsRenderer } from "../components/editor/renderers/cells-renderer";
13
13
  import {
@@ -18,6 +18,7 @@ import {
18
18
  import type { AppConfig } from "./config/config-schema";
19
19
  import { RuntimeState } from "./kernel/RuntimeState";
20
20
  import { getSessionId } from "./kernel/session";
21
+ import { connectionAtom } from "./network/connection";
21
22
  import { useRequestClient } from "./network/requests";
22
23
  import { isAppConnecting } from "./websocket/connection-utils";
23
24
  import { useMarimoKernelConnection } from "./websocket/useMarimoKernelConnection";
@@ -26,6 +27,16 @@ interface AppProps {
26
27
  appConfig: AppConfig;
27
28
  }
28
29
 
30
+ /**
31
+ * Paint the (possibly empty) app once we have cells, or as soon as we are no
32
+ * longer actively connecting. Without the connection check, a connected or
33
+ * disconnected notebook with no cells would sit on a misleading "Connecting…"
34
+ * spinner instead of rendering the empty app.
35
+ */
36
+ const canPaintRunAppAtom = atom(
37
+ (get) => get(hasCellsAtom) || !isAppConnecting(get(connectionAtom).state),
38
+ );
39
+
29
40
  export const RunApp: React.FC<AppProps> = ({ appConfig }) => {
30
41
  const { setCells } = useCellActions();
31
42
  const { sendComponentValues } = useRequestClient();
@@ -45,26 +56,6 @@ export const RunApp: React.FC<AppProps> = ({ appConfig }) => {
45
56
  });
46
57
 
47
58
  const isRunning = useAtomValue(notebookIsRunningAtom);
48
- const isConnecting = isAppConnecting(connection.state);
49
- // Skip the "Connecting..." gate when we already have cells to show — from
50
- // an embedded snapshot or a prior connection.
51
- const hasExistingCells = useAtomValue(hasCellsAtom);
52
-
53
- const renderCells = () => {
54
- // If we are connecting for more than 2 seconds, show a spinner
55
- if (isConnecting && !hasExistingCells) {
56
- return (
57
- <DelayMount milliseconds={2000} fallback={null}>
58
- <Spinner className="mx-auto" />
59
- <p className="text-center text-sm text-muted-foreground mt-2">
60
- Connecting...
61
- </p>
62
- </DelayMount>
63
- );
64
- }
65
-
66
- return <CellsRenderer appConfig={appConfig} mode="read" />;
67
- };
68
59
 
69
60
  const galleryHref = (() => {
70
61
  if (typeof window === "undefined") {
@@ -103,7 +94,20 @@ export const RunApp: React.FC<AppProps> = ({ appConfig }) => {
103
94
  </div>
104
95
  )}
105
96
  </AppHeader>
106
- {renderCells()}
97
+ <ProgressiveBoundary
98
+ requires={canPaintRunAppAtom}
99
+ delay={2000}
100
+ fallback={
101
+ <>
102
+ <Spinner className="mx-auto" />
103
+ <p className="text-center text-sm text-muted-foreground mt-2">
104
+ Connecting...
105
+ </p>
106
+ </>
107
+ }
108
+ >
109
+ <CellsRenderer appConfig={appConfig} mode="read" />
110
+ </ProgressiveBoundary>
107
111
  </AppContainer>
108
112
  );
109
113
  };
@@ -0,0 +1,160 @@
1
+ /* Copyright 2026 Marimo. All rights reserved. */
2
+
3
+ import { createStore } from "jotai";
4
+ import { describe, expect, it } from "vitest";
5
+ import { islandsInitializedAtom } from "../../islands/state";
6
+ import { kernelStateAtom } from "../../kernel/state";
7
+ import { connectionAtom } from "../../network/connection";
8
+ import { wasmInitStateAtom } from "../../wasm/state";
9
+ import { WebSocketState } from "../../websocket/types";
10
+ import {
11
+ canRunCellsAtom,
12
+ islandsAdapter,
13
+ remoteAdapter,
14
+ runtimeAdapterAtom,
15
+ staticAdapter,
16
+ wasmAdapter,
17
+ } from "../adapter";
18
+
19
+ describe("wasmAdapter", () => {
20
+ it("reports connecting with the progress label while loading", () => {
21
+ const store = createStore();
22
+ store.set(wasmInitStateAtom, {
23
+ kind: "loading",
24
+ message: "Loading Pyodide…",
25
+ });
26
+ expect(store.get(wasmAdapter.state)).toEqual({
27
+ kind: "connecting",
28
+ progress: { label: "Loading Pyodide…" },
29
+ });
30
+ });
31
+
32
+ it("reports ready when initialized", () => {
33
+ const store = createStore();
34
+ store.set(wasmInitStateAtom, { kind: "ready" });
35
+ expect(store.get(wasmAdapter.state)).toEqual({ kind: "ready" });
36
+ });
37
+
38
+ it("exposes the real error message on failure", () => {
39
+ const store = createStore();
40
+ store.set(wasmInitStateAtom, {
41
+ kind: "error",
42
+ message: "ImportError: numpy",
43
+ });
44
+ expect(store.get(wasmAdapter.state)).toEqual({
45
+ kind: "failed",
46
+ error: { message: "ImportError: numpy", errorKind: "init" },
47
+ });
48
+ });
49
+ });
50
+
51
+ describe("remoteAdapter", () => {
52
+ it.each([
53
+ [{ state: WebSocketState.OPEN }, { kind: "ready" }],
54
+ [
55
+ { state: WebSocketState.CONNECTING },
56
+ { kind: "connecting", progress: { label: "Connecting…" } },
57
+ ],
58
+ [
59
+ { state: WebSocketState.NOT_STARTED },
60
+ { kind: "connecting", progress: { label: "Not connected" } },
61
+ ],
62
+ ] as const)("maps %j to %j", (conn, expected) => {
63
+ const store = createStore();
64
+ store.set(connectionAtom, conn as never);
65
+ expect(store.get(remoteAdapter.state)).toEqual(expected);
66
+ });
67
+
68
+ it("surfaces the close reason when closed", () => {
69
+ const store = createStore();
70
+ store.set(connectionAtom, {
71
+ state: WebSocketState.CLOSED,
72
+ code: "KERNEL_DISCONNECTED",
73
+ reason: "Kernel went away",
74
+ });
75
+ expect(store.get(remoteAdapter.state)).toEqual({
76
+ kind: "failed",
77
+ error: { message: "Kernel went away", errorKind: "runtime" },
78
+ });
79
+ });
80
+ });
81
+
82
+ describe("staticAdapter", () => {
83
+ it("is always ready", () => {
84
+ const store = createStore();
85
+ expect(store.get(staticAdapter.state)).toEqual({ kind: "ready" });
86
+ });
87
+
88
+ it("advertises no capabilities", () => {
89
+ expect(staticAdapter.capabilities).toEqual({
90
+ canHealthCheck: false,
91
+ canShutdown: false,
92
+ canRestart: false,
93
+ supportsLsp: false,
94
+ });
95
+ });
96
+ });
97
+
98
+ describe("islandsAdapter", () => {
99
+ it("is connecting before islands report initialization", () => {
100
+ const store = createStore();
101
+ store.set(islandsInitializedAtom, false);
102
+ expect(store.get(islandsAdapter.state)).toEqual({
103
+ kind: "connecting",
104
+ progress: { label: "Initializing islands…" },
105
+ });
106
+ });
107
+
108
+ it("is ready once islands initialize", () => {
109
+ const store = createStore();
110
+ store.set(islandsInitializedAtom, true);
111
+ expect(store.get(islandsAdapter.state)).toEqual({ kind: "ready" });
112
+ });
113
+
114
+ it("surfaces the error string when islands fail", () => {
115
+ const store = createStore();
116
+ store.set(islandsInitializedAtom, "wheel download failed");
117
+ expect(store.get(islandsAdapter.state)).toEqual({
118
+ kind: "failed",
119
+ error: { message: "wheel download failed", errorKind: "init" },
120
+ });
121
+ });
122
+ });
123
+
124
+ describe("canRunCellsAtom", () => {
125
+ it("is false on a remote adapter until kernel acks", () => {
126
+ const store = createStore();
127
+ // Default adapter in test env is remote.
128
+ store.set(connectionAtom, { state: WebSocketState.OPEN });
129
+ expect(store.get(canRunCellsAtom)).toBe(false);
130
+
131
+ store.set(kernelStateAtom, { isInstantiated: true, error: null });
132
+ expect(store.get(canRunCellsAtom)).toBe(true);
133
+ });
134
+
135
+ it("is true on WASM as soon as the adapter is ready (no separate kernel ack)", () => {
136
+ const store = createStore();
137
+ store.set(runtimeAdapterAtom, wasmAdapter);
138
+ store.set(wasmInitStateAtom, { kind: "loading", message: "…" });
139
+ expect(store.get(canRunCellsAtom)).toBe(false);
140
+
141
+ store.set(wasmInitStateAtom, { kind: "ready" });
142
+ expect(store.get(canRunCellsAtom)).toBe(true);
143
+ });
144
+
145
+ it("is always false on a static notebook", () => {
146
+ const store = createStore();
147
+ store.set(runtimeAdapterAtom, staticAdapter);
148
+ expect(store.get(canRunCellsAtom)).toBe(false);
149
+ });
150
+
151
+ it("is true on islands once initialized", () => {
152
+ const store = createStore();
153
+ store.set(runtimeAdapterAtom, islandsAdapter);
154
+ store.set(islandsInitializedAtom, false);
155
+ expect(store.get(canRunCellsAtom)).toBe(false);
156
+
157
+ store.set(islandsInitializedAtom, true);
158
+ expect(store.get(canRunCellsAtom)).toBe(true);
159
+ });
160
+ });