devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
142 lines (141 loc) • 5.65 kB
JavaScript
/**
* DevExtreme (esm/renovation/ui/overlays/tooltip.js)
* Version: 21.2.4
* Build date: Mon Dec 06 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
var _excluded = ["accessKey", "activeStateEnabled", "animation", "children", "className", "closeOnOutsideClick", "container", "contentTemplate", "defaultVisible", "deferRendering", "disabled", "elementAttr", "focusStateEnabled", "fullScreen", "height", "hideEvent", "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"];
import {
createComponentVNode,
normalizeProps
} from "inferno";
import {
InfernoEffect,
InfernoComponent
} from "@devextreme/runtime/inferno";
import devices from "../../../core/devices";
import LegacyTooltip from "../../../ui/tooltip";
import {
DomComponentWrapper
} from "../common/dom_component_wrapper";
import {
BaseWidgetProps
} from "../common/base_props";
var isDesktop = !(!devices.real().generic || devices.isSimulator());
export var viewFunction = _ref => {
var {
domComponentWrapperRef: domComponentWrapperRef,
props: props,
restAttributes: restAttributes
} = _ref;
var {
children: children
} = props;
return normalizeProps(createComponentVNode(2, DomComponentWrapper, _extends({
componentType: LegacyTooltip,
componentProps: props,
templateNames: ["contentTemplate"]
}, restAttributes, {
children: children
}), null, domComponentWrapperRef))
};
export var TooltipProps = Object.create(Object.prototype, _extends(Object.getOwnPropertyDescriptors(BaseWidgetProps), Object.getOwnPropertyDescriptors({
get animation() {
return {
show: {
type: "fade",
from: 0,
to: 1
},
hide: {
type: "fade",
to: 0
}
}
},
closeOnOutsideClick: true,
contentTemplate: "content",
deferRendering: true,
disabled: false,
get elementAttr() {
return {}
},
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
})));
import {
createRef as infernoCreateRef
} from "inferno";
var getTemplate = TemplateProp => TemplateProp && (TemplateProp.defaultProps ? props => normalizeProps(createComponentVNode(2, TemplateProp, _extends({}, props))) : TemplateProp);
export class Tooltip extends InfernoComponent {
constructor(props) {
super(props);
this.domComponentWrapperRef = infernoCreateRef();
this.state = {
visible: void 0 !== this.props.visible ? this.props.visible : this.props.defaultVisible
};
this.saveInstance = this.saveInstance.bind(this);
this.setHideEventListener = this.setHideEventListener.bind(this)
}
createEffects() {
return [new InfernoEffect(this.saveInstance, []), new InfernoEffect(this.setHideEventListener, [this.props.visibleChange])]
}
updateEffects() {
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])
}
saveInstance() {
var _this$domComponentWra;
this.instance = null === (_this$domComponentWra = this.domComponentWrapperRef.current) || void 0 === _this$domComponentWra ? void 0 : _this$domComponentWra.getInstance()
}
setHideEventListener() {
this.instance.option("onHiding", () => {
var __newValue;
this.setState(__state_argument => {
__newValue = false;
return {
visible: __newValue
}
});
this.props.visibleChange(__newValue)
})
}
get restAttributes() {
var _this$props$visible = _extends({}, this.props, {
visible: void 0 !== this.props.visible ? this.props.visible : this.state.visible
}),
restProps = _objectWithoutPropertiesLoose(_this$props$visible, _excluded);
return restProps
}
render() {
var props = this.props;
return viewFunction({
props: _extends({}, props, {
visible: void 0 !== this.props.visible ? this.props.visible : this.state.visible,
contentTemplate: getTemplate(props.contentTemplate)
}),
domComponentWrapperRef: this.domComponentWrapperRef,
restAttributes: this.restAttributes
})
}
}
Tooltip.defaultProps = TooltipProps;