![]() 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-acomp/js/Searcher.js ***/ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; require("../css/searcher.css"); var _ACore = _interopRequireDefault(require("../ACore")); var _OOP = _interopRequireDefault(require("absol/src/HTML5/OOP")); var _AElement = _interopRequireDefault(require("absol/src/HTML5/AElement")); var _Icons = require("./Icons"); var _LanguageSystem = _interopRequireDefault(require("absol/src/HTML5/LanguageSystem")); var _ = _ACore.default._; var $ = _ACore.default.$; _ACore.default.creator['find-ico'] = function () { var res = _('<svg class="find" width="100mm" height="100mm" version="1.1" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">' + ' <g transform="matrix(-1 0 0 1 99.478 -193.73)">' + ' <path d="m62.128 199.18c-18.859 0-34.148 15.289-34.148 34.148 0 5.4138 1.26 10.533 3.5026 15.081 0.6886 1.3965 1.4698 2.7392 2.3357 4.02-1.9962 2.1685-31.467 31.596-31.404 33.295 0.21757 5.8346 4.9404 8.7289 9.464 7.855 1.3264-0.25627 30.938-30.639 31.774-31.529 1.3906 0.89633 2.8508 1.6948 4.3702 2.3848 4.2995 1.9526 9.0756 3.04 14.105 3.04 18.859 0 34.147-15.288 34.147-34.147 3e-6 -18.859-15.288-34.148-34.147-34.148zm0.49444 8.2454a26.067 26.067 0 0 1 26.068 26.067 26.067 26.067 0 0 1-26.068 26.068 26.067 26.067 0 0 1-26.067-26.068 26.067 26.067 0 0 1 26.067-26.067z"/>' + ' </g>' + '</svg>'); return res; }; _ACore.default.creator['times-circle-ico'] = function () { var res = _('<svg class="times" width="100mm" height="100mm" version="1.1" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">\ <g transform="translate(0,-197)">\ <path d="m49.979 236.2-14.231-14.231-10.696 10.696 14.257 14.257-14.351 14.351 10.737 10.737 14.292-14.292 14.292 14.292 10.761-10.761-14.257-14.257 14.316-14.316-10.725-10.725zm50.021 10.804a50 50 0 0 1-50 50 50 50 0 0 1-50-50 50 50 0 0 1 50-50 50 50 0 0 1 50 50z" />\ </g>\ </svg>'); return res; }; /** * @extends {AElement} * @constructor */ function SearchTextInput() { var thisSTI = this; this.defineEvent(['change', 'modify', 'stoptyping']); this.eventHandler = _OOP.default.bindFunctions(this, SearchTextInput.eventHandler); this.$button = $('button', this); this.$input = $('input', this); ['keyup', 'keydown', 'focus', 'blur'].forEach(function (evName) { thisSTI.defineEvent(evName); thisSTI.$input.on(evName, function (event) { thisSTI.emit(evName, event, thisSTI); }); }); this.$input.on('change', this.eventHandler.inputChange); this.$input.on('keyup', this.eventHandler.inputKeyUp); this.$button.on('click', function (event) { thisSTI.$input.value = ''; thisSTI.eventHandler.inputKeyUp(event); setTimeout(function () { thisSTI.focus(); }, 50); }); /** * @type {string} * @name value * @memberOf SearchTextInput# */ } SearchTextInput.tag = 'SearchTextInput'.toLowerCase(); SearchTextInput.render = function () { return _({ class: 'absol-search-text-input', child: [{ class: 'absol-search-text-input-container', child: { tag: 'input', attr: { type: 'search', placeholder: _LanguageSystem.default.getText('txt_search') || 'Search...' } } }, { class: 'absol-search-text-button-container', child: { tag: 'button', child: ['find-ico', 'times-circle-ico', { tag: _Icons.SpinnerIco.tag, style: { margin: 0 } }] } }] }); }; SearchTextInput.property = { value: { set: function (value) { value = value || ''; this.$input.value = value; this._lastTextModified = value; if (this.value.length > 0) { this.addClass('searching'); } else { this.removeClass('searching'); } }, get: function () { return this.$input.value; } }, placeholder: { set: function (value) { this.$input.attr('placeholder', value); }, get: function () { return this.$placeholder.getAttribute('placeholder'); } } }; SearchTextInput.property.waiting = { set: function (value) { value = value || false; this._waiting = value; if (value) { this.addClass('as-waiting'); } else { this.removeClass('as-waiting'); } }, get: function () { return this._waiting || false; } }; SearchTextInput.prototype.focus = function () { this.$input.focus(); }; SearchTextInput.prototype.blur = function () { this.$input.blur(); }; SearchTextInput.eventHandler = {}; SearchTextInput.eventHandler.inputChange = function (event) { event.value = this.value; if (typeof this.onchange == 'function') { this.onchange(event, this); } this.emit('change', event); }; SearchTextInput.eventHandler.inputKeyUp = function (event) { if (this._lastTextModified != this.value) { if (this.value.length > 0) { this.addClass('searching'); } else { this.removeClass('searching'); } event.value = this.value; if (typeof this.onchange == 'function') { this.onchange(event, this); } this.emit('modify', event); if (this._updateTimeOut !== undefined) { clearTimeout(this._updateTimeOut); this._updateTimeOut = undefined; } this._updateTimeOut = setTimeout(function () { this.emit('stoptyping', event); }.bind(this), 500); this._lastTextModified = this.value; } }; _ACore.default.creator.searchcrosstextinput = function () { var res = _('searchtextinput', true); return res; }; _ACore.default.creator.searchtextinput = SearchTextInput; var _default = SearchTextInput; exports.default = _default;