ct-react-stockcharts
Version:
Highly customizable stock charts with ReactJS and d3
125 lines (101 loc) • 4.36 kB
JavaScript
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; }; }();
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; }
import React, { Component } from "react";
import PropTypes from "prop-types";
import { functor } from "../utils";
var SvgPathAnnotation = function (_Component) {
_inherits(SvgPathAnnotation, _Component);
function SvgPathAnnotation(props) {
_classCallCheck(this, SvgPathAnnotation);
var _this = _possibleConstructorReturn(this, (SvgPathAnnotation.__proto__ || Object.getPrototypeOf(SvgPathAnnotation)).call(this, props));
_this.handleClick = _this.handleClick.bind(_this);
return _this;
}
_createClass(SvgPathAnnotation, [{
key: "handleClick",
value: function handleClick(e) {
var onClick = this.props.onClick;
if (onClick) {
var _props = this.props,
xScale = _props.xScale,
yScale = _props.yScale,
datum = _props.datum;
onClick({ xScale: xScale, yScale: yScale, datum: datum }, e);
}
}
}, {
key: "render",
value: function render() {
var _props2 = this.props,
className = _props2.className,
stroke = _props2.stroke,
opacity = _props2.opacity;
var _props3 = this.props,
xAccessor = _props3.xAccessor,
xScale = _props3.xScale,
yScale = _props3.yScale,
path = _props3.path;
var _helper = helper(this.props, xAccessor, xScale, yScale),
x = _helper.x,
y = _helper.y,
fill = _helper.fill,
tooltip = _helper.tooltip;
return React.createElement(
"g",
{ className: className, onClick: this.handleClick },
React.createElement(
"title",
null,
tooltip
),
React.createElement("path", { d: path({ x: x, y: y }), stroke: stroke, fill: fill, opacity: opacity })
);
}
}]);
return SvgPathAnnotation;
}(Component);
function helper(props, xAccessor, xScale, yScale) {
var x = props.x,
y = props.y,
datum = props.datum,
fill = props.fill,
tooltip = props.tooltip,
plotData = props.plotData;
var xFunc = functor(x);
var yFunc = functor(y);
var _ref = [xFunc({ xScale: xScale, xAccessor: xAccessor, datum: datum, plotData: plotData }), yFunc({ yScale: yScale, datum: datum, plotData: plotData })],
xPos = _ref[0],
yPos = _ref[1];
return {
x: xPos,
y: yPos,
fill: functor(fill)(datum),
tooltip: functor(tooltip)(datum)
};
}
SvgPathAnnotation.propTypes = {
className: PropTypes.string,
path: PropTypes.func.isRequired,
onClick: PropTypes.func,
xAccessor: PropTypes.func,
xScale: PropTypes.func,
yScale: PropTypes.func,
datum: PropTypes.object,
stroke: PropTypes.string,
fill: PropTypes.string,
opacity: PropTypes.number
};
SvgPathAnnotation.defaultProps = {
className: "react-stockcharts-svgpathannotation",
opacity: 1,
x: function x(_ref2) {
var xScale = _ref2.xScale,
xAccessor = _ref2.xAccessor,
datum = _ref2.datum;
return xScale(xAccessor(datum));
}
};
export default SvgPathAnnotation;
//# sourceMappingURL=SvgPathAnnotation.js.map