forked from bcbcarl/react-c3js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreact-c3js.js
142 lines (122 loc) · 5.24 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
'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 _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
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: 'updateChart',
value: function updateChart(config) {
if (!this.chart) {
this.chart = this.generateChart((0, _reactDom.findDOMNode)(this), config);
}
if (config.axis.y.min) {
this.chart.internal.config.axis_y_min = config.axis.y.min;
}
if (config.axis.y.max) {
this.chart.internal.config.axis_y_max = config.axis.y.max;
}
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: _propTypes2.default.object.isRequired,
title: _propTypes2.default.object,
size: _propTypes2.default.object,
padding: _propTypes2.default.object,
color: _propTypes2.default.object,
interaction: _propTypes2.default.object,
transition: _propTypes2.default.object,
oninit: _propTypes2.default.func,
onrendered: _propTypes2.default.func,
onmouseover: _propTypes2.default.func,
onmouseout: _propTypes2.default.func,
onresize: _propTypes2.default.func,
onresized: _propTypes2.default.func,
axis: _propTypes2.default.object,
grid: _propTypes2.default.object,
regions: _propTypes2.default.array,
legend: _propTypes2.default.object,
tooltip: _propTypes2.default.object,
subchart: _propTypes2.default.object,
zoom: _propTypes2.default.object,
point: _propTypes2.default.object,
line: _propTypes2.default.object,
area: _propTypes2.default.object,
bar: _propTypes2.default.object,
pie: _propTypes2.default.object,
donut: _propTypes2.default.object,
gauge: _propTypes2.default.object,
className: _propTypes2.default.string,
style: _propTypes2.default.object
};
}
}]);
return C3Chart;
}(_react2.default.Component);
exports.default = C3Chart;