@symblight/react-stockcharts
Version:
Highly customizable stock charts with ReactJS and d3
333 lines (282 loc) • 11.7 kB
JavaScript
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
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 { ascending as d3Ascending } from "d3-array";
import { noop, strokeDashTypes } from "../../utils";
import { saveNodeType, isHover } from "../utils";
import { getXValue } from "../../utils/ChartDataUtil";
import StraightLine from "../components/StraightLine";
import ClickableCircle from "../components/ClickableCircle";
import HoverTextNearMouse from "../components/HoverTextNearMouse";
var EachHorizontalLine = function (_Component) {
_inherits(EachHorizontalLine, _Component);
function EachHorizontalLine(props) {
_classCallCheck(this, EachHorizontalLine);
var _this = _possibleConstructorReturn(this, (EachHorizontalLine.__proto__ || Object.getPrototypeOf(EachHorizontalLine)).call(this, props));
_this.handleEdge1Drag = _this.handleEdge1Drag.bind(_this);
_this.handleLineDragStart = _this.handleLineDragStart.bind(_this);
_this.handleLineDrag = _this.handleLineDrag.bind(_this);
_this.handleEdge1DragStart = _this.handleEdge1DragStart.bind(_this);
_this.handleDragComplete = _this.handleDragComplete.bind(_this);
_this.handleHover = _this.handleHover.bind(_this);
_this.isHover = isHover.bind(_this);
_this.saveNodeType = saveNodeType.bind(_this);
_this.nodes = {};
_this.state = {
hover: false,
anchor: undefined,
width: (_this.props.x1Value + _this.props.x2Value) / 2
};
return _this;
}
_createClass(EachHorizontalLine, [{
key: "handleLineDragStart",
value: function handleLineDragStart() {
var _props = this.props,
x1Value = _props.x1Value,
y1Value = _props.y1Value,
x2Value = _props.x2Value,
y2Value = _props.y2Value;
this.dragStart = {
x1Value: x1Value, y1Value: y1Value,
x2Value: x2Value, y2Value: y2Value
};
}
}, {
key: "handleLineDrag",
value: function handleLineDrag(moreProps) {
var _props2 = this.props,
index = _props2.index,
onDrag = _props2.onDrag;
var _dragStart = this.dragStart,
x1Value = _dragStart.x1Value,
y1Value = _dragStart.y1Value,
x2Value = _dragStart.x2Value,
y2Value = _dragStart.y2Value;
var yScale = moreProps.chartConfig.yScale;
var startPos = moreProps.startPos,
mouseXY = moreProps.mouseXY;
var y1 = yScale(y1Value);
var y2 = yScale(y2Value);
var dy = startPos[1] - mouseXY[1];
var newY1Value = yScale.invert(y1 - dy);
var newY2Value = yScale.invert(y2 - dy);
onDrag(index, {
x1Value: x1Value,
y1Value: newY1Value,
x2Value: x2Value,
y2Value: newY2Value
});
}
}, {
key: "handleEdge1DragStart",
value: function handleEdge1DragStart() {
var _props3 = this.props,
x1Value = _props3.x1Value,
y1Value = _props3.y1Value,
x2Value = _props3.x2Value,
y2Value = _props3.y2Value;
this.dragStart = {
x1Value: x1Value, y1Value: y1Value,
x2Value: x2Value, y2Value: y2Value
};
this.setState({
anchor: "edge1"
});
}
}, {
key: "handleDragComplete",
value: function handleDragComplete() {
var _props4;
this.setState({
anchor: undefined
});
(_props4 = this.props).onDragComplete.apply(_props4, arguments);
}
}, {
key: "handleEdge1Drag",
value: function handleEdge1Drag(moreProps) {
var _props5 = this.props,
index = _props5.index,
onDrag = _props5.onDrag;
var _dragStart2 = this.dragStart,
x1Value = _dragStart2.x1Value,
y1Value = _dragStart2.y1Value,
x2Value = _dragStart2.x2Value,
y2Value = _dragStart2.y2Value;
var yScale = moreProps.chartConfig.yScale;
var startPos = moreProps.startPos,
mouseXY = moreProps.mouseXY;
var y1 = yScale(y1Value);
var y2 = yScale(y2Value);
var dy = startPos[1] - mouseXY[1];
var newY1Value = yScale.invert(y1 - dy);
var newY2Value = yScale.invert(y2 - dy);
onDrag(index, {
x1Value: x1Value,
y1Value: newY1Value,
x2Value: x2Value,
y2Value: newY2Value
});
}
}, {
key: "handleHover",
value: function handleHover(moreProps) {
if (this.state.hover !== moreProps.hovering) {
this.setState({
hover: moreProps.hovering
});
this.setState({
width: (moreProps.xScale.domain()[0] + moreProps.xScale.domain()[1]) / 2
});
}
}
}, {
key: "render",
value: function render() {
var _props6 = this.props,
x1Value = _props6.x1Value,
y1Value = _props6.y1Value,
x2Value = _props6.x2Value,
y2Value = _props6.y2Value,
type = _props6.type,
stroke = _props6.stroke,
strokeWidth = _props6.strokeWidth,
strokeOpacity = _props6.strokeOpacity,
strokeDasharray = _props6.strokeDasharray,
r = _props6.r,
edgeStrokeWidth = _props6.edgeStrokeWidth,
edgeFill = _props6.edgeFill,
edgeStroke = _props6.edgeStroke,
edgeInteractiveCursor = _props6.edgeInteractiveCursor,
lineInteractiveCursor = _props6.lineInteractiveCursor,
hoverText = _props6.hoverText,
selected = _props6.selected,
onDragComplete = _props6.onDragComplete;
var hoverTextEnabled = hoverText.enable,
hoverTextSelected = hoverText.selectedText,
hoverTextUnselected = hoverText.text,
restHoverTextProps = _objectWithoutProperties(hoverText, ["enable", "selectedText", "text"]);
var _state = this.state,
hover = _state.hover,
anchor = _state.anchor,
width = _state.width;
return React.createElement(
"g",
null,
React.createElement(StraightLine, {
ref: this.saveNodeType("line"),
selected: selected || hover,
onHover: this.handleHover,
onUnHover: this.handleHover,
x1Value: x1Value,
y1Value: y1Value,
x2Value: x2Value,
y2Value: y2Value,
type: type,
stroke: stroke,
strokeWidth: hover || selected ? strokeWidth + 1 : strokeWidth,
strokeOpacity: strokeOpacity,
strokeDasharray: strokeDasharray,
interactiveCursorClass: lineInteractiveCursor,
onDragStart: this.handleLineDragStart,
onDrag: this.handleLineDrag,
onDragComplete: onDragComplete,
getHoverInteractive: this.props.getHoverInteractive
}),
React.createElement(ClickableCircle, {
ref: this.saveNodeType("edge1"),
show: selected || hover,
cx: width,
cy: y1Value,
r: r,
fill: edgeFill,
stroke: anchor === "edge1" ? stroke : edgeStroke,
strokeWidth: edgeStrokeWidth,
strokeOpacity: 1,
interactiveCursorClass: edgeInteractiveCursor,
onDragStart: this.handleEdge1DragStart,
onDrag: this.handleEdge1Drag,
onDragComplete: this.handleDragComplete
}),
React.createElement(HoverTextNearMouse, _extends({
show: hoverTextEnabled && hover
}, restHoverTextProps, {
text: selected ? hoverTextSelected : hoverTextUnselected
}))
);
}
}]);
return EachHorizontalLine;
}(Component);
export function getNewXY(moreProps) {
var xScale = moreProps.xScale,
yScale = moreProps.chartConfig.yScale,
xAccessor = moreProps.xAccessor,
plotData = moreProps.plotData,
mouseXY = moreProps.mouseXY;
var mouseY = mouseXY[1];
var x = getXValue(xScale, xAccessor, mouseXY, plotData);
var _yScale$domain$slice$ = yScale.domain().slice().sort(d3Ascending),
_yScale$domain$slice$2 = _slicedToArray(_yScale$domain$slice$, 2),
small = _yScale$domain$slice$2[0],
big = _yScale$domain$slice$2[1];
var y = yScale.invert(mouseY);
var newY = Math.min(Math.max(y, small), big);
return [x, newY];
}
EachHorizontalLine.propTypes = {
x1Value: PropTypes.any.isRequired,
x2Value: PropTypes.any.isRequired,
y1Value: PropTypes.any.isRequired,
y2Value: PropTypes.any.isRequired,
index: PropTypes.number,
type: PropTypes.oneOf(["horizontal"]).isRequired,
onDrag: PropTypes.func.isRequired,
onEdge1Drag: PropTypes.func.isRequired,
onEdge2Drag: PropTypes.func.isRequired,
onDragComplete: PropTypes.func.isRequired,
onSelect: PropTypes.func.isRequired,
onUnSelect: PropTypes.func.isRequired,
r: PropTypes.number.isRequired,
strokeOpacity: PropTypes.number.isRequired,
defaultClassName: PropTypes.string,
selected: PropTypes.bool,
stroke: PropTypes.string.isRequired,
strokeWidth: PropTypes.number.isRequired,
strokeDasharray: PropTypes.oneOf(strokeDashTypes),
edgeStrokeWidth: PropTypes.number.isRequired,
edgeStroke: PropTypes.string.isRequired,
edgeInteractiveCursor: PropTypes.string.isRequired,
lineInteractiveCursor: PropTypes.string.isRequired,
edgeFill: PropTypes.string.isRequired,
hoverText: PropTypes.object.isRequired
};
EachHorizontalLine.defaultProps = {
onDrag: noop,
onEdge1Drag: noop,
onEdge2Drag: noop,
onDragComplete: noop,
onSelect: noop,
onUnSelect: noop,
selected: false,
hovering: false,
edgeStroke: "#000000",
edgeFill: "#FFFFFF",
edgeStrokeWidth: 2,
r: 5,
strokeWidth: 1,
strokeOpacity: 1,
strokeDasharray: "Solid",
hoverText: {
enable: false
}
};
export default EachHorizontalLine;
//# sourceMappingURL=EachHorizontalLine.js.map