mirror of
https://github.com/MeshCore-Beacon/beacon-web.git
synced 2026-09-02 00:58:21 +00:00
- LoadingPill shows loading/error state in MapView, NodeTable and ObserverTable - new useInfinitePages hook shares the pagination logic between them - patchNodeSummary/patchObserverSummary now keep references stable - tests for loading states, observer updates and infinite paging
68 lines
2.7 KiB
TypeScript
68 lines
2.7 KiB
TypeScript
import { describe, it, expect } from "vitest";
|
|
import { patchNodeSummary } from "../../../src/features/nodes/node-updates";
|
|
import type { NodeSummary } from "../../../src/features/nodes/types";
|
|
import type { WsNodeUpdate } from "../../../src/types/ws";
|
|
|
|
function node(overrides: Partial<NodeSummary>): NodeSummary {
|
|
return {
|
|
id: "n1",
|
|
publicKey: "pk",
|
|
nodeType: 1,
|
|
nodeTypeName: "repeater",
|
|
name: "Node 1",
|
|
lat: 45,
|
|
lng: -75,
|
|
iatas: [],
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
function update(overrides: Partial<WsNodeUpdate["data"]>): WsNodeUpdate["data"] {
|
|
return { nodeId: "n1", name: "New", nodeType: 1, iata: "YOW", ...overrides };
|
|
}
|
|
|
|
describe("patchNodeSummary", () => {
|
|
it("returns the list unchanged (same ref) when it is undefined", () => {
|
|
expect(patchNodeSummary(undefined, update({}))).toBeUndefined();
|
|
});
|
|
|
|
it("returns the same list when the node is not present (no new rows)", () => {
|
|
const list = [node({ id: "a" })];
|
|
expect(patchNodeSummary(list, update({ nodeId: "missing" }))).toBe(list);
|
|
});
|
|
|
|
it("patches name/lat/lng of the matching node immutably", () => {
|
|
const list = [node({ id: "a", name: "Old" }), node({ id: "b" })];
|
|
const out = patchNodeSummary(list, update({ nodeId: "b", name: "Renamed", lat: 50, lng: -80 }))!;
|
|
expect(out).not.toBe(list);
|
|
expect(out[0]).toBe(list[0]); // untouched node keeps its reference
|
|
expect(out[1]).toMatchObject({ id: "b", name: "Renamed", lat: 50, lng: -80 });
|
|
});
|
|
|
|
it("keeps the previous name when the update name is empty", () => {
|
|
const list = [node({ id: "a", name: "Keep" })];
|
|
const out = patchNodeSummary(list, update({ nodeId: "a", name: "" }))!;
|
|
expect(out[0]!.name).toBe("Keep");
|
|
});
|
|
|
|
it("keeps the previous lat/lng when the update omits them", () => {
|
|
const list = [node({ id: "a", lat: 10, lng: 20 })];
|
|
const out = patchNodeSummary(list, update({ nodeId: "a", lat: undefined, lng: undefined }))!;
|
|
expect(out[0]!.lat).toBe(10);
|
|
expect(out[0]!.lng).toBe(20);
|
|
});
|
|
|
|
it("returns the same list ref when the update changes nothing (no needless repaint)", () => {
|
|
const list = [node({ id: "a", name: "Keep", lat: 10, lng: 20 })];
|
|
// re-advert with identical name + omitted coords: every field resolves back to the prev value
|
|
const out = patchNodeSummary(list, update({ nodeId: "a", name: "Keep", lat: undefined, lng: undefined }));
|
|
expect(out).toBe(list);
|
|
});
|
|
|
|
it("returns the same list ref when an empty name resolves to the unchanged previous name", () => {
|
|
const list = [node({ id: "a", name: "Keep", lat: 10, lng: 20 })];
|
|
const out = patchNodeSummary(list, update({ nodeId: "a", name: "", lat: 10, lng: 20 }));
|
|
expect(out).toBe(list);
|
|
});
|
|
});
|