forked from bcbcarl/react-c3js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-c3js.js
149 lines (130 loc) · 5.65 KB
/
react-c3js.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _reactDom = require('react-dom');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var c3 = void 0;
var C3Chart = function (_React$Component) {
_inherits(C3Chart, _React$Component);
function C3Chart() {
_classCallCheck(this, C3Chart);
return _possibleConstructorReturn(this, (C3Chart.__proto__ || Object.getPrototypeOf(C3Chart)).apply(this, arguments));
}
_createClass(C3Chart, [{
key: 'componentDidMount',
value: function componentDidMount() {
c3 = require('c3');
this.updateChart(this.props);
}
}, {
key: 'componentWillReceiveProps',
value: function componentWillReceiveProps(newProps) {
this.updateChart(newProps);
}
}, {
key: 'componentWillUnmount',
value: function componentWillUnmount() {
this.destroyChart();
}
}, {
key: 'generateChart',
value: function generateChart(mountNode, config) {
var newConfig = Object.assign({ bindto: mountNode }, config);
return c3.generate(newConfig);
}
}, {
key: 'loadNewData',
value: function loadNewData(data) {
this.chart.load(data);
}
}, {
key: 'unloadData',
value: function unloadData() {
this.chart.unload();
}
}, {
key: 'updateChart',
value: function updateChart(config) {
if (!this.chart) {
this.chart = this.generateChart((0, _reactDom.findDOMNode)(this), config);
}
if (config.unloadBeforeLoad) {
this.unloadData();
}
// If there are regions in the config, update them.
// If there are regions, and the config specifies none then delete the existing regions.
if (config.regions) {
this.chart.regions(config.regions);
} else if (this.chart.regions && !config.regions) {
this.chart.regions([]);
}
this.loadNewData(config.data);
}
}, {
key: 'destroyChart',
value: function destroyChart() {
try {
this.chart = this.chart.destroy();
} catch (err) {
throw new Error('Internal C3 error', err);
}
}
}, {
key: 'render',
value: function render() {
var className = this.props.className ? ' ' + this.props.className : '';
var style = this.props.style ? this.props.style : {};
return _react2.default.createElement('div', { className: className, style: style });
}
}], [{
key: 'displayName',
get: function get() {
return 'C3Chart';
}
}, {
key: 'propTypes',
get: function get() {
return {
data: _react2.default.PropTypes.object.isRequired,
title: _react2.default.PropTypes.object,
size: _react2.default.PropTypes.object,
padding: _react2.default.PropTypes.object,
color: _react2.default.PropTypes.object,
interaction: _react2.default.PropTypes.object,
transition: _react2.default.PropTypes.object,
oninit: _react2.default.PropTypes.func,
onrendered: _react2.default.PropTypes.func,
onmouseover: _react2.default.PropTypes.func,
onmouseout: _react2.default.PropTypes.func,
onresize: _react2.default.PropTypes.func,
onresized: _react2.default.PropTypes.func,
axis: _react2.default.PropTypes.object,
grid: _react2.default.PropTypes.object,
regions: _react2.default.PropTypes.array,
legend: _react2.default.PropTypes.object,
tooltip: _react2.default.PropTypes.object,
subchart: _react2.default.PropTypes.object,
zoom: _react2.default.PropTypes.object,
point: _react2.default.PropTypes.object,
line: _react2.default.PropTypes.object,
area: _react2.default.PropTypes.object,
bar: _react2.default.PropTypes.object,
pie: _react2.default.PropTypes.object,
donut: _react2.default.PropTypes.object,
gauge: _react2.default.PropTypes.object,
className: _react2.default.PropTypes.string,
style: _react2.default.PropTypes.object,
unloadBeforeLoad: _react2.default.PropTypes.bool
};
}
}]);
return C3Chart;
}(_react2.default.Component);
exports.default = C3Chart;