react-vis
Version:
Data visualization library based on React and d3.
262 lines (228 loc) • 10.7 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; }; }();
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; };
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 - 2017 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.
import React from 'react';
import PropTypes from 'prop-types';
import Animation from '../../animation';
import { ANIMATED_SERIES_PROPS } from '../../utils/series-utils';
import { arc as arcBuilder } from 'd3-shape';
import AbstractSeries from './abstract-series';
import { getAttributeFunctor, getAttr0Functor, extractScalePropsFromProps, getMissingScaleProps, getScalePropTypesByAttribute } from '../../utils/scales-utils';
var predefinedClassName = 'rv-xy-plot__series rv-xy-plot__series--arc';
var ATTRIBUTES = ['radius', 'angle'];
var defaultProps = _extends({}, AbstractSeries.defaultProps, {
center: { x: 0, y: 0 },
arcClassName: '',
className: '',
style: {},
padAngle: 0
});
/**
* Prepare the internal representation of row for real use.
* This is necessary because d3 insists on starting at 12 oclock and moving
* clockwise, rather than starting at 3 oclock and moving counter clockwise
* as one might expect from polar
* @param {Object} row - coordinate object to be modifed
* @return {Object} angle corrected object
*/
function modifyRow(row) {
var radius = row.radius,
angle = row.angle,
angle0 = row.angle0;
var truedAngle = -1 * angle + Math.PI / 2;
var truedAngle0 = -1 * angle0 + Math.PI / 2;
return _extends({}, row, {
x: radius * Math.cos(truedAngle),
y: radius * Math.sin(truedAngle),
angle: truedAngle,
angle0: truedAngle0
});
}
var ArcSeries = function (_AbstractSeries) {
_inherits(ArcSeries, _AbstractSeries);
function ArcSeries(props) {
_classCallCheck(this, ArcSeries);
var _this = _possibleConstructorReturn(this, (ArcSeries.__proto__ || Object.getPrototypeOf(ArcSeries)).call(this, props));
var scaleProps = _this._getAllScaleProps(props);
_this.state = { scaleProps: scaleProps };
return _this;
}
_createClass(ArcSeries, [{
key: 'componentWillReceiveProps',
value: function componentWillReceiveProps(nextProps) {
this.setState({ scaleProps: this._getAllScaleProps(nextProps) });
}
/**
* Get the map of scales from the props.
* @param {Object} props Props.
* @param {Array} data Array of all data.
* @returns {Object} Map of scales.
* @private
*/
}, {
key: '_getAllScaleProps',
value: function _getAllScaleProps(props) {
var defaultScaleProps = this._getDefaultScaleProps(props);
var userScaleProps = extractScalePropsFromProps(props, ATTRIBUTES);
var missingScaleProps = getMissingScaleProps(_extends({}, defaultScaleProps, userScaleProps), props.data, ATTRIBUTES);
return _extends({}, defaultScaleProps, userScaleProps, missingScaleProps);
}
/**
* Get the list of scale-related settings that should be applied by default.
* @param {Object} props Object of props.
* @returns {Object} Defaults.
* @private
*/
}, {
key: '_getDefaultScaleProps',
value: function _getDefaultScaleProps(props) {
var innerWidth = props.innerWidth,
innerHeight = props.innerHeight;
var radius = Math.min(innerWidth / 2, innerHeight / 2);
return {
radiusRange: [0, radius],
_radiusValue: radius,
angleType: 'literal'
};
}
}, {
key: 'render',
value: function render() {
var _this2 = this;
var _props = this.props,
arcClassName = _props.arcClassName,
animation = _props.animation,
className = _props.className,
center = _props.center,
data = _props.data,
disableSeries = _props.disableSeries,
hideSeries = _props.hideSeries,
marginLeft = _props.marginLeft,
marginTop = _props.marginTop,
padAngle = _props.padAngle,
style = _props.style;
if (!data) {
return null;
}
if (animation) {
var cloneData = data.map(function (d) {
return _extends({}, d);
});
return React.createElement(
'g',
{ className: 'rv-xy-plot__series--arc__animation-wrapper' },
React.createElement(
Animation,
_extends({}, this.props, {
animatedProps: ANIMATED_SERIES_PROPS,
data: cloneData
}),
React.createElement(ArcSeries, _extends({}, this.props, {
animation: null,
disableSeries: true,
data: cloneData
}))
),
React.createElement(ArcSeries, _extends({}, this.props, {
animation: null,
hideSeries: true,
style: { stroke: 'red' }
}))
);
}
var scaleProps = this.state.scaleProps;
var radiusDomain = scaleProps.radiusDomain;
// need to generate our own functors as abstract series doesnt have anythign for us
var radius = getAttributeFunctor(scaleProps, 'radius');
var radius0 = getAttr0Functor(scaleProps, 'radius');
var angle = getAttributeFunctor(scaleProps, 'angle');
var angle0 = getAttr0Functor(scaleProps, 'angle');
// but it does have good color support!
var fill = this._getAttributeFunctor('fill') || this._getAttributeFunctor('color');
var stroke = this._getAttributeFunctor('stroke') || this._getAttributeFunctor('color');
var opacity = this._getAttributeFunctor('opacity');
var x = this._getAttributeFunctor('x');
var y = this._getAttributeFunctor('y');
return React.createElement(
'g',
{
className: predefinedClassName + ' ' + className,
onMouseOver: this._seriesMouseOverHandler,
onMouseOut: this._seriesMouseOutHandler,
onClick: this._seriesClickHandler,
onContextMenu: this._seriesRightClickHandler,
opacity: hideSeries ? 0 : 1,
pointerEvents: disableSeries ? 'none' : 'all',
transform: 'translate(' + (marginLeft + x(center)) + ',' + (marginTop + y(center)) + ')'
},
data.map(function (row, i) {
var noRadius = radiusDomain[1] === radiusDomain[0];
var arcArg = {
innerRadius: noRadius ? 0 : radius0(row),
outerRadius: radius(row),
startAngle: angle0(row) || 0,
endAngle: angle(row)
};
var arcedData = arcBuilder().padAngle(padAngle);
var rowStyle = row.style || {};
var rowClassName = row.className || '';
return React.createElement('path', {
style: _extends({
opacity: opacity && opacity(row),
stroke: stroke && stroke(row),
fill: fill && fill(row)
}, style, rowStyle),
onClick: function onClick(e) {
return _this2._valueClickHandler(modifyRow(row), e);
},
onContextMenu: function onContextMenu(e) {
return _this2._valueRightClickHandler(modifyRow(row), e);
},
onMouseOver: function onMouseOver(e) {
return _this2._valueMouseOverHandler(modifyRow(row), e);
},
onMouseOut: function onMouseOut(e) {
return _this2._valueMouseOutHandler(modifyRow(row), e);
},
key: i,
className: predefinedClassName + '-path ' + arcClassName + ' ' + rowClassName,
d: arcedData(arcArg)
});
})
);
}
}]);
return ArcSeries;
}(AbstractSeries);
ArcSeries.propTypes = _extends({}, AbstractSeries.propTypes, getScalePropTypesByAttribute('radius'), getScalePropTypesByAttribute('angle'), {
center: PropTypes.shape({
x: PropTypes.number,
y: PropTypes.number
}),
arcClassName: PropTypes.string,
padAngle: PropTypes.oneOfType([PropTypes.func, PropTypes.number])
});
ArcSeries.defaultProps = defaultProps;
ArcSeries.displayName = 'ArcSeries';
export default ArcSeries;