all files / dist/lib/plot/series/ area-series.js

78.49% Statements 73/93
61.29% Branches 38/62
82.35% Functions 14/17
75.38% Lines 49/65
2 statements, 1 function, 3 branches Ignored     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156                                                                                                                                                                                                                       
'use strict';
 
Object.defineProperty(exports, "__esModule", {
  value: true
});
 
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; Eif ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (EprotoProps) defineProperties(Constructor.prototype, protoProps); Iif (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
 
var _react = require('react');
 
var _react2 = _interopRequireDefault(_react);
 
var _d3Selection = require('d3-selection');
 
var _d3Selection2 = _interopRequireDefault(_d3Selection);
 
var _d3Shape = require('d3-shape');
 
var _d3Shape2 = _interopRequireDefault(_d3Shape);
 
var _abstractSeries = require('./abstract-series');
 
var _abstractSeries2 = _interopRequireDefault(_abstractSeries);
 
var _reactUtils = require('../../utils/react-utils');
 
var _theme = require('../../theme');
 
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
 
function _classCallCheck(instance, Constructor) { if (I!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
 
function _possibleConstructorReturn(self, call) { if (I!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 (Itypeof 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 } }); Eif (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 AreaSeries = function (_AbstractSeries) {
  _inherits(AreaSeries, _AbstractSeries);
 
  function AreaSeries(props) {
    _classCallCheck(this, AreaSeries);
 
    var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(AreaSeries).call(this, props));
 
    _this._mouseOut = _this._mouseOut.bind(_this);
    _this._mouseOver = _this._mouseOver.bind(_this);
    return _this;
  }
 
  _createClass(AreaSeries, [{
    key: 'componentDidMount',
    value: function componentDidMount() {
      this._updateSeries();
    }
  }, {
    key: 'componentDidUpdate',
    value: function componentDidUpdate() {
      this._updateSeries();
    }
  }, {
    key: '_mouseOver',
    value: function _mouseOver(d) {
      var _props = this.props;
      var onValueMouseOver = _props.onValueMouseOver;
      var onSeriesMouseOver = _props.onSeriesMouseOver;
 
      if (onValueMouseOver) {
        onValueMouseOver(d, { event: _d3Selection2.default.event });
      }
      if (onSeriesMouseOver) {
        onSeriesMouseOver({ event: _d3Selection2.default.event });
      }
    }
  }, {
    key: '_mouseOut',
    value: function _mouseOut(d) {
      var _props2 = this.props;
      var onValueMouseOut = _props2.onValueMouseOut;
      var onSeriesMouseOut = _props2.onSeriesMouseOut;
 
      if (onValueMouseOut) {
        onValueMouseOut(d, { event: _d3Selection2.default.event });
      }
      if (onSeriesMouseOut) {
        onSeriesMouseOut({ event: _d3Selection2.default.event });
      }
    }
  }, {
    key: '_updateSeries',
    value: function _updateSeries() {
      var lineElement = (0, _reactUtils.getDOMNode)(this.refs.line);
      var data = this.props.data;
 
      if (I!data) {
        return;
      }
 
      var x = this._getAttributeFunctor('x');
      var y = this._getAttributeFunctor('y');
      var y0 = this._getAttr0Functor('y');
      var fill = this._getAttributeValue('fill') || this._getAttributeValue('color');
 
      var stroke = this._getAttributeValue('stroke') || this._getAttributeValue('color');
 
      var line = _d3Shape2.default.area().x(x).y0(y0).y1(y);
 
      var opacity = this._getAttributeValue('opacity') || _theme.DEFAULT_OPACITY;
      var d = line(data);
 
      var path = _d3Selection2.default.select(lineElement).on('mouseover', this._onMouseOver).on('mouseout', this._onMouseOut);
 
      this._applyTransition(path).attr('d', d).style('stroke', stroke).style('fill', fill).style('opacity', opacity);
    }
  }, {
    key: 'render',
    value: function render() {
      var _props3 = this.props;
      var data = _props3.data;
      var marginLeft = _props3.marginLeft;
      var marginTop = _props3.marginTop;
 
      if (I!data) {
        return null;
      }
      return _react2.default.createElement('path', {
        ref: 'line',
        style: { opacity: 0 },
        className: 'rv-xy-plot__series rv-xy-plot__series--area',
        transform: 'translate(' + marginLeft + ',' + marginTop + ')' });
    }
  }]);
 
  return AreaSeries;
}(_abstractSeries2.default);
 
AreaSeries.displayName = 'AreaSeries';
 
exports.default = AreaSeries;