UNPKG

5.35 kBJavaScriptView Raw
1var _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; };
2
3var _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; }; }();
4
5function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
6
7function _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; }
8
9function _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; }
10
11// Copyright (c) 2016 - 2017 Uber Technologies, Inc.
12//
13// Permission is hereby granted, free of charge, to any person obtaining a copy
14// of this software and associated documentation files (the "Software"), to deal
15// in the Software without restriction, including without limitation the rights
16// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17// copies of the Software, and to permit persons to whom the Software is
18// furnished to do so, subject to the following conditions:
19//
20// The above copyright notice and this permission notice shall be included in
21// all copies or substantial portions of the Software.
22//
23// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29// THE SOFTWARE.
30
31import React from 'react';
32
33import Animation from '../../animation';
34import { ANIMATED_SERIES_PROPS } from '../../utils/series-utils';
35
36import AbstractSeries from './abstract-series';
37
38var predefinedClassName = 'rv-xy-plot__series rv-xy-plot__series--polygon';
39var DEFAULT_COLOR = '#12939A';
40
41var generatePath = function generatePath(data, xFunctor, yFunctor) {
42 return data.reduce(function (res, row, i) {
43 return res + ' ' + (i ? 'L' : 'M') + xFunctor(row) + ' ' + yFunctor(row);
44 }, '') + ' Z';
45};
46
47var PolygonSeries = function (_AbstractSeries) {
48 _inherits(PolygonSeries, _AbstractSeries);
49
50 function PolygonSeries() {
51 _classCallCheck(this, PolygonSeries);
52
53 return _possibleConstructorReturn(this, (PolygonSeries.__proto__ || Object.getPrototypeOf(PolygonSeries)).apply(this, arguments));
54 }
55
56 _createClass(PolygonSeries, [{
57 key: 'render',
58 value: function render() {
59 var _this2 = this;
60
61 var _props = this.props,
62 animation = _props.animation,
63 color = _props.color,
64 className = _props.className,
65 data = _props.data,
66 marginLeft = _props.marginLeft,
67 marginTop = _props.marginTop,
68 style = _props.style;
69
70
71 if (!data) {
72 return null;
73 }
74
75 if (animation) {
76 return React.createElement(
77 Animation,
78 _extends({}, this.props, { animatedProps: ANIMATED_SERIES_PROPS }),
79 React.createElement(PolygonSeries, _extends({}, this.props, { animation: null }))
80 );
81 }
82 var xFunctor = this._getAttributeFunctor('x');
83 var yFunctor = this._getAttributeFunctor('y');
84
85 return React.createElement('path', {
86 className: predefinedClassName + ' ' + className,
87 onMouseOver: function onMouseOver(e) {
88 return _this2._seriesMouseOverHandler(data, e);
89 },
90 onMouseOut: function onMouseOut(e) {
91 return _this2._seriesMouseOutHandler(data, e);
92 },
93 onClick: this._seriesClickHandler,
94 onContextMenu: this._seriesRightClickHandler,
95 fill: color || DEFAULT_COLOR,
96 style: style,
97 d: generatePath(data, xFunctor, yFunctor),
98 transform: 'translate(' + marginLeft + ',' + marginTop + ')'
99 });
100 }
101 }], [{
102 key: 'propTypes',
103 get: function get() {
104 return _extends({}, AbstractSeries.propTypes);
105 }
106 }]);
107
108 return PolygonSeries;
109}(AbstractSeries);
110
111PolygonSeries.displayName = 'PolygonSeries';
112
113export default PolygonSeries;
\No newline at end of file