@marimo-team/islands 0.23.16-dev26 → 0.23.16-dev29

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 (24) hide show
  1. package/dist/{chat-ui-BMBk8I78.js → chat-ui-DuPGKU9z.js} +12 -12
  2. package/dist/{code-visibility-DQX4c5V7.js → common-CozjhRem.js} +984 -952
  3. package/dist/{html-to-image-27MFfyOf.js → html-to-image-Bza3T2dl.js} +2124 -2114
  4. package/dist/main.js +6 -13
  5. package/dist/{process-output-BpssYna4.js → process-output-pCEXvnhG.js} +1 -1
  6. package/dist/{reveal-component-DyOeuep6.js → reveal-component-BaMyGKAw.js} +624 -616
  7. package/dist/style.css +1 -1
  8. package/package.json +1 -1
  9. package/src/components/data-table/__tests__/__snapshots__/chart-spec-model.test.ts.snap +174 -21
  10. package/src/components/data-table/__tests__/chart-spec-model.test.ts +102 -1
  11. package/src/components/data-table/column-summary/chart-spec-model.tsx +163 -103
  12. package/src/components/data-table/column-summary/legacy-chart-spec.ts +15 -7
  13. package/src/components/data-table/column-summary/utils.ts +26 -7
  14. package/src/components/data-table/types.ts +1 -1
  15. package/src/components/slides/__tests__/cell-output-block.test.tsx +40 -0
  16. package/src/components/slides/__tests__/slide-cell-view.test.tsx +33 -0
  17. package/src/components/slides/reveal-component.tsx +22 -17
  18. package/src/components/slides/slide-cell-view.tsx +1 -1
  19. package/src/components/slides/slides.css +4 -2
  20. package/src/core/codemirror/find-replace/__tests__/navigate.test.ts +42 -30
  21. package/src/core/codemirror/find-replace/navigate.ts +2 -0
  22. package/src/core/codemirror/go-to-definition/__tests__/commands.test.ts +24 -3
  23. package/src/core/codemirror/go-to-definition/commands.ts +3 -0
  24. package/src/core/codemirror/utils.ts +28 -0
@@ -20,6 +20,26 @@ vi.mock("@/core/cells/cells", () => ({
20
20
  getAllEditorViews: () => mockGetAllEditorViews(),
21
21
  }));
22
22
 
23
+ /**
24
+ * A view stub that only carries what navigate needs
25
+ */
26
+ function createMockView(state: EditorState): EditorView {
27
+ const cell = document.createElement("div");
28
+ cell.className = "marimo-cell";
29
+ // jsdom doesn't implement scrollIntoView.
30
+ cell.scrollIntoView = vi.fn();
31
+ const dom = document.createElement("div");
32
+ cell.append(dom);
33
+
34
+ return {
35
+ state,
36
+ dom,
37
+ // Don't actually apply changes; it's complex to mock properly and the
38
+ // assertions only care that dispatch was called.
39
+ dispatch: vi.fn(),
40
+ } as unknown as EditorView;
41
+ }
42
+
23
43
  describe("navigate", () => {
24
44
  let view1: EditorView;
25
45
  let view2: EditorView;
@@ -36,20 +56,8 @@ describe("navigate", () => {
36
56
  });
37
57
 
38
58
  // Create mock views that track dispatch calls
39
- view1 = {
40
- state: state1,
41
- dispatch: vi.fn(() => {
42
- // Mock dispatch - in real tests we just need to verify it was called
43
- // Don't actually apply changes as it's complex to mock properly
44
- }),
45
- } as unknown as EditorView;
46
-
47
- view2 = {
48
- state: state2,
49
- dispatch: vi.fn(() => {
50
- // Mock dispatch - in real tests we just need to verify it was called
51
- }),
52
- } as unknown as EditorView;
59
+ view1 = createMockView(state1);
60
+ view2 = createMockView(state2);
53
61
 
54
62
  mockViews = [view1, view2];
55
63
  mockGetAllEditorViews.mockReturnValue(mockViews);
@@ -234,6 +242,22 @@ describe("navigate", () => {
234
242
 
235
243
  expect(result).toBe(false);
236
244
  });
245
+
246
+ it("should scroll the cell owning the match into view", async () => {
247
+ const cell = view1.dom.closest(".marimo-cell");
248
+ invariant(cell, "mock view should be inside a cell");
249
+
250
+ expect(findNext()).toBeTruthy();
251
+
252
+ // The scroll is deferred a frame.
253
+ await new Promise((resolve) => requestAnimationFrame(resolve));
254
+
255
+ expect(cell.scrollIntoView).toHaveBeenCalledWith({
256
+ behavior: "instant",
257
+ block: "nearest",
258
+ inline: "nearest",
259
+ });
260
+ });
237
261
  });
238
262
 
239
263
  describe("findPrev", () => {
@@ -319,10 +343,7 @@ describe("navigate", () => {
319
343
  extensions: [EditorState.readOnly.of(true)],
320
344
  });
321
345
 
322
- const readOnlyView = {
323
- state: readOnlyState,
324
- dispatch: vi.fn(),
325
- } as unknown as EditorView;
346
+ const readOnlyView = createMockView(readOnlyState);
326
347
 
327
348
  // Replace view1 with read-only view temporarily
328
349
  mockGetAllEditorViews.mockReturnValueOnce([readOnlyView, view2]);
@@ -568,10 +589,7 @@ describe("navigate", () => {
568
589
  doc: Text.of(["hello world hello there hello"]),
569
590
  });
570
591
 
571
- const testView = {
572
- state: testDoc,
573
- dispatch: vi.fn(),
574
- } as unknown as EditorView;
592
+ const testView = createMockView(testDoc);
575
593
 
576
594
  mockGetAllEditorViews.mockReturnValue([testView]);
577
595
 
@@ -613,10 +631,7 @@ describe("navigate", () => {
613
631
  doc: Text.of([""]),
614
632
  });
615
633
 
616
- const emptyView = {
617
- state: emptyState,
618
- dispatch: vi.fn(),
619
- } as unknown as EditorView;
634
+ const emptyView = createMockView(emptyState);
620
635
 
621
636
  mockGetAllEditorViews.mockReturnValue([emptyView]);
622
637
 
@@ -629,10 +644,7 @@ describe("navigate", () => {
629
644
  doc: Text.of(["orphan content"]),
630
645
  });
631
646
 
632
- const orphanView = {
633
- state: orphanState,
634
- dispatch: vi.fn(),
635
- } as unknown as EditorView;
647
+ const orphanView = createMockView(orphanState);
636
648
 
637
649
  store.set(findReplaceAtom, {
638
650
  type: "setCurrentView",
@@ -6,6 +6,7 @@ import { EditorView } from "@codemirror/view";
6
6
  import { getAllEditorViews } from "@/core/cells/cells";
7
7
  import { replaceEditorContent } from "@/core/codemirror/replace-editor-content";
8
8
  import { store } from "@/core/state/jotai";
9
+ import { scrollOwnerCell } from "../utils";
9
10
  import { asQueryCreator, type QueryType } from "./query";
10
11
  import { findReplaceAtom } from "./state";
11
12
 
@@ -85,6 +86,7 @@ const findInDirection = (direction: "next" | "prev") =>
85
86
  effects: [EditorView.scrollIntoView(selection.main, { y: "center" })],
86
87
  userEvent: "select.search",
87
88
  });
89
+ scrollOwnerCell(view);
88
90
  store.set(findReplaceAtom, {
89
91
  type: "setCurrentView",
90
92
  view,
@@ -3,14 +3,14 @@
3
3
  import { python } from "@codemirror/lang-python";
4
4
  import { EditorState } from "@codemirror/state";
5
5
  import { EditorView } from "@codemirror/view";
6
- import { afterEach, describe, expect, test } from "vitest";
6
+ import { afterEach, describe, expect, test, vi } from "vitest";
7
7
  import { goToVariableDefinition } from "../commands";
8
8
 
9
9
  async function tick(): Promise<void> {
10
10
  await new Promise((resolve) => requestAnimationFrame(resolve));
11
11
  }
12
12
 
13
- function createEditor(content: string) {
13
+ function createEditor(content: string, parent: HTMLElement = document.body) {
14
14
  const state = EditorState.create({
15
15
  doc: content,
16
16
  extensions: [python()],
@@ -18,7 +18,7 @@ function createEditor(content: string) {
18
18
 
19
19
  const view = new EditorView({
20
20
  state,
21
- parent: document.body,
21
+ parent,
22
22
  });
23
23
 
24
24
  return view;
@@ -383,6 +383,27 @@ print('myVar')`);
383
383
  "
384
384
  `);
385
385
  });
386
+
387
+ test("scrolls the cell owning the definition into view", async () => {
388
+ const cell = document.createElement("div");
389
+ cell.className = "marimo-cell";
390
+ // jsdom doesn't implement scrollIntoView.
391
+ cell.scrollIntoView = vi.fn();
392
+ document.body.append(cell);
393
+
394
+ view = createEditor("myVar = 10\nprint(myVar)", cell);
395
+ expect(goToVariableDefinition(view, "myVar")).toBe(true);
396
+ // The jump and the scroll are both deferred to the next frame.
397
+ await tick();
398
+
399
+ expect(cell.scrollIntoView).toHaveBeenCalledWith({
400
+ behavior: "instant",
401
+ block: "nearest",
402
+ inline: "nearest",
403
+ });
404
+
405
+ cell.remove();
406
+ });
386
407
  });
387
408
 
388
409
  /**
@@ -4,6 +4,7 @@ import { syntaxTree } from "@codemirror/language";
4
4
  import type { EditorState } from "@codemirror/state";
5
5
  import { EditorView } from "@codemirror/view";
6
6
  import type { SyntaxNode, Tree, TreeCursor } from "@lezer/common";
7
+ import { scrollOwnerCell } from "../utils";
7
8
 
8
9
  const SCOPE_CREATING_NODES = new Set([
9
10
  "FunctionDefinition",
@@ -45,6 +46,8 @@ function goToPosition(view: EditorView, from: number): void {
45
46
  }),
46
47
  });
47
48
  });
49
+
50
+ scrollOwnerCell(view);
48
51
  }
49
52
 
50
53
  function findFirstMatchingVariable(
@@ -52,6 +52,34 @@ export function focusInputAndMoveToEnd(
52
52
  });
53
53
  }
54
54
 
55
+ /**
56
+ * Scrolls the `.marimo-cell` that owns `view` into view.
57
+ *
58
+ * `EditorView.scrollIntoView` doesn't work in columns mode: it stops at the
59
+ * first overflowing ancestor even if that ancestor doesn't actually scroll,
60
+ * so it never reaches the real horizontally-scrolling container. The
61
+ * browser's native `Element.scrollIntoView` doesn't have that problem.
62
+ *
63
+ * Deferred a frame so CodeMirror's own scroll settles first; otherwise it
64
+ * clamps this scroll right back.
65
+ *
66
+ * https://github.com/marimo-team/marimo/issues/10222
67
+ */
68
+ export function scrollOwnerCell(view: EditorView): void {
69
+ const cell = view.dom.closest(".marimo-cell");
70
+ if (!cell) {
71
+ return;
72
+ }
73
+
74
+ requestAnimationFrame(() => {
75
+ cell.scrollIntoView({
76
+ behavior: "instant",
77
+ block: "nearest",
78
+ inline: "nearest",
79
+ });
80
+ });
81
+ }
82
+
55
83
  export function isInVimMode(ev: EditorView): boolean {
56
84
  return getCM(ev)?.state.vim != null;
57
85
  }