|
| 1 | +import React from 'react'; |
| 2 | +import { Bar } from 'react-chartjs-2'; |
| 3 | +import { storiesOf } from '@kadira/storybook'; |
| 4 | + |
| 5 | +const srcData = [ |
| 6 | + { |
| 7 | + year: 2015, |
| 8 | + data: [ |
| 9 | + 536531, |
| 10 | + 1017273, |
| 11 | + 1496702, |
| 12 | + 1882366, |
| 13 | + 2228939, |
| 14 | + 2515784, |
| 15 | + 2753399, |
| 16 | + 2966478, |
| 17 | + 3236838, |
| 18 | + 3613068, |
| 19 | + 4047828, |
| 20 | + 4547209 |
| 21 | + ], |
| 22 | + color: 'hsla(50,100%,59.21569%,1)' |
| 23 | + }, |
| 24 | + { |
| 25 | + year: 2016, |
| 26 | + data: [ |
| 27 | + 551503, |
| 28 | + 1057792, |
| 29 | + 1521903, |
| 30 | + 1908192, |
| 31 | + 2191201, |
| 32 | + 2412114, |
| 33 | + 2634171, |
| 34 | + 2900548, |
| 35 | + 3159543, |
| 36 | + 3552987, |
| 37 | + 4052115, |
| 38 | + 4553624 |
| 39 | + ], |
| 40 | + color: 'hsla(104,46.15384%,54.11765%,1)' |
| 41 | + }, |
| 42 | + { |
| 43 | + year: 2017, |
| 44 | + data: [ |
| 45 | + 546988, |
| 46 | + 1031054, |
| 47 | + 1526958, |
| 48 | + 1929360, |
| 49 | + 2219497, |
| 50 | + 2472468, |
| 51 | + 2654013, |
| 52 | + 2876660, |
| 53 | + 3125501, |
| 54 | + 3464636, |
| 55 | + 3911575, |
| 56 | + 3976944 |
| 57 | + ], |
| 58 | + color: 'hsla(191,100%,36.66667%,1)' |
| 59 | + } |
| 60 | +]; |
| 61 | + |
| 62 | +const options = { |
| 63 | + responsive: true, |
| 64 | + tooltips: { |
| 65 | + mode: 'label' |
| 66 | + }, |
| 67 | + elements: { |
| 68 | + line: { |
| 69 | + fill: false, |
| 70 | + lineTension: 0 |
| 71 | + } |
| 72 | + }, |
| 73 | + scales: { |
| 74 | + yAxes: [ |
| 75 | + { |
| 76 | + tics: { min: 0 } |
| 77 | + } |
| 78 | + ] |
| 79 | + }, |
| 80 | + legend: { |
| 81 | + display: true, |
| 82 | + position: 'bottom', |
| 83 | + reverse: true, |
| 84 | + onClick: null |
| 85 | + } |
| 86 | +}; |
| 87 | + |
| 88 | +storiesOf('Updating chart Example', module).add('Line & Bar', () => { |
| 89 | + const labels = [ |
| 90 | + 'January', |
| 91 | + 'February', |
| 92 | + 'March', |
| 93 | + 'April', |
| 94 | + 'May', |
| 95 | + 'June', |
| 96 | + 'July', |
| 97 | + 'August', |
| 98 | + 'September', |
| 99 | + 'October', |
| 100 | + 'November', |
| 101 | + 'December' |
| 102 | + ]; |
| 103 | + |
| 104 | + const Chart = ({ data }) => { |
| 105 | + const config = { |
| 106 | + labels: labels, |
| 107 | + datasets: data.map((series, idx, arr) => { |
| 108 | + let { year, data, color } = series; |
| 109 | + return { |
| 110 | + id: year, |
| 111 | + type: idx < arr.length - 1 ? 'line' : 'bar', |
| 112 | + label: year, |
| 113 | + data: data, |
| 114 | + backgroundColor: color, |
| 115 | + borderColor: color |
| 116 | + }; |
| 117 | + }) |
| 118 | + }; |
| 119 | + return <Bar data={config} options={options} />; |
| 120 | + }; |
| 121 | + |
| 122 | + class SelectAndChart extends React.Component { |
| 123 | + constructor() { |
| 124 | + super(); |
| 125 | + this.state = { data: srcData.map(s => ({ ...s, selected: true })) }; |
| 126 | + } |
| 127 | + |
| 128 | + toggleYear(year) { |
| 129 | + this.setState(state => { |
| 130 | + return { |
| 131 | + data: state.data.map(s => ({ |
| 132 | + ...s, |
| 133 | + selected: year === s.year ? !s.selected : s.selected |
| 134 | + })) |
| 135 | + }; |
| 136 | + }); |
| 137 | + } |
| 138 | + |
| 139 | + render() { |
| 140 | + return ( |
| 141 | + <div> |
| 142 | + <Chart data={this.state.data.filter(series => series.selected)} /> |
| 143 | + <Select data={this.state.data} toggle={this.toggleYear.bind(this)} /> |
| 144 | + </div> |
| 145 | + ); |
| 146 | + } |
| 147 | + } |
| 148 | + |
| 149 | + const Select = ({ data, toggle }) => { |
| 150 | + return ( |
| 151 | + <div> |
| 152 | + {data.map(({ year, selected }) => ( |
| 153 | + <div key={year}> |
| 154 | + <input |
| 155 | + type="checkbox" |
| 156 | + checked={selected} |
| 157 | + onChange={toggle.bind(null, year)} |
| 158 | + /> |
| 159 | + <label htmlFor={year}>{year}</label> |
| 160 | + </div> |
| 161 | + ))} |
| 162 | + </div> |
| 163 | + ); |
| 164 | + }; |
| 165 | + |
| 166 | + return <SelectAndChart />; |
| 167 | +}); |
0 commit comments