ct-react-stockcharts
Version:
Highly customizable stock charts with ReactJS and d3
159 lines (132 loc) • 5.9 kB
JavaScript
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
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 _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
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 Axis from "./Axis";
var YAxis = function (_Component) {
_inherits(YAxis, _Component);
function YAxis(props, context) {
_classCallCheck(this, YAxis);
var _this = _possibleConstructorReturn(this, (YAxis.__proto__ || Object.getPrototypeOf(YAxis)).call(this, props, context));
_this.axisZoomCallback = _this.axisZoomCallback.bind(_this);
return _this;
}
_createClass(YAxis, [{
key: "axisZoomCallback",
value: function axisZoomCallback(newYDomain) {
var _context = this.context,
chartId = _context.chartId,
yAxisZoom = _context.yAxisZoom;
yAxisZoom(chartId, newYDomain);
}
}, {
key: "render",
value: function render() {
var _helper = helper(this.props, this.context),
zoomEnabled = _helper.zoomEnabled,
moreProps = _objectWithoutProperties(_helper, ["zoomEnabled"]);
// console.warn('----YAxis > props context zoomEnabled moreProps')
// console.warn(this.props, this.context, zoomEnabled, moreProps)
return React.createElement(Axis, _extends({}, this.props, moreProps, {
zoomEnabled: this.props.zoomEnabled && zoomEnabled,
edgeClip: true,
axisZoomCallback: this.axisZoomCallback,
zoomCursorClassName: "react-stockcharts-ns-resize-cursor" }));
}
}]);
return YAxis;
}(Component);
YAxis.propTypes = {
axisAt: PropTypes.oneOfType([PropTypes.oneOf(["left", "right", "middle"]), PropTypes.number]).isRequired,
orient: PropTypes.oneOf(["left", "right"]).isRequired,
innerTickSize: PropTypes.number,
outerTickSize: PropTypes.number,
tickFormat: PropTypes.func,
tickPadding: PropTypes.number,
tickSize: PropTypes.number,
ticks: PropTypes.number,
yZoomWidth: PropTypes.number,
tickValues: PropTypes.array,
showTicks: PropTypes.bool,
className: PropTypes.string,
zoomEnabled: PropTypes.bool,
onContextMenu: PropTypes.func,
onDoubleClick: PropTypes.func
};
YAxis.defaultProps = {
showTicks: true,
showTickLabel: true,
showDomain: true,
className: "react-stockcharts-y-axis",
ticks: 10,
outerTickSize: 0,
domainClassName: "react-stockcharts-axis-domain",
fill: "none",
stroke: "#FFFFFF",
strokeWidth: 1,
opacity: 1,
innerTickSize: 5,
tickPadding: 6,
tickStroke: "#000000",
tickStrokeOpacity: 1,
fontFamily: "Helvetica Neue, Helvetica, Arial, sans-serif",
fontSize: 12,
fontWeight: 400,
yZoomWidth: 40,
zoomEnabled: true,
getMouseDelta: function getMouseDelta(startXY, mouseXY) {
return startXY[1] - mouseXY[1];
}
};
YAxis.contextTypes = {
yAxisZoom: PropTypes.func.isRequired,
chartId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
chartConfig: PropTypes.object.isRequired
};
function helper(props, context) {
var axisAt = props.axisAt,
yZoomWidth = props.yZoomWidth,
orient = props.orient;
var _context$chartConfig = context.chartConfig,
width = _context$chartConfig.width,
height = _context$chartConfig.height;
var axisLocation = void 0;
var y = 0,
w = yZoomWidth,
h = height;
if (axisAt === "left") {
axisLocation = 0;
} else if (axisAt === "right") {
axisLocation = width;
} else if (axisAt === "middle") {
axisLocation = width / 2;
} else {
axisLocation = axisAt;
}
var x = orient === "left" ? -yZoomWidth : 0;
return {
transform: [axisLocation, 0],
range: [0, height],
getScale: getYScale,
bg: { x: x, y: y, h: h, w: w },
zoomEnabled: context.chartConfig.yPan
};
}
function getYScale(moreProps) {
var _moreProps$chartConfi = moreProps.chartConfig,
scale = _moreProps$chartConfi.yScale,
flipYScale = _moreProps$chartConfi.flipYScale,
height = _moreProps$chartConfi.height;
if (scale.invert) {
var trueRange = flipYScale ? [0, height] : [height, 0];
var trueDomain = trueRange.map(scale.invert);
return scale.copy().domain(trueDomain).range(trueRange);
}
return scale;
}
export default YAxis;
//# sourceMappingURL=YAxis.js.map