![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/libs/absol-full/dist/js/ |
Upload File : |
/*** module: node_modules/absol-form/js/blocks/CBExtendConfig.js ***/ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _inheritComponentClass = _interopRequireDefault(require("../core/inheritComponentClass")); var _BaseBlock = _interopRequireDefault(require("../core/BaseBlock")); var _Assembler = require("../core/Assembler"); var _BaseComponent = _interopRequireDefault(require("../core/BaseComponent")); /*** * @extends BaseBlock * @constructor */ function CBExtendConfig() { _BaseBlock.default.call(this); this.value = undefined; this.configBindingDescriptor = this.createConfigBindingDescriptor(); } (0, _inheritComponentClass.default)(CBExtendConfig, _BaseBlock.default); CBExtendConfig.prototype.tag = 'CBExtendConfig'; CBExtendConfig.prototype.menuIcon = 'span.mdi.mdi-cog-transfer-outline'; /*** * */ CBExtendConfig.prototype.bindConfigToFragment = function () { if (!this.fragment) return; var name = this.attributes.name; if (!name) return; var boundConfig = this.fragment.boundConfig[name]; if (boundConfig === this) return; var descriptor = this.configBindingDescriptor; if (!descriptor) return; var obj = this.fragment.config; Object.assign(descriptor, { enumerable: true, configurable: true }); Object.defineProperty(obj, name, descriptor); this.fragment.boundConfig[name] = this; }; CBExtendConfig.prototype.unbindConfigToFragment = function () { if (!this.fragment) return; var name = this.attributes.name; if (!name) return; var boundConfig = this.fragment.boundConfig[name]; if (boundConfig !== this) return; var obj = this.fragment._config; delete obj[name]; delete this.fragment.boundConfig[name]; }; CBExtendConfig.prototype.attributes.disembark = false; CBExtendConfig.prototype.onAttached = function () { this.bindConfigToFragment(); }; CBExtendConfig.prototype.onDetach = function () { this.unbindConfigToFragment(); }; CBExtendConfig.prototype.createConfigBindingDescriptor = function () { var self = this; return { set: function (value) { if (self.value !== value) { self.value = value; self.pinFire('value'); } }, get: function () { return self.value; } }; }; CBExtendConfig.prototype.pinHandlers.value = { receives: function (value) { if (this.value !== value) { this.value = value; this.pinFire('value'); } }, get: function () { return this.value; } }; _Assembler.AssemblerInstance.addClass(CBExtendConfig); var _default = CBExtendConfig; exports.default = _default;