ct-react-stockcharts
Version:
Highly customizable stock charts with ReactJS and d3
136 lines (107 loc) • 5.08 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 { isDefined, noop, mapObject, head } from "../utils";
import { getMorePropsForChart, getSelected } from "./utils";
import GenericComponent, { getMouseCanvas } from "../GenericComponent";
var DrawingObjectSelector = function (_Component) {
_inherits(DrawingObjectSelector, _Component);
function DrawingObjectSelector(props) {
_classCallCheck(this, DrawingObjectSelector);
var _this = _possibleConstructorReturn(this, (DrawingObjectSelector.__proto__ || Object.getPrototypeOf(DrawingObjectSelector)).call(this, props));
_this.handleClick = _this.handleClick.bind(_this);
_this.handleDoubleClick = _this.handleDoubleClick.bind(_this);
_this.getInteraction = _this.getInteraction.bind(_this);
return _this;
}
_createClass(DrawingObjectSelector, [{
key: "handleDoubleClick",
value: function handleDoubleClick(moreProps, e) {
e.preventDefault();
var onDoubleClick = this.props.onDoubleClick;
var enabled = this.props.enabled;
if (!enabled) return;
var interactives = this.getInteraction(moreProps);
var allSelected = getSelected(interactives);
// console.log(selected, interactives)
if (allSelected.length > 0) {
var selected = head(allSelected);
var item = {
type: selected.type,
chartId: selected.chartId,
object: head(selected.objects)
};
var morePropsForChart = getMorePropsForChart(moreProps, selected.chartId);
onDoubleClick(item, morePropsForChart);
}
}
}, {
key: "handleClick",
value: function handleClick(moreProps, e) {
e.preventDefault();
var onSelect = this.props.onSelect;
var enabled = this.props.enabled;
if (!enabled) return;
var interactives = this.getInteraction(moreProps);
onSelect(interactives, moreProps);
}
}, {
key: "getInteraction",
value: function getInteraction(moreProps) {
var _props = this.props,
getInteractiveNodes = _props.getInteractiveNodes,
drawingObjectMap = _props.drawingObjectMap;
var interactiveNodes = getInteractiveNodes();
var interactives = mapObject(interactiveNodes, function (each) {
var key = drawingObjectMap[each.type];
var valueArray = isDefined(key) ? each.node.props[key] : undefined;
var valuePresent = isDefined(valueArray) && Array.isArray(valueArray) && valueArray.length > 0;
if (valuePresent) {
// console.log("Value present for ", each.type, each.chartId);
var morePropsForChart = getMorePropsForChart(moreProps, each.chartId);
var objects = each.node.getSelectionState(morePropsForChart);
return {
type: each.type,
chartId: each.chartId,
objects: objects
};
}
return {
type: each.type,
chartId: each.chartId,
objects: []
};
});
return interactives;
}
}, {
key: "render",
value: function render() {
return React.createElement(GenericComponent, {
svgDraw: noop,
canvasToDraw: getMouseCanvas,
canvasDraw: noop,
onMouseDown: this.handleClick,
onDoubleClick: this.handleDoubleClick,
drawOn: ["mousemove", "pan", "drag"]
});
}
}]);
return DrawingObjectSelector;
}(Component);
DrawingObjectSelector.propTypes = {
getInteractiveNodes: PropTypes.func.isRequired,
onSelect: PropTypes.func.isRequired,
onDoubleClick: PropTypes.func.isRequired,
drawingObjectMap: PropTypes.object.isRequired,
enabled: PropTypes.bool.isRequired
};
DrawingObjectSelector.defaultProps = {
enabled: true,
onDoubleClick: noop
};
export default DrawingObjectSelector;
//# sourceMappingURL=DrawingObjectSelector.js.map