react-vis
Version:
Data visualization library based on React and d3.
95 lines (81 loc) • 3.84 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getDOMNode = exports.isReactDOMSupported = undefined;
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); // 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.
exports.warning = warning;
exports.warnOnce = warnOnce;
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _React$version$split = _react2.default.version.split('.'),
_React$version$split2 = _slicedToArray(_React$version$split, 2),
major = _React$version$split2[0],
minor = _React$version$split2[1];
var versionHigherThanThirteen = Number(minor) > 13 || Number(major) > 13;
var isReactDOMSupported = exports.isReactDOMSupported = function isReactDOMSupported() {
return versionHigherThanThirteen;
};
/**
* Support React 0.13 and greater where refs are React components, not DOM
* nodes.
* @param {*} ref React's ref.
* @returns {Element} DOM element.
*/
var getDOMNode = exports.getDOMNode = function getDOMNode(ref) {
if (!isReactDOMSupported()) {
return ref && ref.getDOMNode();
}
return ref;
};
var USED_MESSAGES = {};
var HIDDEN_PROCESSES = {
test: true,
production: true
};
/**
* Warn the user about something
* @param {String} message - the message to be shown
* @param {Boolean} onlyShowMessageOnce - whether or not we allow the
- message to be show multiple times
*/
function warning(message) {
var onlyShowMessageOnce = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
/* eslint-disable no-undef, no-process-env */
if (global.process && HIDDEN_PROCESSES[process.env.NODE_ENV]) {
return;
}
/* eslint-enable no-undef, no-process-env */
if (!onlyShowMessageOnce || !USED_MESSAGES[message]) {
/* eslint-disable no-console */
console.warn(message);
/* eslint-enable no-console */
USED_MESSAGES[message] = true;
}
}
/**
* Convience wrapper for warning
* @param {String} message - the message to be shown
*/
function warnOnce(message) {
warning(message, true);
}