UNPKG

@symblight/react-stockcharts

Version:

Highly customizable stock charts with ReactJS and d3

102 lines (77 loc) 4.14 kB
"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 _utils = require("../utils"); 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 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, fill = _props2.fill, tooltip = _props2.tooltip, path = _props2.path; return _react2.default.createElement( "g", { className: className, onClick: this.handleClick }, _react2.default.createElement( "title", null, tooltip ), _react2.default.createElement("path", { d: path, stroke: stroke, fill: fill, opacity: opacity }) ); } }]); return SvgPathAnnotation; }(_react.Component); SvgPathAnnotation.propTypes = { className: _propTypes2.default.string, path: _propTypes2.default.string.isRequired, onClick: _propTypes2.default.func, stroke: _propTypes2.default.string, fill: _propTypes2.default.string, opacity: _propTypes2.default.number }; SvgPathAnnotation.defaultProps = { className: "react-stockcharts-svgpathannotation", opacity: 1 }; exports.default = SvgPathAnnotation; //# sourceMappingURL=SvgPathAnnotations.js.map