Skip to content

Commit 082c1f7

Browse files
committed
Refactor stories: Destroy Cosmos when switching stories
1 parent b75655b commit 082c1f7

9 files changed

+84
-56
lines changed

src/stories/clusters.stories.ts

+26-21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import type { Meta, StoryObj } from '@storybook/html'
1+
import type { Meta } from '@storybook/html'
22
import { CosmosStoryProps } from '@/graph/stories/create-cosmos'
3+
import { createStory, Story } from '@/graph/stories/create-story'
34
import { WithLabelsStory } from './clusters/with-labels'
45
import { WormStory } from './clusters/worm'
56
import { RadialStory } from './clusters/radial'
@@ -19,35 +20,39 @@ const meta: Meta<CosmosStoryProps> = {
1920
},
2021
}
2122

22-
type Story = StoryObj<CosmosStoryProps>;
23-
2423
const sourceCodeAddonParams = [
2524
{ name: 'create-cosmos', code: createCosmosRaw },
2625
{ name: 'generate-mesh-data', code: generateMeshDataRaw },
2726
]
2827

29-
export const Worm = WormStory as Story
30-
Worm.parameters = {
31-
sourceCode: [
32-
{ name: 'Story', code: wormStory },
33-
...sourceCodeAddonParams,
34-
],
28+
export const Worm: Story = {
29+
...createStory(WormStory),
30+
parameters: {
31+
sourceCode: [
32+
{ name: 'Story', code: wormStory },
33+
...sourceCodeAddonParams,
34+
],
35+
},
3536
}
3637

37-
export const Radial = RadialStory as Story
38-
Radial.parameters = {
39-
sourceCode: [
40-
{ name: 'Story', code: radialStory },
41-
...sourceCodeAddonParams,
42-
],
38+
export const Radial: Story = {
39+
...createStory(RadialStory),
40+
parameters: {
41+
sourceCode: [
42+
{ name: 'Story', code: radialStory },
43+
...sourceCodeAddonParams,
44+
],
45+
},
4346
}
4447

45-
export const WithLabels = WithLabelsStory as Story
46-
WithLabels.parameters = {
47-
sourceCode: [
48-
{ name: 'Story', code: withLabelsStory },
49-
...sourceCodeAddonParams,
50-
],
48+
export const WithLabels: Story = {
49+
...createStory(WithLabelsStory),
50+
parameters: {
51+
sourceCode: [
52+
{ name: 'Story', code: withLabelsStory },
53+
...sourceCodeAddonParams,
54+
],
55+
},
5156
}
5257

5358
// eslint-disable-next-line import/no-default-export

src/stories/clusters/radial.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11

2+
import { Graph } from '@cosmograph/cosmos'
23
import { createCosmos } from '../create-cosmos'
34
import { generateMeshData } from '../generate-mesh-data'
45

5-
export const RadialStory = (): HTMLDivElement => {
6+
export const RadialStory = (): { graph: Graph; div: HTMLDivElement} => {
67
const {
78
pointPositions, pointColors, pointSizes,
89
links, linkColors, linkWidths,
910
pointClusters, clusterPositions, clusterStrength,
1011
} = generateMeshData(100, 100, 100, 1.0)
11-
const { div } = createCosmos({
12+
13+
return createCosmos({
1214
pointPositions,
1315
pointColors,
1416
pointSizes,
@@ -19,6 +21,4 @@ export const RadialStory = (): HTMLDivElement => {
1921
clusterPositions,
2022
clusterStrength,
2123
})
22-
23-
return div
2424
}

src/stories/clusters/with-labels.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11

2+
import { Graph } from '@cosmograph/cosmos'
23
import { createClusterLabels } from '../create-cluster-labels'
34
import { createCosmos } from '../create-cosmos'
45
import { generateMeshData } from '../generate-mesh-data'
56

6-
export const WithLabelsStory = (): HTMLDivElement => {
7+
export const WithLabelsStory = (): {div: HTMLDivElement; graph: Graph } => {
78
const { pointPositions, pointColors, pointClusters } = generateMeshData(100, 100, 15, 1.0)
89
const { div, graph } = createCosmos({
910
pointPositions,
@@ -20,5 +21,5 @@ export const WithLabelsStory = (): HTMLDivElement => {
2021
onSimulationTick: updateClusterLabels.bind(this, graph),
2122
})
2223

23-
return div
24+
return { div, graph }
2425
}

src/stories/clusters/worm.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11

2+
import { Graph } from '@cosmograph/cosmos'
23
import { createCosmos } from '../create-cosmos'
34
import { generateMeshData } from '../generate-mesh-data'
45

5-
export const WormStory = (): HTMLDivElement => {
6+
export const WormStory = (): {graph: Graph; div: HTMLDivElement} => {
67
const { pointPositions, pointColors, links, linkColors, pointClusters } = generateMeshData(100, 100, 1000, 1.0)
7-
const { div } = createCosmos({
8+
9+
return createCosmos({
810
simulationGravity: 0.5,
911
simulationRepulsion: 1,
1012
simulationLinkSpring: 1,
@@ -14,6 +16,4 @@ export const WormStory = (): HTMLDivElement => {
1416
links,
1517
linkColors,
1618
})
17-
18-
return div
1919
}

src/stories/create-cosmos.ts

-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ export type CosmosStoryProps = GraphConfigInterface & {
1717

1818
export const createCosmos = (props: CosmosStoryProps): { div: HTMLDivElement; graph: Graph} => {
1919
const div = document.createElement('div')
20-
// const canvas = document.createElement('canvas')
2120
div.style.height = '100vh'
2221
div.style.width = '100%'
23-
// div.appendChild(canvas)
2422

2523
const config: GraphConfigInterface = {
2624
backgroundColor: '#212C42',

src/stories/create-story.ts

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { Graph } from '@cosmograph/cosmos'
2+
import type { StoryObj } from '@storybook/html'
3+
import { CosmosStoryProps } from '@/graph/stories/create-cosmos'
4+
5+
export type Story = StoryObj<CosmosStoryProps & { graph: Graph }>;
6+
7+
export const createStory: (storyFunction: () => {
8+
graph: Graph;
9+
div: HTMLDivElement;
10+
}) => Story = (storyFunction) => ({
11+
async beforeEach (d): Promise<() => void> {
12+
return (): void => {
13+
d.args.graph?.destroy()
14+
}
15+
},
16+
render: (args): HTMLDivElement => {
17+
const story = storyFunction()
18+
args.graph = story.graph
19+
return story.div
20+
},
21+
})

src/stories/experiments.stories.ts

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import type { Meta, StoryObj } from '@storybook/html'
1+
import type { Meta } from '@storybook/html'
22

3+
import { createStory, Story } from '@/graph/stories/create-story'
34
import { CosmosStoryProps } from './create-cosmos'
45
import { MeshWithHolesStory } from './experiments/mesh-with-holes'
56
import { FullMeshStory } from './experiments/full-mesh'
@@ -14,26 +15,28 @@ const meta: Meta<CosmosStoryProps> = {
1415
title: 'Examples/Experiments',
1516
}
1617

17-
type Story = StoryObj<CosmosStoryProps>;
18-
1918
const sourceCodeAddonParams = [
2019
{ name: 'create-cosmos', code: createCosmosRaw },
2120
{ name: 'generate-mesh-data', code: generateMeshDataRaw },
2221
]
2322

24-
export const FullMesh = FullMeshStory as Story
25-
FullMesh.parameters = {
26-
sourceCode: [
27-
{ name: 'Story', code: fullMeshRaw },
28-
...sourceCodeAddonParams,
29-
],
23+
export const FullMesh: Story = {
24+
...createStory(FullMeshStory),
25+
parameters: {
26+
sourceCode: [
27+
{ name: 'Story', code: fullMeshRaw },
28+
...sourceCodeAddonParams,
29+
],
30+
},
3031
}
31-
export const MeshWithHoles = MeshWithHolesStory as Story
32-
MeshWithHoles.parameters = {
33-
sourceCode: [
34-
{ name: 'Story', code: meshWithHolesRaw },
35-
...sourceCodeAddonParams,
36-
],
32+
export const MeshWithHoles: Story = {
33+
...createStory(MeshWithHolesStory),
34+
parameters: {
35+
sourceCode: [
36+
{ name: 'Story', code: meshWithHolesRaw },
37+
...sourceCodeAddonParams,
38+
],
39+
},
3740
}
3841

3942
// eslint-disable-next-line import/no-default-export

src/stories/experiments/full-mesh.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1+
import { Graph } from '@cosmograph/cosmos'
12
import { createCosmos } from '../create-cosmos'
23
import { generateMeshData } from '../generate-mesh-data'
34

4-
export const FullMeshStory = (): HTMLDivElement => {
5+
export const FullMeshStory = (): { graph: Graph; div: HTMLDivElement} => {
56
const { pointPositions, links, pointColors } = generateMeshData(40, 30, 15, 1.0)
6-
const { div } = createCosmos({
7+
8+
return createCosmos({
79
pointPositions,
810
links,
911
pointColors,
1012
})
11-
12-
return div
1313
}
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1+
import { Graph } from '@cosmograph/cosmos'
12
import { createCosmos } from '../create-cosmos'
23
import { generateMeshData } from '../generate-mesh-data'
34

4-
export const MeshWithHolesStory = (): HTMLDivElement => {
5+
export const MeshWithHolesStory = (): { graph: Graph; div: HTMLDivElement} => {
56
const { pointPositions, links, pointColors } = generateMeshData(40, 80, 15, 0.8)
6-
const { div } = createCosmos({
7+
8+
return createCosmos({
79
pointPositions,
810
links,
911
pointColors,
1012
})
11-
12-
return div
1313
}

0 commit comments

Comments
 (0)