From 4c86955ceb8fcba7516e010858030d8958abccd9 Mon Sep 17 00:00:00 2001 From: Mark Keller <7525285+keller-mark@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:20:10 -0400 Subject: [PATCH 1/2] Update MNIST example coordination types --- examples/plots/src/mnist-example.tsx | 66 +++++++++++----------------- 1 file changed, 26 insertions(+), 40 deletions(-) diff --git a/examples/plots/src/mnist-example.tsx b/examples/plots/src/mnist-example.tsx index 53c0cea..ffa3334 100644 --- a/examples/plots/src/mnist-example.tsx +++ b/examples/plots/src/mnist-example.tsx @@ -21,71 +21,61 @@ const colors = [[78,121,167, 255],[242,142,44, 255],[225,87,89, 255],[118,183,17 const pluginCoordinationTypes = { zoomLevel: z.number().nullable(), zoomOffset: z.number().nullable(), - targetX: z.number().nullable(), - targetY: z.number().nullable(), + target: z.array(z.number()).length(2).nullable(), }; const initialSpec = defineSpec({ key: 1, coordinationSpace: { "zoomLevel": { - "shared": 3.282928374353915 + "shared": 3.3 }, "zoomOffset": { "overview": 0, "detail": 2 }, - "targetX": { - "umap": 0.5722378595673838, - "densmap": 0.19160931736478615 + "target": { + "umap": [0.57, -0.24], + "densmap": [0.19, -0.01], }, - "targetY": { - "umap": -0.24042483622122024, - "densmap": -0.01400468369125818 - } }, viewCoordination: { - umap: { + umapOverview: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "overview", - targetX: "umap", - targetY: "umap", + target: "umap", }, }, - densmap: { + densmapOverview: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "overview", - targetX: "densmap", - targetY: "densmap", + target: "densmap", }, }, umapDetail: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "detail", - targetX: "umap", - targetY: "umap", + target: "umap", }, }, densmapDetail: { coordinationScopes: { zoomLevel: "shared", zoomOffset: "detail", - targetX: "densmap", - targetY: "densmap", + target: "densmap", }, }, }, }); function MnistLegend(props: any) { - return (

MNIST Digit

- + {colors.map((color, i) => ( <> - {i} + {i} ))} @@ -110,23 +100,15 @@ function MnistScatterplot(props: any) { const [{ zoomLevel, zoomOffset, - targetX, - targetY, - digitSelection, - defaultRadius, - selectionRadius, - defaultOpacity, - selectionOpacity, + target, }, { setZoomLevel, - setTargetX, - setTargetY, - }] = useCoordination(viewUid, ["zoomLevel", "zoomOffset", "targetX", "targetY", "digitSelection", "defaultRadius", "selectionRadius", "defaultOpacity", "selectionOpacity"]); + setTarget, + }] = useCoordination(viewUid, ["zoomLevel", "zoomOffset", "target"]); const onViewStateChange = useCallback(({viewState}: any) => { setZoomLevel(viewState.zoom - zoomOffset); - setTargetX(viewState.target[0]); - setTargetY(viewState.target[1]); + setTarget([viewState.target[0], viewState.target[1]]); }, []); const views = useMemo(() => { return [ @@ -174,7 +156,7 @@ function MnistScatterplot(props: any) { getRadius: 0.35, }), ]; - }, [data, digitSelection, defaultRadius, selectionRadius, defaultOpacity, selectionOpacity]); + }, [data]); return (
@@ -257,8 +243,8 @@ export function MnistExample(props: any) { coordinationTypes={pluginCoordinationTypes} onSpecChange={setSpec} > - - + + From f88cebb20203048a308e320f39bb2989e0e7fda8 Mon Sep 17 00:00:00 2001 From: Mark Keller <7525285+keller-mark@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:21:21 -0400 Subject: [PATCH 2/2] Changeset --- .changeset/itchy-walls-warn.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/itchy-walls-warn.md diff --git a/.changeset/itchy-walls-warn.md b/.changeset/itchy-walls-warn.md new file mode 100644 index 0000000..8ee0bc0 --- /dev/null +++ b/.changeset/itchy-walls-warn.md @@ -0,0 +1,5 @@ +--- +"@use-coordination/plots-example": patch +--- + +Update coordination types for MNIST example (targetX/targetY -> target [x, y])