docs(example): add select to node

This commit is contained in:
moklick
2019-07-17 10:25:38 +02:00
parent 0e179ffe1f
commit a5aa78f02a
+20 -9
View File
@@ -7,14 +7,11 @@ const SpecialNode = ({ data, styles }) => (
<div <div
style={{ background: '#FFCC00', padding: 10, borderRadius: 30, ...styles }} style={{ background: '#FFCC00', padding: 10, borderRadius: 30, ...styles }}
> >
I am <strong>special</strong>!<br />{data.label} <div>I am <strong>special</strong>!<br />{data.label}</div>
<input <select onChange={(e) => data.onChange(e.target.value, data)}>
style={{ margin: '10px 0' }} <option value="1">1</option>
/> <option value="2">2</option>
<select> <option value="3">3</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select> </select>
</div> </div>
); );
@@ -23,6 +20,19 @@ class App extends PureComponent {
constructor() { constructor() {
super(); super();
const onChange = (id, d) => {
this.setState(prevState => (
{ elements: prevState.elements.map(e => ({
...e,
data: {
...e.data,
label: '6' === e.data.id ? `option ${id} selected` : e.data.label
}
}))
}
));
}
this.state = { this.state = {
elements: [ elements: [
{ data: { id: '1', label: 'Tests', type: 'input' }, position: { x: 50, y: 50 } }, { data: { id: '1', label: 'Tests', type: 'input' }, position: { x: 50, y: 50 } },
@@ -30,7 +40,7 @@ class App extends PureComponent {
{ data: { id: '3', label: 'This is a node' }, position: { x: 100, y: 200 }, style: { background: '#222', color: '#fff' } }, { data: { id: '3', label: 'This is a node' }, position: { x: 100, y: 200 }, style: { background: '#222', color: '#fff' } },
{ data: { id: '4', label: 'nody nodes', type: 'output' }, position: { x: 50, y: 300 } }, { data: { id: '4', label: 'nody nodes', type: 'output' }, position: { x: 50, y: 300 } },
{ data: { id: '5', label: 'Another node', type: 'default' }, position: { x: 400, y: 300 } }, { data: { id: '5', label: 'Another node', type: 'default' }, position: { x: 400, y: 300 } },
{ data: { id: '6', label: 'I have inputs', type: 'special' }, position: { x: 400, y: 400 } }, { data: { id: '6', label: 'no option selected', type: 'special', onChange }, position: { x: 400, y: 400 } },
{ data: { source: '1', target: '2' } }, { data: { source: '1', target: '2' } },
{ data: { source: '2', target: '3' } }, { data: { source: '2', target: '3' } },
{ data: { source: '3', target: '4' } }, { data: { source: '3', target: '4' } },
@@ -72,6 +82,7 @@ class App extends PureComponent {
} }
render() { render() {
console.log(this.state.elements);
return ( return (
<Graph <Graph
elements={this.state.elements} elements={this.state.elements}