devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
270 lines (258 loc) • 10.6 kB
JavaScript
/**
* DevExtreme (cjs/renovation/ui/overlays/tooltip.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
exports.viewFunction = exports.TooltipProps = exports.Tooltip = void 0;
var _inferno = require("inferno");
var _inferno2 = require("@devextreme/runtime/inferno");
var _devices = _interopRequireDefault(require("../../../core/devices"));
var _tooltip = _interopRequireDefault(require("../../../ui/tooltip"));
var _dom_component_wrapper = require("../common/dom_component_wrapper");
var _base_props = require("../common/base_props");
const _excluded = ["children"],
_excluded2 = ["accessKey", "activeStateEnabled", "animation", "children", "className", "container", "contentTemplate", "defaultVisible", "deferRendering", "disabled", "focusStateEnabled", "fullScreen", "height", "hideEvent", "hideOnOutsideClick", "hint", "hoverStateEnabled", "maxHeight", "maxWidth", "minHeight", "minWidth", "onClick", "onHidden", "onHiding", "onInitialized", "onKeyDown", "onOptionChanged", "onShowing", "onShown", "onTitleRendered", "position", "rtlEnabled", "shading", "shadingColor", "showEvent", "tabIndex", "target", "visible", "visibleChange", "width", "wrapperAttr"];
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
function _objectWithoutPropertiesLoose(source, excluded) {
if (null == source) {
return {}
}
var target = {};
var sourceKeys = Object.keys(source);
var key, i;
for (i = 0; i < sourceKeys.length; i++) {
key = sourceKeys[i];
if (excluded.indexOf(key) >= 0) {
continue
}
target[key] = source[key]
}
return target
}
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, _toPropertyKey(descriptor.key), descriptor)
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) {
_defineProperties(Constructor.prototype, protoProps)
}
if (staticProps) {
_defineProperties(Constructor, staticProps)
}
Object.defineProperty(Constructor, "prototype", {
writable: false
});
return Constructor
}
function _toPropertyKey(arg) {
var key = _toPrimitive(arg, "string");
return "symbol" === typeof key ? key : String(key)
}
function _toPrimitive(input, hint) {
if ("object" !== typeof input || null === input) {
return input
}
var prim = input[Symbol.toPrimitive];
if (void 0 !== prim) {
var res = prim.call(input, hint || "default");
if ("object" !== typeof res) {
return res
}
throw new TypeError("@@toPrimitive must return a primitive value.")
}
return ("string" === hint ? String : Number)(input)
}
function _assertThisInitialized(self) {
if (void 0 === self) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
}
return self
}
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
_setPrototypeOf(subClass, superClass)
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(o, p) {
o.__proto__ = p;
return o
};
return _setPrototypeOf(o, p)
}
function _extends() {
_extends = Object.assign ? Object.assign.bind() : 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
};
return _extends.apply(this, arguments)
}
const isDesktop = !(!_devices.default.real().generic || _devices.default.isSimulator());
const viewFunction = _ref => {
let {
componentProps: componentProps,
domComponentWrapperRef: domComponentWrapperRef,
restAttributes: restAttributes
} = _ref;
return (0, _inferno.normalizeProps)((0, _inferno.createComponentVNode)(2, _dom_component_wrapper.DomComponentWrapper, _extends({
componentType: _tooltip.default,
componentProps: componentProps.restProps,
templateNames: ["contentTemplate"]
}, restAttributes, {
children: componentProps.children
}), null, domComponentWrapperRef))
};
exports.viewFunction = viewFunction;
const TooltipProps = Object.create(Object.prototype, _extends(Object.getOwnPropertyDescriptors(_base_props.BaseWidgetProps), Object.getOwnPropertyDescriptors({
animation: Object.freeze({
show: {
type: "fade",
from: 0,
to: 1
},
hide: {
type: "fade",
to: 0
}
}),
hideOnOutsideClick: true,
contentTemplate: "content",
deferRendering: true,
disabled: false,
wrapperAttr: Object.freeze({}),
focusStateEnabled: isDesktop,
fullScreen: false,
height: "auto",
hoverStateEnabled: false,
maxHeight: null,
maxWidth: null,
minHeight: null,
minWidth: null,
position: "bottom",
rtlEnabled: false,
shading: false,
shadingColor: "",
width: "auto",
defaultVisible: true,
visibleChange: () => {},
isReactComponentWrapper: true
})));
exports.TooltipProps = TooltipProps;
const getTemplate = TemplateProp => TemplateProp && (TemplateProp.defaultProps ? props => (0, _inferno.normalizeProps)((0, _inferno.createComponentVNode)(2, TemplateProp, _extends({}, props))) : TemplateProp);
let Tooltip = function(_InfernoComponent) {
_inheritsLoose(Tooltip, _InfernoComponent);
function Tooltip(props) {
var _this;
_this = _InfernoComponent.call(this, props) || this;
_this.domComponentWrapperRef = (0, _inferno.createRef)();
_this.__getterCache = {};
_this.state = {
visible: void 0 !== _this.props.visible ? _this.props.visible : _this.props.defaultVisible
};
_this.saveInstance = _this.saveInstance.bind(_assertThisInitialized(_this));
_this.setHideEventListener = _this.setHideEventListener.bind(_assertThisInitialized(_this));
return _this
}
var _proto = Tooltip.prototype;
_proto.createEffects = function() {
return [new _inferno2.InfernoEffect(this.saveInstance, []), new _inferno2.InfernoEffect(this.setHideEventListener, [this.props.visibleChange])]
};
_proto.updateEffects = function() {
var _this$_effects$, _this$_effects$2;
null === (_this$_effects$ = this._effects[0]) || void 0 === _this$_effects$ ? void 0 : _this$_effects$.update([]);
null === (_this$_effects$2 = this._effects[1]) || void 0 === _this$_effects$2 ? void 0 : _this$_effects$2.update([this.props.visibleChange])
};
_proto.saveInstance = function() {
var _this$domComponentWra;
this.instance = null === (_this$domComponentWra = this.domComponentWrapperRef.current) || void 0 === _this$domComponentWra ? void 0 : _this$domComponentWra.getInstance()
};
_proto.setHideEventListener = function() {
this.instance.option("onHiding", () => {
{
let __newValue;
this.setState(__state_argument => {
__newValue = false;
return {
visible: __newValue
}
});
this.props.visibleChange(__newValue)
}
})
};
_proto.componentWillUpdate = function(nextProps, nextState, context) {
_InfernoComponent.prototype.componentWillUpdate.call(this);
if (this.props !== nextProps) {
this.__getterCache.componentProps = void 0
}
};
_proto.render = function() {
const props = this.props;
return viewFunction({
props: _extends({}, props, {
visible: void 0 !== this.props.visible ? this.props.visible : this.state.visible,
contentTemplate: (TemplateProp = props.contentTemplate, TemplateProp && (TemplateProp.defaultProps ? props => (0, _inferno.normalizeProps)((0, _inferno.createComponentVNode)(2, TemplateProp, _extends({}, props))) : TemplateProp))
}),
domComponentWrapperRef: this.domComponentWrapperRef,
componentProps: this.componentProps,
restAttributes: this.restAttributes
});
var TemplateProp
};
_createClass(Tooltip, [{
key: "componentProps",
get: function() {
if (void 0 !== this.__getterCache.componentProps) {
return this.__getterCache.componentProps
}
return this.__getterCache.componentProps = (() => {
const _this$props$visible = _extends({}, this.props, {
visible: void 0 !== this.props.visible ? this.props.visible : this.state.visible
}),
{
children: children
} = _this$props$visible,
restProps = _objectWithoutPropertiesLoose(_this$props$visible, _excluded);
return {
children: children,
restProps: restProps
}
})()
}
}, {
key: "restAttributes",
get: function() {
const _this$props$visible2 = _extends({}, this.props, {
visible: void 0 !== this.props.visible ? this.props.visible : this.state.visible
}),
restProps = _objectWithoutPropertiesLoose(_this$props$visible2, _excluded2);
return restProps
}
}]);
return Tooltip
}(_inferno2.InfernoComponent);
exports.Tooltip = Tooltip;
Tooltip.defaultProps = TooltipProps;