-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4516300
commit 70fc079
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
import React, { useState } from 'react'; | ||
import { Meta, Story } from '@storybook/react'; | ||
import { | ||
ThreeDimensionalCanvas, | ||
ThreeDimensionalCanvasProps, | ||
ThreeDimensionalControls, | ||
Points, | ||
} from '../src'; | ||
import { Container } from './components'; | ||
import _data from './data/point-cloud-3d.json'; | ||
import { interpolateSinebow } from 'd3-scale-chromatic'; | ||
|
||
const meta: Meta = { | ||
title: 'Scale', | ||
component: ThreeDimensionalCanvas, | ||
argTypes: { | ||
children: { | ||
control: { | ||
type: 'text', | ||
}, | ||
}, | ||
}, | ||
parameters: { | ||
controls: { expanded: true }, | ||
}, | ||
}; | ||
|
||
export default meta; | ||
|
||
const data = _data.map((d, idx) => ({ | ||
...d, | ||
metaData: { actualLabel: `${idx}` }, | ||
})); | ||
|
||
const data2 = _data.map((d, idx) => ({ | ||
...d, | ||
position: [d.position[0], d.position[1] + 1, d.position[2] + 1], | ||
metaData: { actualLabel: `${idx}` }, | ||
})); | ||
|
||
const actualLabelsArray = Array.from( | ||
data.reduce((acc, d) => acc.add(d.metaData.actualLabel), new Set()) | ||
); | ||
|
||
const labelCount = actualLabelsArray.length - 1; | ||
|
||
const actualLabelsColorMap: Map<string, number> = actualLabelsArray.reduce( | ||
(acc: Map<string, number>, d, index) => { | ||
acc[d as string] = index / labelCount; | ||
return acc; | ||
}, | ||
new Map() as Map<string, number> | ||
); | ||
|
||
const colorByFn = (data) => { | ||
const { actualLabel } = data.metaData; | ||
return interpolateSinebow(actualLabelsColorMap[actualLabel]); | ||
}; | ||
|
||
const Template: Story<ThreeDimensionalCanvasProps> = (args) => { | ||
const [scale, setScale] = useState(1); | ||
return ( | ||
<div> | ||
<Container> | ||
<ThreeDimensionalCanvas {...args} camera={{ position: [0, 0, 10] }}> | ||
<ambientLight /> | ||
<pointLight position={[10, 10, 10]} /> | ||
<pointLight position={[10, 10, -10]} /> | ||
<pointLight position={[10, -10, -10]} /> | ||
<pointLight position={[0, 0, 0]} /> | ||
<ThreeDimensionalControls /> | ||
<Points | ||
data={data as any} | ||
opacity={1} | ||
pointProps={{ | ||
scale: scale, | ||
color: colorByFn, | ||
}} | ||
/> | ||
<Points | ||
data={data2 as any} | ||
opacity={1} | ||
pointShape="cube" | ||
pointProps={{ | ||
scale: scale, | ||
color: colorByFn, | ||
}} | ||
/> | ||
<axesHelper /> | ||
</ThreeDimensionalCanvas> | ||
</Container> | ||
<input | ||
type="range" | ||
min={0.1} | ||
max={10} | ||
step={0.1} | ||
value={scale} | ||
onChange={(e) => setScale(parseFloat(e.target.value))} | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
// By passing using the Args format for exported stories, you can control the props for a component for reuse in a test | ||
// https://storybook.js.org/docs/react/workflows/unit-testing | ||
export const Default = Template.bind({}); | ||
|
||
Default.args = {}; |