File manager - Edit - /home/vblioqus/unfreezetiktok.com/wp-content/plugins/hummingbird-performance/_src/js/modules/admin-settings.js
Back
/* global WPHB_Admin */ /* global wphbMixPanel */ import Fetcher from '../utils/fetcher'; import { getLink } from '../utils/helpers'; ( function( $ ) { 'use strict'; WPHB_Admin.settings = { module: 'settings', init() { const body = $( 'body' ); const wrap = body.find( '.wrap-wphb-settings' ); // Save settings $( '.sui-box-footer' ).on( 'click', 'button.sui-button-blue', function( e ) { e.preventDefault(); const form_data = body.find( '.settings-frm' ).serialize(); const contrastDiv = $( '#color_accessible' ); if ( contrastDiv.length ) { if ( contrastDiv.is( ':checked' ) ) { wrap.addClass( 'sui-color-accessible' ); } else { wrap.removeClass( 'sui-color-accessible' ); } } /** * Opt in to tracking. * * @since 2.5.0 */ const tracking = document.getElementById( 'tracking' ); Fetcher.settings.saveSettings( form_data ).then( ( response ) => { WPHB_Admin.notices.show(); } ); return false; } ); /** * Parse remove settings change. */ $( 'input[name=remove_settings]' ).on( 'change', function( e ) { const otherClass = 'remove_settings-false' === e.target.id ? 'remove_settings-true' : 'remove_settings-false'; e.target.parentNode.classList.add( 'active' ); document .getElementById( otherClass ) .parentNode.classList.remove( 'active' ); } ); /** * Parse remove data change. */ $( 'input[name=remove_data]' ).on( 'change', function( e ) { const otherClass = 'remove_data-false' === e.target.id ? 'remove_data-true' : 'remove_data-false'; e.target.parentNode.classList.add( 'active' ); document .getElementById( otherClass ) .parentNode.classList.remove( 'active' ); } ); /** * Handle import file change. * * @since 2.6.0 */ $( '#wphb-import-file-input' ).on( 'change', function() { const elm = $( this )[ 0 ]; if ( elm.files.length ) { const file = elm.files[ 0 ]; $( '#wphb-import-file-name' ).text( file.name ); $( '#wphb-import-upload-wrap' ).addClass( 'sui-has_file' ); $( '#wphb-import-btn' ).removeAttr( 'disabled' ); } else { $( '#wphb-import-file-name' ).text( '' ); $( '#wphb-import-upload-wrap' ).removeClass( 'sui-has_file' ); $( '#wphb-import-btn' ).attr( 'disabled', 'disabled' ); } } ); /** * Handle import file remove button. * * @since 2.6.0 */ $( '#wphb-import-remove-file' ).on( 'click', function() { $( '#wphb-import-file-input' ).val( '' ).trigger( 'change' ); } ); /** * Handle import button click. * * @since 2.6.0 */ $( '#wphb-begin-import-btn' ).on( 'click', function( e ) { e.preventDefault(); $( this ) .attr( 'disabled', 'disabled' ) .addClass( 'sui-button-onload-text' ); const removeFileBtn = $( '#wphb-import-remove-file' ); removeFileBtn.attr( 'disabled', 'disabled' ); const fileEl = $( '#wphb-import-file-input' )[ 0 ]; if ( 0 === fileEl.files.length ) { return false; } const formData = new FormData(); formData.append( 'settings_json_file', fileEl.files[ 0 ], fileEl.files[ 0 ].name ); Fetcher.settings .importSettings( formData ) .then( ( response ) => { WPHB_Admin.notices.show( response.message ); removeFileBtn.trigger( 'click' ); } ) .catch( ( error ) => { WPHB_Admin.notices.show( error, 'error' ); } ) .finally( () => { $( '#wphb-begin-import-btn' ) .removeAttr( 'disabled' ) .removeClass( 'sui-button-onload-text' ); removeFileBtn.removeAttr( 'disabled' ); window.SUI.closeModal(); } ); } ); /** * Handle export button click. * * @since 2.6.0 */ $( '#wphb-export-btn' ).on( 'click', function( e ) { e.preventDefault(); Fetcher.settings.exportSettings(); } ); /** * Show/hide options for admin bar cache control. * * @since 3.0.1 */ $( 'input[id="control"]' ).on( 'change', function() { $( '.cache-control-options' ).toggle(); } ); $( '#cancel-disconnect' ).on( 'click', function() { WPHB_Admin.settings.disconnectEvents( 'cancel' ); } ); $( '#wphb-disconnect-modal-wrapper' ).on( 'click', function( e ) { if ( e.target.classList?.contains( 'sui-modal-overlay' ) ) { WPHB_Admin.settings.disconnectEvents( 'skip' ); } } ); return this; }, /** * Parse confirm settings reset from the modal. * * @since 2.0.0 */ confirmReset: () => { Fetcher.common.call( 'wphb_reset_settings' ).then( () => { Fetcher.common.call( 'wphb_redis_disconnect' ); window.location.href = getLink( 'resetSettings' ); } ); }, /** * Track disconnect events. * * @param {string} actionType The action type. * @since 3.18.0 */ disconnectEvents: ( actionType = 'submit' ) => { if ( window.wphbMixPanel ) { if ( 'submit' !== actionType && ! wphb.mixpanel.enabled ) { return; } const reasonInput = document.getElementById( 'wphb-disconnect-reason-input' ); const reason = reasonInput && reasonInput.value ? reasonInput.value : 'na'; wphbMixPanel.track( 'Disconnect Site', { 'Modal Action': actionType, Message: reason, 'Tracking Status': ( 'undefined' === typeof wphb.mixpanel || wphb.mixpanel.enabled ) ? 'opted_in' : 'opted_out', }, ( 'submit' === actionType ) ? true : false, ); } }, /** * Parse confirm disconnect site from the modal. * * @param {HTMLElement} btn The button that triggered the action. * @since 3.15.0 */ confirmDisconnectSite: ( btn ) => { if ( btn ) { btn.classList.add( 'sui-button-onload-text' ); } WPHB_Admin.settings.disconnectEvents(); Fetcher.common.call( 'wphb_disconnect_site' ).then( ( response ) => { WPHB_Admin.notices.show( response.message ); setTimeout( () => { window.location.reload(); }, 2000 ); } ); }, }; }( jQuery ) );
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings