Files
vue-tui/packages/runtime-tests/integration/components/conditional-list.test.tsx
T

119 lines
3.5 KiB
TypeScript
Raw Normal View History

import { defineComponent, nextTick, shallowRef } from "vue";
2026-05-24 18:13:53 +08:00
import { expect, test } from "vite-plus/test";
import { render } from "@vue-tui/testing";
import { Box, Text } from "@vue-tui/runtime";
test("v-if toggle preserves sibling order", async () => {
const show = shallowRef(true);
2026-05-24 18:13:53 +08:00
const App = defineComponent(() => {
return () => (
<Box flexDirection="column">
<Text>A</Text>
{show.value ? <Text>B</Text> : null}
<Text>C</Text>
</Box>
);
});
const { lastFrame } = await render(App, { columns: 10 });
expect(lastFrame()).toContain("A");
expect(lastFrame()).toContain("B");
expect(lastFrame()).toContain("C");
show.value = false;
await nextTick();
expect(lastFrame()).not.toContain("B");
expect(lastFrame()).toContain("A");
expect(lastFrame()).toContain("C");
show.value = true;
await nextTick();
const lines = lastFrame()!.split("\n").filter(Boolean);
const aIdx = lines.findIndex((l) => l.includes("A"));
const bIdx = lines.findIndex((l) => l.includes("B"));
const cIdx = lines.findIndex((l) => l.includes("C"));
expect(aIdx).toBeLessThan(bIdx);
expect(bIdx).toBeLessThan(cIdx);
});
test("keyed v-for reorder renders in new order", async () => {
const items = shallowRef([1, 2, 3]);
2026-05-24 18:13:53 +08:00
const App = defineComponent(() => {
return () => (
<Box flexDirection="column">
{items.value.map((n) => (
<Text key={n}>item-{n}</Text>
))}
</Box>
);
});
const { lastFrame } = await render(App, { columns: 20 });
let lines = lastFrame()!.split("\n").filter(Boolean);
expect(lines[0]).toContain("item-1");
expect(lines[1]).toContain("item-2");
expect(lines[2]).toContain("item-3");
items.value = [3, 1, 2];
await nextTick();
lines = lastFrame()!.split("\n").filter(Boolean);
expect(lines[0]).toContain("item-3");
expect(lines[1]).toContain("item-1");
expect(lines[2]).toContain("item-2");
});
// Ink reconciler.tsx:154-212 ("insert child between other children"): with
// STABLE keys, inserting a new child between two existing ones must place it in
// the right slot — not append, not reorder. Mirrors Ink's keyed [a,c] -> [a,b,c].
test("keyed insert between existing children places B between A and C", async () => {
const insert = shallowRef(false);
const App = defineComponent(
() => () =>
insert.value ? (
<Box flexDirection="column">
<Text key="a">A</Text>
<Text key="b">B</Text>
<Text key="c">C</Text>
</Box>
) : (
<Box flexDirection="column">
<Text key="a">A</Text>
<Text key="c">C</Text>
</Box>
),
);
const { lastFrame } = await render(App, { columns: 10 });
expect(lastFrame()).toBe("A\nC");
insert.value = true;
await nextTick();
// B lands in the middle (stable keys), so the column order is A / B / C.
expect(lastFrame()).toBe("A\nB\nC");
});
2026-05-24 18:13:53 +08:00
test("repeated list shuffles don't crash", async () => {
const items = shallowRef([1, 2, 3, 4, 5]);
2026-05-24 18:13:53 +08:00
const App = defineComponent(() => {
return () => (
<Box flexDirection="column">
{items.value.map((n) => (
<Text key={n}>{String(n)}</Text>
))}
</Box>
);
});
const { lastFrame } = await render(App, { columns: 10 });
items.value = [5, 4, 3, 2, 1];
await nextTick();
items.value = [2, 4, 1, 5, 3];
await nextTick();
items.value = [1, 2, 3, 4, 5];
await nextTick();
expect(lastFrame()).toContain("1");
expect(lastFrame()).toContain("5");
});