Merge "resourceloader: Simplify StringSet fallback"
[lhc/web/wiklou.git] / resources / src / startup / startup.js
1 /**
2 * This file is where we decide whether to initialise the Grade A run-time.
3 *
4 * - Beware: This file MUST parse without errors on even the most ancient of browsers!
5 */
6 /* eslint-disable no-implicit-globals, vars-on-top, no-unmodified-loop-condition */
7 /* global $VARS, $CODE */
8
9 /**
10 * See <https://www.mediawiki.org/wiki/Compatibility#Browsers>
11 *
12 * Capabilities required for modern run-time:
13 * - ECMAScript 5
14 * - DOM Level 4 & Selectors API Level 1
15 * - HTML5 & Web Storage
16 * - DOM Level 2 Events
17 *
18 * Browsers we support in our modern run-time (Grade A):
19 * - Chrome 13+
20 * - IE 11+
21 * - Firefox 4+
22 * - Safari 5+
23 * - Opera 15+
24 * - Mobile Safari 6.0+ (iOS 6+)
25 * - Android 4.1+
26 *
27 * Browsers we support in our no-javascript run-time (Grade C):
28 * - Chrome 1+
29 * - IE 6+
30 * - Firefox 3+
31 * - Safari 3+
32 * - Opera 15+
33 * - Mobile Safari 5.0+ (iOS 4+)
34 * - Android 2.0+
35 * - WebOS < 1.5
36 * - PlayStation
37 * - Symbian-based browsers
38 * - NetFront-based browser
39 * - Opera Mini
40 * - Nokia's Ovi Browser
41 * - MeeGo's browser
42 * - Google Glass
43 * - UC Mini (speed mode on)
44 *
45 * Other browsers that pass the check are considered Grade X.
46 *
47 * @param {string} [str] User agent, defaults to navigator.userAgent
48 * @return {boolean} User agent is compatible with MediaWiki JS
49 */
50 function isCompatible( str ) {
51 var ua = str || navigator.userAgent;
52 return !!(
53 // https://caniuse.com/#feat=es5
54 // https://caniuse.com/#feat=use-strict
55 // https://caniuse.com/#feat=json / https://phabricator.wikimedia.org/T141344#2784065
56 ( function () {
57 'use strict';
58 return !this && Function.prototype.bind && window.JSON;
59 }() ) &&
60
61 // https://caniuse.com/#feat=queryselector
62 'querySelector' in document &&
63
64 // https://caniuse.com/#feat=namevalue-storage
65 // https://developer.blackberry.com/html5/apis/v1_0/localstorage.html
66 // https://blog.whatwg.org/this-week-in-html-5-episode-30
67 'localStorage' in window &&
68
69 // https://caniuse.com/#feat=addeventlistener
70 'addEventListener' in window &&
71
72 // Hardcoded exceptions for browsers that pass the requirement but we don't want to
73 // support in the modern run-time.
74 // Note: Please extend the regex instead of adding new ones
75 !ua.match( /MSIE 10|webOS\/1\.[0-4]|SymbianOS|Series60|NetFront|Opera Mini|S40OviBrowser|MeeGo|Android.+Glass|^Mozilla\/5\.0 .+ Gecko\/$|googleweblight|PLAYSTATION|PlayStation/ )
76 );
77 }
78
79 if ( !isCompatible() ) {
80 // Handle Grade C
81 // Undo speculative Grade A <html> class. See ResourceLoaderClientHtml::getDocumentAttributes().
82 document.documentElement.className = document.documentElement.className
83 .replace( /(^|\s)client-js(\s|$)/, '$1client-nojs$2' );
84
85 // Process any callbacks for Grade C
86 while ( window.NORLQ && window.NORLQ[ 0 ] ) {
87 window.NORLQ.shift()();
88 }
89 window.NORLQ = {
90 push: function ( fn ) {
91 fn();
92 }
93 };
94
95 // Clear and disable the Grade A queue
96 window.RLQ = {
97 push: function () {}
98 };
99 } else {
100 // Handle Grade A
101
102 if ( window.performance && performance.mark ) {
103 performance.mark( 'mwStartup' );
104 }
105
106 // This embeds mediawiki.js, which defines 'mw' and 'mw.loader'.
107 $CODE.defineLoader();
108
109 /**
110 * The $CODE and $VARS placeholders are substituted in ResourceLoaderStartUpModule.php.
111 */
112 ( function () {
113 /* global mw */
114 mw.config = new mw.Map( $VARS.wgLegacyJavaScriptGlobals );
115
116 $CODE.registrations();
117
118 mw.config.set( $VARS.configuration );
119
120 // Process callbacks for Grade A
121 // Must be after registrations and mw.config.set, which mw.loader depends on.
122 var queue = window.RLQ;
123 // Redefine push(), but keep type as array for storing callbacks that require modules.
124 window.RLQ = [];
125 /* global RLQ */
126 RLQ.push = function ( fn ) {
127 if ( typeof fn === 'function' ) {
128 fn();
129 } else {
130 // This callback requires a module, handled in mediawiki.base.
131 RLQ[ RLQ.length ] = fn;
132 }
133 };
134 while ( queue && queue[ 0 ] ) {
135 // Re-use our push()
136 RLQ.push( queue.shift() );
137 }
138
139 // Clear and disable the Grade C queue
140 window.NORLQ = {
141 push: function () {}
142 };
143 }() );
144 }