You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB

/**
* JavaScript code for the "Options" screen, without the CodeMirror handling.
*
* @package TablePress
* @subpackage Views JavaScript
* @author Tobias Bäthge
* @since 1.0.0
*/
/* globals confirm */
/**
* WordPress dependencies.
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies.
*/
import { $ } from './common/functions';
import { register_save_changes_keyboard_shortcut } from './common/keyboard-shortcut';
/**
* Enable/disable the regular textarea according to state of "Load Custom CSS" checkbox.
*
* @since 1.0.0
*/
const $cb_use_custom_css = $( '#option-use-custom-css' );
if ( $cb_use_custom_css ) { // The checkbox field only exists for admins!
$cb_use_custom_css.addEventListener( 'change', function () {
$( '#option-custom-css' ).disabled = ! this.checked;
} );
$cb_use_custom_css.dispatchEvent( new Event( 'change' ) );
}
/**
* On form submit: Enable disabled fields, so that they are sent in the HTTP POST request.
*
* @since 1.0.0
*/
document.querySelector( '#tablepress-page form' ).addEventListener( 'submit', function () {
this.querySelectorAll( ':scope input, :scope select, :scope textarea' ).forEach( ( field ) => ( field.disabled = false ) );
} );
register_save_changes_keyboard_shortcut( $( '#tablepress-options-save-changes' ) );
/**
* Require double confirmation when wanting to uninstall TablePress.
*
* @since 1.0.0
*/
$( '#uninstall-tablepress' ).addEventListener( 'click', ( event ) => {
if (
! confirm( __( 'Do you really want to uninstall TablePress and delete ALL data?', 'tablepress' ) ) ||
! confirm( __( 'Are you really sure?', 'tablepress' ) )
) {
event.preventDefault();
}
} );