2020-06-30 22:39:09 +00:00
|
|
|
var collapsibleTabs = require( '../skins.vector.legacy.js/collapsibleTabs.js' ),
|
|
|
|
vector = require( '../skins.vector.legacy.js/vector.js' ),
|
2021-03-01 21:32:25 +00:00
|
|
|
languageButton = require( './languageButton.js' ),
|
2020-08-04 12:02:50 +00:00
|
|
|
initSearchLoader = require( './searchLoader.js' ).initSearchLoader,
|
2021-02-24 23:30:16 +00:00
|
|
|
dropdownMenus = require( './dropdownMenus.js' ),
|
2020-06-30 22:39:09 +00:00
|
|
|
sidebar = require( './sidebar.js' );
|
2020-04-10 15:24:13 +00:00
|
|
|
|
2020-05-28 20:19:06 +00:00
|
|
|
/**
|
|
|
|
* Wait for first paint before calling this function. That's its whole purpose.
|
|
|
|
*
|
|
|
|
* Some CSS animations and transitions are "disabled" by default as a workaround to this old Chrome
|
|
|
|
* bug, https://bugs.chromium.org/p/chromium/issues/detail?id=332189, which otherwise causes them to
|
|
|
|
* render in their terminal state on page load. By adding the `vector-animations-ready` class to the
|
|
|
|
* `html` root element **after** first paint, the animation selectors suddenly match causing the
|
|
|
|
* animations to become "enabled" when they will work properly. A similar pattern is used in Minerva
|
|
|
|
* (see T234570#5779890, T246419).
|
|
|
|
*
|
|
|
|
* Example usage in Less:
|
|
|
|
*
|
|
|
|
* ```less
|
|
|
|
* .foo {
|
|
|
|
* color: #f00;
|
|
|
|
* .transform( translateX( -100% ) );
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* // This transition will be disabled initially for JavaScript users. It will never be enabled for
|
|
|
|
* // no-JS users.
|
|
|
|
* .vector-animations-ready .foo {
|
|
|
|
* .transition( transform 100ms ease-out; );
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @param {Document} document
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
function enableCssAnimations( document ) {
|
|
|
|
document.documentElement.classList.add( 'vector-animations-ready' );
|
|
|
|
}
|
|
|
|
|
2020-03-30 20:07:35 +00:00
|
|
|
/**
|
|
|
|
* @param {Window} window
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
function main( window ) {
|
2021-03-17 23:04:42 +00:00
|
|
|
var now = mw.now();
|
|
|
|
// This is the earliest time we can run JS for users (and bucket anonymous
|
|
|
|
// users for A/B tests).
|
|
|
|
// Where the browser supports it, for a 10% sample of users
|
|
|
|
// we record a value to give us a sense of the expected delay in running A/B tests or
|
|
|
|
// disabling JS features. This will inform us on various things including what to expect
|
|
|
|
// with regards to delay while running A/B tests to anonymous users.
|
|
|
|
// When EventLogging is not available this will reject.
|
|
|
|
// This code can be removed by the end of the Desktop improvements project.
|
|
|
|
// https://www.mediawiki.org/wiki/Desktop_improvements
|
|
|
|
mw.loader.using( 'ext.eventLogging' ).then( function () {
|
|
|
|
if (
|
|
|
|
mw.eventLog &&
|
|
|
|
mw.eventLog.eventInSample( 100 /* 1 in 100 */ ) &&
|
|
|
|
window.performance &&
|
|
|
|
window.performance.timing &&
|
|
|
|
window.performance.timing.navigationStart
|
|
|
|
) {
|
|
|
|
mw.track( 'timing.Vector.ready', now - window.performance.timing.navigationStart ); // milliseconds
|
|
|
|
}
|
|
|
|
} );
|
2020-05-28 20:19:06 +00:00
|
|
|
enableCssAnimations( window.document );
|
2020-04-10 15:24:13 +00:00
|
|
|
collapsibleTabs.init();
|
2020-06-30 22:39:09 +00:00
|
|
|
sidebar.init( window );
|
2021-02-24 23:30:16 +00:00
|
|
|
dropdownMenus();
|
2020-04-10 15:24:13 +00:00
|
|
|
$( vector.init );
|
2020-08-04 12:02:50 +00:00
|
|
|
initSearchLoader( document );
|
2021-03-01 21:32:25 +00:00
|
|
|
languageButton();
|
2020-04-10 15:24:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 20:07:35 +00:00
|
|
|
main( window );
|