UNPKG

4.41 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) 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 AbstractSeries from './abstract-series';
32import BarSeries from './bar-series-canvas';
33
34var HorizontalBarSeriesCanvas = function (_AbstractSeries) {
35 _inherits(HorizontalBarSeriesCanvas, _AbstractSeries);
36
37 function HorizontalBarSeriesCanvas() {
38 _classCallCheck(this, HorizontalBarSeriesCanvas);
39
40 return _possibleConstructorReturn(this, (HorizontalBarSeriesCanvas.__proto__ || Object.getPrototypeOf(HorizontalBarSeriesCanvas)).apply(this, arguments));
41 }
42
43 _createClass(HorizontalBarSeriesCanvas, [{
44 key: 'render',
45 value: function render() {
46 return null;
47 }
48 }], [{
49 key: 'getParentConfig',
50 value: function getParentConfig(attr) {
51 var isDomainAdjustmentNeeded = attr === 'y';
52 var zeroBaseValue = attr === 'x';
53 return {
54 isDomainAdjustmentNeeded: isDomainAdjustmentNeeded,
55 zeroBaseValue: zeroBaseValue
56 };
57 }
58 }, {
59 key: 'renderLayer',
60 value: function renderLayer(props, ctx) {
61 BarSeries.renderLayer(_extends({}, props, {
62 linePosAttr: 'y',
63 valuePosAttr: 'x',
64 lineSizeAttr: 'height',
65 valueSizeAttr: 'width'
66 }), ctx);
67 }
68 }, {
69 key: 'requiresSVG',
70 get: function get() {
71 return false;
72 }
73 }, {
74 key: 'isCanvas',
75 get: function get() {
76 return true;
77 }
78 }]);
79
80 return HorizontalBarSeriesCanvas;
81}(AbstractSeries);
82
83HorizontalBarSeriesCanvas.displayName = 'HorizontalBarSeriesCanvas';
84HorizontalBarSeriesCanvas.propTypes = _extends({}, AbstractSeries.propTypes);
85
86export default HorizontalBarSeriesCanvas;
\No newline at end of file