devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
496 lines (486 loc) • 20.2 kB
JavaScript
/**
* DevExtreme (renovation/component_wrapper/common/component.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/
*/
"use strict";
exports.default = void 0;
var _inferno = require("inferno");
var _keyboard_processor = _interopRequireDefault(require("../../../events/core/keyboard_processor"));
var _inferno_renderer = _interopRequireDefault(require("../../../core/inferno_renderer"));
var _renderer = _interopRequireDefault(require("../../../core/renderer"));
var _dom_adapter = _interopRequireDefault(require("../../../core/dom_adapter"));
var _dom_component = _interopRequireDefault(require("../../../core/dom_component"));
var _extend = require("../../../core/utils/extend");
var _element = require("../../../core/element");
var _type = require("../../../core/utils/type");
var _template_wrapper = require("./template_wrapper");
var _update_props_immutable = require("../utils/update_props_immutable");
require("../../../events/click");
require("../../../events/core/emitter.feedback");
require("../../../events/hover");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
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)
}
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 _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)
}
const setDefaultOptionValue = (options, defaultValueGetter) => name => {
if (Object.prototype.hasOwnProperty.call(options, name) && void 0 === options[name]) {
options[name] = defaultValueGetter(name)
}
};
let ComponentWrapper = function(_DOMComponent) {
_inheritsLoose(ComponentWrapper, _DOMComponent);
function ComponentWrapper(element, options) {
var _this;
_this = _DOMComponent.call(this, element, options) || this;
_this._shouldRaiseContentReady = false;
_this.validateKeyDownHandler();
return _this
}
var _proto = ComponentWrapper.prototype;
_proto.validateKeyDownHandler = function() {
const supportedKeyNames = this.getSupportedKeyNames();
const hasComponentDefaultKeyHandlers = supportedKeyNames.length > 0;
const hasComponentKeyDownMethod = "function" === typeof this._viewComponent.prototype.keyDown;
if (hasComponentDefaultKeyHandlers && !hasComponentKeyDownMethod) {
throw Error("Component's declaration must have 'keyDown' method.")
}
};
_proto._checkContentReadyOption = function(fullName) {
const contentReadyOptions = this._getContentReadyOptions().reduce((options, name) => {
options[name] = true;
return options
}, {});
this._checkContentReadyOption = optionName => !!contentReadyOptions[optionName];
return this._checkContentReadyOption(fullName)
};
_proto._getContentReadyOptions = function() {
return ["rtlEnabled"]
};
_proto._fireContentReady = function() {
this._actionsMap.onContentReady({})
};
_proto._getDefaultOptions = function() {
const viewDefaultProps = this._getViewComponentDefaultProps();
return (0, _extend.extend)(true, _DOMComponent.prototype._getDefaultOptions.call(this), viewDefaultProps, this._propsInfo.twoWay.reduce((options, _ref) => {
let [name, defaultName, eventName] = _ref;
return _extends({}, options, {
[name]: viewDefaultProps[defaultName],
[eventName]: value => this.option(name, value)
})
}, {}), this._propsInfo.templates.reduce((options, name) => _extends({}, options, {
[name]: null
}), {}))
};
_proto._getUnwrappedOption = function() {
const unwrappedProps = {};
Object.keys(this.option()).forEach(key => {
unwrappedProps[key] = this.option(key)
});
return unwrappedProps
};
_proto._initializeComponent = function() {
var _this$_templateManage;
_DOMComponent.prototype._initializeComponent.call(this);
null === (_this$_templateManage = this._templateManager) || void 0 === _this$_templateManage ? void 0 : _this$_templateManage.addDefaultTemplates(this.getDefaultTemplates());
const optionProxy = this._getUnwrappedOption();
this._props = this._optionsWithDefaultTemplates(optionProxy);
this._propsInfo.templates.forEach(template => {
this._componentTemplates[template] = this._createTemplateComponent(this._props[template])
});
Object.keys(this._getActionConfigsFull()).forEach(name => this._addAction(name));
this._viewRef = (0, _inferno.createRef)();
this.defaultKeyHandlers = this._createDefaultKeyHandlers()
};
_proto._initMarkup = function() {
const props = this.getProps();
this._renderWrapper(props)
};
_proto._renderWrapper = function(props) {
const containerNode = this.$element()[0];
if (!this._isNodeReplaced) {
_inferno_renderer.default.onPreRender()
}
_inferno_renderer.default.render(this._viewComponent, props, containerNode, this._isNodeReplaced);
if (!this._isNodeReplaced) {
this._isNodeReplaced = true;
_inferno_renderer.default.onAfterRender();
this._shouldRaiseContentReady = true
}
if (this._shouldRaiseContentReady) {
this._fireContentReady();
this._shouldRaiseContentReady = false
}
};
_proto._silent = function(name, value) {
this._options.silent(name, value)
};
_proto._render = function() {};
_proto._removeWidget = function() {
_inferno_renderer.default.remove(this.$element()[0])
};
_proto._dispose = function() {
this._removeWidget();
_DOMComponent.prototype._dispose.call(this)
};
_proto._getAdditionalActionConfigs = function() {
return {
onContentReady: {
excludeValidators: ["disabled", "readOnly"]
}
}
};
_proto._getAdditionalProps = function() {
return []
};
_proto._patchOptionValues = function(options) {
const {
allowNull: allowNull,
elements: elements,
props: props,
twoWay: twoWay
} = this._propsInfo;
const viewDefaultProps = this._getViewComponentDefaultProps();
const defaultWidgetPropsKeys = Object.keys(viewDefaultProps);
const defaultOptions = this._getDefaultOptions();
const {
children: children,
onKeyboardHandled: onKeyboardHandled,
ref: ref
} = options;
const onKeyDown = onKeyboardHandled ? (_, event_options) => {
onKeyboardHandled(event_options)
} : void 0;
const widgetProps = {
ref: ref,
children: children,
onKeyDown: onKeyDown
};
[...props, ...this._getAdditionalProps()].forEach(propName => {
if (Object.prototype.hasOwnProperty.call(options, propName)) {
widgetProps[propName] = options[propName]
}
});
allowNull.forEach(setDefaultOptionValue(widgetProps, () => null));
defaultWidgetPropsKeys.forEach(setDefaultOptionValue(widgetProps, name => defaultOptions[name]));
twoWay.forEach(_ref2 => {
let [name, defaultName] = _ref2;
setDefaultOptionValue(widgetProps, () => defaultOptions[defaultName])(name)
});
elements.forEach(name => {
if (name in widgetProps) {
const value = widgetProps[name];
if ((0, _type.isRenderer)(value)) {
widgetProps[name] = this._patchElementParam(value)
}
}
});
return widgetProps
};
_proto.getSupportedKeyNames = function() {
return []
};
_proto.prepareStyleProp = function(props) {
if ("string" === typeof props.style) {
return _extends({}, props, {
style: {},
cssText: props.style
})
}
return props
};
_proto.getProps = function() {
var _this$elementAttr$cla, _elementAttr$class;
const {
elementAttr: elementAttr
} = this.option();
const options = this._patchOptionValues(_extends({}, this._props, {
ref: this._viewRef,
children: this._extractDefaultSlot(),
aria: this._aria
}));
this._propsInfo.templates.forEach(template => {
options[template] = this._componentTemplates[template]
});
return this.prepareStyleProp(_extends({}, options, this.elementAttr, elementAttr, {
className: [...(null !== (_this$elementAttr$cla = this.elementAttr.class) && void 0 !== _this$elementAttr$cla ? _this$elementAttr$cla : "").split(" "), ...(null !== (_elementAttr$class = null === elementAttr || void 0 === elementAttr ? void 0 : elementAttr.class) && void 0 !== _elementAttr$class ? _elementAttr$class : "").split(" ")].filter((c, i, a) => c && a.indexOf(c) === i).join(" ").trim(),
class: ""
}, this._actionsMap))
};
_proto._getActionConfigs = function() {
return {}
};
_proto._getActionConfigsFull = function() {
return _extends({}, this._getActionConfigs(), this._getAdditionalActionConfigs())
};
_proto.getDefaultTemplates = function() {
const defaultTemplates = Object.values(this._templatesInfo);
const result = {};
defaultTemplates.forEach(template => {
result[template] = "dx-renovation-template-mock"
});
return result
};
_proto._optionsWithDefaultTemplates = function(options) {
const templateOptions = Object.entries(this._templatesInfo).reduce((result, _ref3) => {
var _options$templateName;
let [templateName, templateValue] = _ref3;
return _extends({}, result, {
[templateName]: null !== (_options$templateName = options[templateName]) && void 0 !== _options$templateName ? _options$templateName : templateValue
})
}, {});
return _extends({}, options, templateOptions)
};
_proto._init = function() {
_DOMComponent.prototype._init.call(this);
this.customKeyHandlers = {};
this._actionsMap = {};
this._aria = {};
this._componentTemplates = {}
};
_proto._createDefaultKeyHandlers = function() {
const result = {};
const keys = this.getSupportedKeyNames();
keys.forEach(key => {
result[key] = e => this.viewRef.keyDown(_keyboard_processor.default.createKeyDownOptions(e))
});
return result
};
_proto._addAction = function(event, actionToAdd) {
let action = actionToAdd;
if (!action) {
const actionByOption = this._createActionByOption(event, this._getActionConfigsFull()[event]);
action = actArgs => {
Object.keys(actArgs).forEach(name => {
if ((0, _type.isDefined)(actArgs[name]) && _dom_adapter.default.isNode(actArgs[name])) {
actArgs[name] = (0, _element.getPublicElement)((0, _renderer.default)(actArgs[name]))
}
});
return actionByOption(actArgs)
}
}
this._actionsMap[event] = action
};
_proto._optionChanged = function(option) {
const {
fullName: fullName,
name: name,
previousValue: previousValue,
value: value
} = option;
(0, _update_props_immutable.updatePropsImmutable)(this._props, this.option(), name, fullName);
if (this._propsInfo.templates.includes(name) && value !== previousValue) {
this._componentTemplates[name] = this._createTemplateComponent(value)
}
if (name && this._getActionConfigsFull()[name]) {
this._addAction(name)
}
this._shouldRaiseContentReady = this._shouldRaiseContentReady || this._checkContentReadyOption(fullName);
_DOMComponent.prototype._optionChanged.call(this, option);
this._invalidate()
};
_proto._extractDefaultSlot = function() {
if (this.option("_hasAnonymousTemplateContent")) {
return _inferno_renderer.default.createElement(_template_wrapper.TemplateWrapper, {
template: this._getTemplate(this._templateManager.anonymousTemplateName),
transclude: true,
renovated: true
})
}
return null
};
_proto._createTemplateComponent = function(templateOption) {
if (!templateOption) {
return
}
const template = this._getTemplate(templateOption);
if ((0, _type.isString)(template) && "dx-renovation-template-mock" === template) {
return
}
return model => _inferno_renderer.default.createElement(_template_wrapper.TemplateWrapper, (0, _template_wrapper.buildTemplateArgs)(model, template))
};
_proto._wrapKeyDownHandler = function(initialHandler) {
return options => {
const {
keyName: keyName,
originalEvent: originalEvent,
which: which
} = options;
const keys = this.customKeyHandlers;
const func = keys[keyName] || keys[which];
if (void 0 !== func) {
const handler = func.bind(this);
const result = handler(originalEvent, options);
if (!result) {
originalEvent.cancel = true;
return originalEvent
}
}
return null === initialHandler || void 0 === initialHandler ? void 0 : initialHandler(originalEvent, options)
}
};
_proto._toPublicElement = function(element) {
return (0, _element.getPublicElement)((0, _renderer.default)(element))
};
_proto._patchElementParam = function(value) {
try {
const result = (0, _renderer.default)(value);
const element = null === result || void 0 === result ? void 0 : result.get(0);
return null !== element && void 0 !== element && element.nodeType ? element : value
} catch (error) {
return value
}
};
_proto.repaint = function() {
this._isNodeReplaced = false;
this._shouldRaiseContentReady = true;
this._removeWidget();
this._refresh()
};
_proto._supportedKeys = function() {
return _extends({}, this.defaultKeyHandlers, this.customKeyHandlers)
};
_proto.registerKeyHandler = function(key, handler) {
this.customKeyHandlers[key] = handler
};
_proto.setAria = function(name, value) {
this._aria[name] = value;
this._initMarkup()
};
_proto._getViewComponentDefaultProps = function() {
return this._viewComponent.defaultProps || {}
};
_createClass(ComponentWrapper, [{
key: "_propsInfo",
get: function() {
return {
allowNull: [],
twoWay: [],
elements: [],
templates: [],
props: []
}
}
}, {
key: "viewRef",
get: function() {
var _this$_viewRef;
return null === (_this$_viewRef = this._viewRef) || void 0 === _this$_viewRef ? void 0 : _this$_viewRef.current
}
}, {
key: "elementAttr",
get: function() {
const element = this.$element()[0];
if (!this._elementAttr) {
const {
attributes: attributes
} = element;
const attrs = Array.from(attributes).filter(attr => {
var _attributes$attr$name;
return !this._propsInfo.templates.includes(attr.name) && (null === (_attributes$attr$name = attributes[attr.name]) || void 0 === _attributes$attr$name ? void 0 : _attributes$attr$name.specified)
}).reduce((result, _ref4) => {
let {
name: name,
value: value
} = _ref4;
const updatedAttributes = result;
const isDomAttr = name in element;
updatedAttributes[name] = "" === value && isDomAttr ? element[name] : value;
return updatedAttributes
}, {});
this._elementAttr = attrs;
this._storedClasses = element.getAttribute("class") || ""
}
const elemStyle = element.style;
const style = {};
for (let i = 0; i < elemStyle.length; i += 1) {
style[elemStyle[i]] = elemStyle.getPropertyValue(elemStyle[i])
}
this._elementAttr.style = style;
this._elementAttr.class = this._storedClasses;
return this._elementAttr
}
}, {
key: "_templatesInfo",
get: function() {
return {}
}
}]);
return ComponentWrapper
}(_dom_component.default);
exports.default = ComponentWrapper;
ComponentWrapper.IS_RENOVATED_WIDGET = false;
ComponentWrapper.IS_RENOVATED_WIDGET = true;
module.exports = exports.default;
module.exports.default = exports.default;