2020-06-30 22:39:09 +00:00
|
|
|
/**
|
2020-07-09 07:47:27 +00:00
|
|
|
* JavaScript enhancement to the collapsible sidebar.
|
2020-06-30 22:39:09 +00:00
|
|
|
*
|
|
|
|
* The sidebar provides basic show/hide functionality with CSS
|
2020-07-09 07:47:27 +00:00
|
|
|
* but JavaScript is used for progressive enhancements.
|
2020-06-30 22:39:09 +00:00
|
|
|
*
|
2020-07-09 07:47:27 +00:00
|
|
|
* Enhancements include:
|
|
|
|
* - Update `aria-role`s based on expanded/collapsed state.
|
2020-06-30 22:39:09 +00:00
|
|
|
* - Update button icon based on expanded/collapsed state.
|
|
|
|
* - Persist the sidebar state for logged-in users.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @interface MwApiConstructor */
|
|
|
|
/** @interface CheckboxHack */
|
|
|
|
/** @interface MwApi */
|
|
|
|
|
|
|
|
/** @type {CheckboxHack} */ var checkboxHack =
|
|
|
|
require( /** @type {string} */( 'mediawiki.page.ready' ) ).checkboxHack;
|
|
|
|
var SIDEBAR_BUTTON_ID = 'mw-sidebar-button',
|
|
|
|
SIDEBAR_CHECKBOX_ID = 'mw-sidebar-checkbox',
|
|
|
|
SIDEBAR_PREFERENCE_NAME = 'VectorSidebarVisible';
|
|
|
|
|
|
|
|
var debounce = require( /** @type {string} */ ( 'mediawiki.util' ) ).debounce;
|
|
|
|
/** @type {MwApi} */ var api;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Improve the interactivity of the sidebar panel by binding optional checkbox hack enhancements
|
|
|
|
* for focus and `aria-expanded`. Also, flip the icon image on click.
|
|
|
|
*
|
|
|
|
* @param {HTMLElement|null} checkbox
|
|
|
|
* @param {HTMLElement|null} button
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
function initCheckboxHack( checkbox, button ) {
|
|
|
|
if ( checkbox instanceof HTMLInputElement && button ) {
|
|
|
|
checkboxHack.bindToggleOnClick( checkbox, button );
|
|
|
|
checkboxHack.bindUpdateAriaExpandedOnInput( checkbox, button );
|
|
|
|
checkboxHack.updateAriaExpanded( checkbox, button );
|
2020-07-09 20:33:25 +00:00
|
|
|
checkboxHack.bindToggleOnSpaceEnter( checkbox, button );
|
2020-06-30 22:39:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute a debounced API request to save the sidebar user preference.
|
2020-07-09 07:47:27 +00:00
|
|
|
* The request is meant to fire 1000 milliseconds after the last click on
|
2020-06-30 22:39:09 +00:00
|
|
|
* the sidebar button.
|
|
|
|
*
|
|
|
|
* @param {HTMLInputElement} checkbox
|
|
|
|
* @return {any}
|
|
|
|
*/
|
|
|
|
function saveSidebarState( checkbox ) {
|
|
|
|
return debounce( 1000, function () {
|
|
|
|
api = api || new mw.Api();
|
|
|
|
api.saveOption( SIDEBAR_PREFERENCE_NAME, checkbox.checked ? 1 : 0 );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bind the event handler that saves the sidebar state to the click event
|
|
|
|
* on the sidebar button.
|
|
|
|
*
|
|
|
|
* @param {HTMLElement|null} checkbox
|
|
|
|
* @param {HTMLElement|null} button
|
|
|
|
*/
|
|
|
|
function bindSidebarClickEvent( checkbox, button ) {
|
|
|
|
if ( checkbox instanceof HTMLInputElement && button ) {
|
2020-07-09 20:33:25 +00:00
|
|
|
checkbox.addEventListener( 'input', saveSidebarState( checkbox ) );
|
2020-06-30 22:39:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-07-09 07:47:27 +00:00
|
|
|
* Initialize all JavaScript sidebar enhancements.
|
2020-06-30 22:39:09 +00:00
|
|
|
*
|
|
|
|
* @param {Window} window
|
|
|
|
*/
|
|
|
|
function init( window ) {
|
|
|
|
var checkbox = window.document.getElementById( SIDEBAR_CHECKBOX_ID ),
|
|
|
|
button = window.document.getElementById( SIDEBAR_BUTTON_ID );
|
|
|
|
|
|
|
|
initCheckboxHack( checkbox, button );
|
2020-07-15 21:27:09 +00:00
|
|
|
if ( mw.config.get( 'wgUserName' ) && !mw.config.get( 'wgVectorDisableSidebarPersistence' ) ) {
|
2020-06-30 22:39:09 +00:00
|
|
|
bindSidebarClickEvent( checkbox, button );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init: init
|
|
|
|
};
|