PATH:
home
/
lab2454c
/
archswipe.com
/
wp-content
/
plugins
/
elementor
/
assets
/
js
/*! elementor - v3.5.6 - 28-02-2022 */ "use strict"; (self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["text-path"],{ /***/ "../modules/shapes/assets/js/frontend/handlers/text-path.js": /*!******************************************************************!*\ !*** ../modules/shapes/assets/js/frontend/handlers/text-path.js ***! \******************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _utils = __webpack_require__(/*! elementor-frontend/utils/utils */ "../assets/dev/js/frontend/utils/utils.js"); class TextPathHandler extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { pathContainer: '.e-text-path', svg: '.e-text-path > svg' } }; } getDefaultElements() { const { selectors } = this.getSettings(); const element = this.$element[0]; return { widgetWrapper: element, pathContainer: element.querySelector(selectors.pathContainer), svg: element.querySelector(selectors.svg), textPath: element.querySelector(selectors.textPath) }; } /** * Initialize the object. * * @returns {void} */ onInit() { this.elements = this.getDefaultElements(); this.fetchSVG().then(() => { // Generate unique IDs using the wrapper's `data-id`. this.pathId = `e-path-${this.elements.widgetWrapper.dataset.id}`; this.textPathId = `e-text-path-${this.elements.widgetWrapper.dataset.id}`; if (!this.elements.svg) { return; } this.initTextPath(); }); } /** * Fetch & Inject the SVG markup. * * @return {Promise} */ fetchSVG() { const { url } = this.elements.pathContainer.dataset; if (!url || !url.endsWith('.svg')) { return Promise.reject(url); } return fetch(url).then(res => res.text()).then(svg => { this.elements.pathContainer.innerHTML = svg; // Re-initialize the elements, so the SVG tag will be added. this.elements = this.getDefaultElements(); }); } /** * Gets a text offset (relative to the starting point) as a string or int, and set it as percents to the * `startOffset` attribute of the `<textPath>` element. * * @param offset {string|int} The text start offset. * * @returns {void} */ setOffset(offset) { if (!this.elements.textPath) { return; } if (this.isRTL()) { offset = 100 - parseInt(offset); } this.elements.textPath.setAttribute('startOffset', offset + '%'); } /** * Handle element settings changes. * * @param setting {Object} The settings object from the editor. * * @returns {void} */ onElementChange(setting) { const { start_point: startPoint, text } = this.getElementSettings(); switch (setting) { case 'start_point': this.setOffset(startPoint.size); break; case 'text': this.setText(text); break; case 'text_path_direction': this.setOffset(startPoint.size); this.setText(text); break; default: break; } } /** * Attach a unique ID to the `path` element in the SVG, based on the container's ID. * This function selects the first `path` with a `data-path-anchor` attribute, or defaults to the first `path` element. * * @returns {void} */ attachIdToPath() { // Prioritize the custom `data` attribute over the `path` element, and fallback to the first `path`. const path = this.elements.svg.querySelector('[data-path-anchor]') || this.elements.svg.querySelector('path'); path.id = this.pathId; } /** * Initialize & build the SVG markup of the widget using the settings from the panel. * * @returns {void} */ initTextPath() { const { start_point: startPoint } = this.getElementSettings(); const text = this.elements.pathContainer.dataset.text; this.attachIdToPath(); // Generate the `textPath` element with its settings. this.elements.svg.innerHTML += ` <text> <textPath id="${this.textPathId}" href="#${this.pathId}"></textPath> </text> `; // Regenerate the elements object to have access to `this.elements.textPath`. this.elements.textPath = this.elements.svg.querySelector(`#${this.textPathId}`); this.setOffset(startPoint.size); this.setText(text); } /** * Sets the text on the SVG path, including the link (if set) and its properties. * * @param newText {string} The new text to put in the text path. * * @returns {void} */ setText(newText) { var _this$getElementSetti; const { url, is_external: isExternal, nofollow } = (_this$getElementSetti = this.getElementSettings()) === null || _this$getElementSetti === void 0 ? void 0 : _this$getElementSetti.link; const target = isExternal ? '_blank' : '', rel = nofollow ? 'nofollow' : ''; // Add link attributes. if (url) { newText = `<a href="${(0, _utils.escapeHTML)(url)}" rel="${rel}" target="${target}">${(0, _utils.escapeHTML)(newText)}</a>`; } // Set the text. this.elements.textPath.innerHTML = newText; // Remove the cloned element if exists. const existingClone = this.elements.svg.querySelector(`#${this.textPathId}-clone`); if (existingClone) { existingClone.remove(); } // Reverse the text if needed. if (this.shouldReverseText()) { // Keep an invisible selectable copy of original element for better a11y. const clone = this.elements.textPath.cloneNode(); clone.id += '-clone'; clone.classList.add('elementor-hidden'); clone.textContent = newText; this.elements.textPath.parentNode.appendChild(clone); this.reverseToRTL(); } } /** * Determine if the text direction of the widget should be RTL or not, based on the site direction and the widget's settings. * * @returns {boolean} */ isRTL() { const { text_path_direction: direction } = this.getElementSettings(); let isRTL = elementorFrontend.config.is_rtl; if (direction) { isRTL = 'rtl' === direction; } return isRTL; } /** * Determine if it should RTL the text (reversing it, etc.). * * @returns {boolean} */ shouldReverseText() { return this.isRTL() && -1 === navigator.userAgent.indexOf('Firefox'); } /** * Reverse the text path to support RTL. * * @returns {void} */ reverseToRTL() { // Make sure to use the inner `a` tag if exists. let parentElement = this.elements.textPath; parentElement = parentElement.querySelector('a') || parentElement; // Catch all RTL chars and reverse their order. const pattern = /([\u0591-\u07FF\u200F\u202B\u202E\uFB1D-\uFDFD\uFE70-\uFEFC\s$&+,:;=?@#|'<>.^*()%!-]+)/ig; // Reverse the text. parentElement.textContent = parentElement.textContent.replace(pattern, word => { return word.split('').reverse().join(''); }); // Add a11y attributes. parentElement.setAttribute('aria-hidden', true); } } exports["default"] = TextPathHandler; /***/ }) }]); //# sourceMappingURL=text-path.15d47ed8e5e3031f9610.bundle.js.map
[-] frontend.min.js
[edit]
[-] accordion.b68e6c976682017e4ff2.bundle.min.js
[edit]
[-] editor.js
[edit]
[-] image-carousel.69ddd4d316491de45fe3.bundle.js
[edit]
[-] alert.cbc2a0fee74ee3ed0419.bundle.min.js
[edit]
[-] admin-feedback.min.js
[edit]
[-] 08d1cbe58c0b0bcb962d.bundle.js
[edit]
[-] kit-library.7bad398eee7cff3ed84e.bundle.min.js
[edit]
[-] frontend.js
[edit]
[-] text-editor.533215eb763ebfb3a70c.bundle.js
[edit]
[-] progress.ca55d33bb06cee4e6f02.bundle.min.js
[edit]
[-] admin-top-bar.min.js
[edit]
[+]
..
[-] admin.js
[edit]
[-] text-path.9f18ebdea5ac00d653e5.bundle.min.js
[edit]
[-] admin-top-bar.js
[edit]
[-] editor-modules.min.js
[edit]
[-] gutenberg.min.js
[edit]
[-] app.min.js
[edit]
[-] app.js
[edit]
[-] preloaded-modules.min.js
[edit]
[-] preloaded-modules.js
[edit]
[-] gutenberg.js
[edit]
[-] editor-document.js
[edit]
[-] app-packages.js
[edit]
[-] text-editor.289ae80d76f0c5abea44.bundle.min.js
[edit]
[-] common.min.js
[edit]
[-] toggle.ac82dafbd4b75739bfe6.bundle.min.js
[edit]
[-] common-modules.min.js
[edit]
[-] common-modules.js
[edit]
[-] frontend-modules.min.js
[edit]
[-] common.js
[edit]
[-] new-template.min.js
[edit]
[-] app-loader.js
[edit]
[-] kit-library.79bbce90dedf8ef30a5c.bundle.js
[edit]
[-] editor.min.js
[edit]
[-] progress.62211c8098d91fc19c5f.bundle.js
[edit]
[-] elementor-admin-bar.js
[edit]
[-] video.7eb6cacb5dcc1e3e8551.bundle.js
[edit]
[-] image-carousel.bd7aab19c9d934b7c505.bundle.min.js
[edit]
[-] elementor-admin-bar.min.js
[edit]
[-] frontend-modules.js
[edit]
[-] webpack.runtime.min.js
[edit]
[-] app-loader.min.js
[edit]
[-] video.1a44ef088849d6949ada.bundle.min.js
[edit]
[-] webpack.runtime.js
[edit]
[-] editor-modules.js
[edit]
[-] lightbox.2b2c155d6ec60974d8c4.bundle.min.js
[edit]
[-] counter.02cef29c589e742d4c8c.bundle.min.js
[edit]
[-] tabs.dd06203f51f30e1494d2.bundle.js
[edit]
[-] new-template.js
[edit]
[-] app.min.js.LICENSE.txt
[edit]
[-] admin-feedback.js
[edit]
[-] .htaccess
[edit]
[-] editor-document.min.js
[edit]
[-] beta-tester.js
[edit]
[-] alert.85332a4bfb582d516461.bundle.js
[edit]
[-] text-path.15d47ed8e5e3031f9610.bundle.js
[edit]
[-] app-packages.min.js
[edit]
[-] accordion.d2a56deea36e79f3c000.bundle.js
[edit]
[-] toggle.720329fccfaf33458a48.bundle.js
[edit]
[-] admin.min.js
[edit]
[-] ca765d3d36b3dc8d6a1b.bundle.min.js
[edit]
[-] wp-audio.8d458e51b4543ed99c04.bundle.js
[edit]
[-] tabs.49f0a48abbd6fc4749fb.bundle.min.js
[edit]
[-] counter.c75eea9549b9f8026ad8.bundle.js
[edit]
[-] wp-audio.75f0ced143febb8cd31a.bundle.min.js
[edit]
[-] beta-tester.min.js
[edit]
[-] lightbox.fe7d7981b2527f42f605.bundle.js
[edit]