| 1 |
/** |
| 2 |
* JavaScript code for the CodeMirror handling on the "Options" screen. |
| 3 |
* |
| 4 |
* @package TablePress |
| 5 |
* @subpackage Views JavaScript |
| 6 |
* @author Tobias Bäthge |
| 7 |
* @since 1.9.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
/* globals tp, wp */ |
| 11 |
|
| 12 |
/* jshint strict: global */ |
| 13 |
'use strict'; // Necessary as this file does not use "import". |
| 14 |
|
| 15 |
// Ensure the global `tp` object exists. |
| 16 |
window.tp = window.tp || {}; |
| 17 |
|
| 18 |
document.addEventListener( 'DOMContentLoaded', () => { |
| 19 |
|
| 20 |
/** |
| 21 |
* Invoke CodeMirror on the "Custom CSS" textarea. |
| 22 |
* |
| 23 |
* @since 1.9.0 |
| 24 |
*/ |
| 25 |
tp.CM_custom_css = wp.codeEditor.initialize( 'option-custom-css', {} ).codemirror; |
| 26 |
const $CM_wrapper = tp.CM_custom_css.getWrapperElement(); |
| 27 |
|
| 28 |
/** |
| 29 |
* Let CodeMirror textarea grow on first focus (with mouse click), if it is not disabled. |
| 30 |
* |
| 31 |
* @since 1.0.0 |
| 32 |
*/ |
| 33 |
const CM_wrapper_mousedown_handler = function () { |
| 34 |
if ( ! this.classList.contains( 'disabled' ) ) { |
| 35 |
this.classList.add( 'large' ); |
| 36 |
tp.CM_custom_css.refresh(); |
| 37 |
this.removeEventListener( 'mousedown', CM_wrapper_mousedown_handler ); // No need to keep checking for clicks after the textarea height was increased. |
| 38 |
} |
| 39 |
}; |
| 40 |
$CM_wrapper.addEventListener( 'mousedown', CM_wrapper_mousedown_handler ); |
| 41 |
|
| 42 |
/** |
| 43 |
* Enable/disable CodeMirror according to state of "Load Custom CSS" checkbox. |
| 44 |
* |
| 45 |
* @since 1.0.0 |
| 46 |
*/ |
| 47 |
const $cb_use_custom_css = document.getElementById( 'option-use-custom-css' ); |
| 48 |
$cb_use_custom_css.addEventListener( 'change', function () { |
| 49 |
tp.CM_custom_css.setOption( 'readOnly', ! this.checked ); |
| 50 |
$CM_wrapper.classList.toggle( 'disabled', ! this.checked ); |
| 51 |
} ); |
| 52 |
$cb_use_custom_css.dispatchEvent( new Event( 'change' ) ); |
| 53 |
|
| 54 |
} ); |
| 55 |
|