react-vis
Version:
Data visualization library based on React and d3.
175 lines (135 loc) • 7.75 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
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; }; }();
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _pureRenderComponent = require('../pure-render-component');
var _pureRenderComponent2 = _interopRequireDefault(_pureRenderComponent);
var _scalesUtils = require('../utils/scales-utils');
var _animation = require('../animation');
var _animation2 = _interopRequireDefault(_animation);
var _axisUtils = require('../utils/axis-utils');
var _animationUtils = require('../utils/animation-utils');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return 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; } // Copyright (c) 2016 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
var VERTICAL = _axisUtils.DIRECTION.VERTICAL;
var HORIZONTAL = _axisUtils.DIRECTION.HORIZONTAL;
var propTypes = {
direction: _react2.default.PropTypes.oneOf([VERTICAL, HORIZONTAL]),
attr: _react2.default.PropTypes.string.isRequired,
width: _react2.default.PropTypes.number,
height: _react2.default.PropTypes.number,
top: _react2.default.PropTypes.number,
left: _react2.default.PropTypes.number,
tickValues: _react2.default.PropTypes.array,
tickTotal: _react2.default.PropTypes.number,
animation: _animationUtils.AnimationPropType,
// Not expected to be used by the users.
// TODO: Add underscore to these properties later.
marginTop: _react2.default.PropTypes.number,
marginBottom: _react2.default.PropTypes.number,
marginLeft: _react2.default.PropTypes.number,
marginRight: _react2.default.PropTypes.number,
innerWidth: _react2.default.PropTypes.number,
innerHeight: _react2.default.PropTypes.number
};
var defaultProps = {
direction: VERTICAL
};
var animatedProps = ['xRange', 'yRange', 'xDomain', 'yDomain', 'width', 'height', 'marginLeft', 'marginTop', 'marginRight', 'marginBottom', 'tickTotal'];
var GridLines = function (_PureRenderComponent) {
_inherits(GridLines, _PureRenderComponent);
function GridLines() {
_classCallCheck(this, GridLines);
return _possibleConstructorReturn(this, (GridLines.__proto__ || Object.getPrototypeOf(GridLines)).apply(this, arguments));
}
_createClass(GridLines, [{
key: '_getDefaultProps',
value: function _getDefaultProps() {
var _props = this.props;
var innerWidth = _props.innerWidth;
var innerHeight = _props.innerHeight;
var marginTop = _props.marginTop;
var marginLeft = _props.marginLeft;
var direction = _props.direction;
return {
left: marginLeft,
top: marginTop,
width: innerWidth,
height: innerHeight,
tickTotal: (0, _axisUtils.getTicksTotalFromSize)(direction === VERTICAL ? innerWidth : innerHeight)
};
}
}, {
key: 'render',
value: function render() {
var animation = this.props.animation;
if (animation) {
return _react2.default.createElement(
_animation2.default,
_extends({}, this.props, { animatedProps: animatedProps }),
_react2.default.createElement(GridLines, _extends({}, this.props, { animation: null }))
);
}
var props = _extends({}, this._getDefaultProps(), this.props);
var attr = props.attr;
var direction = props.direction;
var width = props.width;
var height = props.height;
var tickTotal = props.tickTotal;
var tickValues = props.tickValues;
var top = props.top;
var left = props.left;
var isVertical = direction === VERTICAL;
var tickXAttr = isVertical ? 'y' : 'x';
var tickYAttr = isVertical ? 'x' : 'y';
var length = isVertical ? height : width;
var scale = (0, _scalesUtils.getAttributeScale)(props, attr);
var values = (0, _axisUtils.getTickValues)(scale, tickTotal, tickValues);
return _react2.default.createElement(
'g',
{
transform: 'translate(' + left + ',' + top + ')',
className: 'rv-xy-plot__grid-lines' },
values.map(function (v, i) {
var _pathProps;
var pos = scale(v);
var pathProps = (_pathProps = {}, _defineProperty(_pathProps, tickYAttr + '1', pos), _defineProperty(_pathProps, tickYAttr + '2', pos), _defineProperty(_pathProps, tickXAttr + '1', 0), _defineProperty(_pathProps, tickXAttr + '2', length), _pathProps);
return _react2.default.createElement('line', _extends({}, pathProps, {
key: i,
className: 'rv-xy-plot__grid-lines__line' }));
})
);
}
}]);
return GridLines;
}(_pureRenderComponent2.default);
GridLines.displayName = 'GridLines';
GridLines.defaultProps = defaultProps;
GridLines.propTypes = propTypes;
GridLines.requiresSVG = true;
exports.default = GridLines;