Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
"use strict";

function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports["default"] = void 0;

var _react = _interopRequireWildcard(require("react"));

var _propTypes = require("prop-types");

var _reactTooltip = _interopRequireDefault(require("react-tooltip"));

var _Icon = _interopRequireDefault(require("../../visuals/Icon"));

var _isTouch = _interopRequireDefault(require("../../utils/isTouch"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }

function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }

function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }

function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }

function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }

function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }

function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }

function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }

function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }

function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }

function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }

function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }

/**
 * This Tooltip is build on top off react-tooltip.
 * Documentation: https://github.com/wwayne/react-tooltip
 * Examples: https://react-tooltip.netlify.com/
 */
var Tooltip = /*#__PURE__*/function (_Component) {
  _inherits(Tooltip, _Component);

  var _super = _createSuper(Tooltip);

  function Tooltip() {
    _classCallCheck(this, Tooltip);

    return _super.apply(this, arguments);
  }

  _createClass(Tooltip, [{
    key: "render",
    value: function render() {
      var _this$props = this.props,
          icon = _this$props.icon,
          message = _this$props.message,
          name = _this$props.name,
          content = _this$props.content,
          forceDataEventClick = _this$props.forceDataEventClick,
          hideOnMouseOut = _this$props.hideOnMouseOut;
      var dataEvent = (0, _isTouch["default"])() || forceDataEventClick ? 'click' : null;
      var dataEventOff = forceDataEventClick && hideOnMouseOut ? 'mouseout' : null;
      return /*#__PURE__*/_react["default"].createElement("div", {
        className: "Tooltip-wrapper"
      }, icon && /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
        icon: icon,
        "data-tip": Boolean(content) || message,
        "data-event": dataEvent,
        "data-event-off": dataEventOff,
        "data-place": "bottom",
        "data-for": name,
        className: "Tooltip-Icon"
      }), /*#__PURE__*/_react["default"].createElement(_reactTooltip["default"], {
        globalEventOff: "click",
        effect: "solid",
        place: "right",
        type: "light",
        className: "Tooltip",
        id: name,
        multiline: true
      }, content));
    }
  }]);

  return Tooltip;
}(_react.Component);

_defineProperty(Tooltip, "propTypes", {
  /**
   * If provided the Tooltip will be bound to this icon.
   * If not provided one must add the relevant data attributes to the element, the Tooltip should be bound too.
   * See md file for example.
   */
  icon: _propTypes.PropTypes.any,

  /**
   * The message of the tooltip if you do not want to display a component.
   * Content prop should not be passed if you want to only display a string message.
   */
  message: _propTypes.PropTypes.string,

  /**
   * A component or JSX which can be displayed instead of a message.
   * Passing content will always take priority over a message as data-tip will be true.
   */
  content: _propTypes.PropTypes.node,

  /**
   * A unique name. It will be used as the id of the Tooltip and the data-for attribute on the Icon.
   */
  name: _propTypes.PropTypes.string.isRequired,

  /**
   * If you want to force the Tooltip to show on click for none touch devices you can set this true.
   */
  forceDataEventClick: _propTypes.PropTypes.bool,

  /**
   * If you have set forceDataEventClicktrue and you want the tooltip to hide on mouseout set this true
   */
  hideOnMouseOut: _propTypes.PropTypes.bool
});

_defineProperty(Tooltip, "defaultProps", {
  icon: null,
  message: null,
  forceDataEventClick: false,
  hideOnMouseOut: false,
  content: null
});

var _default = Tooltip;
exports["default"] = _default;