Merge "Don't apply CSS columns if less than 3 results were found on AllPages & Prefix...
[lhc/web/wiklou.git] / resources / src / mediawiki.special / mediawiki.special.preferences.js
1 /*!
2 * JavaScript for Special:Preferences
3 */
4 ( function ( mw, $ ) {
5 $( function () {
6 var $preftoc, $preferences, $fieldsets,
7 hash, labelFunc,
8 $tzSelect, $tzTextbox, $localtimeHolder, servertime,
9 allowCloseWindow, notif;
10
11 labelFunc = function () {
12 return this.id.replace( /^mw-prefsection/g, 'preftab' );
13 };
14
15 $( '#prefsubmit' ).attr( 'id', 'prefcontrol' );
16 $preftoc = $( '#preftoc' );
17 $preferences = $( '#preferences' );
18
19 $fieldsets = $preferences.children( 'fieldset' )
20 .attr( {
21 role: 'tabpanel',
22 'aria-labelledby': labelFunc
23 } );
24 $fieldsets.not( '#mw-prefsection-personal' )
25 .hide()
26 .attr( 'aria-hidden', 'true' );
27
28 // T115692: The following is kept for backwards compatibility with older skins
29 $preferences.addClass( 'jsprefs' );
30 $fieldsets.addClass( 'prefsection' );
31 $fieldsets.children( 'legend' ).addClass( 'mainLegend' );
32
33 // Make sure the accessibility tip is selectable so that screen reader users take notice,
34 // but hide it per default to reduce interface clutter. Also make sure it becomes visible
35 // when selected. Similar to jquery.mw-jump
36 $( '<div>' ).addClass( 'mw-navigation-hint' )
37 .text( mw.msg( 'prefs-tabs-navigation-hint' ) )
38 .attr( 'tabIndex', 0 )
39 .on( 'focus blur', function ( e ) {
40 if ( e.type === 'blur' || e.type === 'focusout' ) {
41 $( this ).css( 'height', '0' );
42 } else {
43 $( this ).css( 'height', 'auto' );
44 }
45 } ).insertBefore( $preftoc );
46
47 /**
48 * It uses document.getElementById for security reasons (HTML injections in $()).
49 *
50 * @ignore
51 * @param {string} name the name of a tab without the prefix ("mw-prefsection-")
52 * @param {string} [mode] A hash will be set according to the current
53 * open section. Set mode 'noHash' to surpress this.
54 */
55 function switchPrefTab( name, mode ) {
56 var $tab, scrollTop;
57 // Handle hash manually to prevent jumping,
58 // therefore save and restore scrollTop to prevent jumping.
59 scrollTop = $( window ).scrollTop();
60 if ( mode !== 'noHash' ) {
61 location.hash = '#mw-prefsection-' + name;
62 }
63 $( window ).scrollTop( scrollTop );
64
65 $preftoc.find( 'li' ).removeClass( 'selected' )
66 .find( 'a' ).attr( {
67 tabIndex: -1,
68 'aria-selected': 'false'
69 } );
70
71 $tab = $( document.getElementById( 'preftab-' + name ) );
72 if ( $tab.length ) {
73 $tab.attr( {
74 tabIndex: 0,
75 'aria-selected': 'true'
76 } )
77 .focus()
78 .parent().addClass( 'selected' );
79
80 $preferences.children( 'fieldset' ).hide().attr( 'aria-hidden', 'true' );
81 $( document.getElementById( 'mw-prefsection-' + name ) ).show().attr( 'aria-hidden', 'false' );
82 }
83 }
84
85 // Check for messageboxes (.successbox, .warningbox, .errorbox) to replace with notifications
86 if ( $( '.mw-preferences-messagebox' ).length ) {
87 // If there is a #mw-preferences-success box and javascript is enabled, use a slick notification instead!
88 if ( $( '#mw-preferences-success' ).length ) {
89 notif = mw.notification.notify( mw.message( 'savedprefs' ), { autoHide: false } );
90 // 'change' event not reliable!
91 $( '#preftoc, .prefsection' ).one( 'change keydown mousedown', function () {
92 if ( notif ) {
93 notif.close();
94 notif = null;
95 }
96 } );
97
98 // Remove now-unnecessary success=1 querystring to prevent reappearance of notification on reload
99 if ( history.replaceState ) {
100 history.replaceState( {}, document.title, location.href.replace( /&?success=1/, '' ) );
101 }
102 }
103 }
104
105 // Enable keyboard users to use left and right keys to switch tabs
106 $preftoc.on( 'keydown', function ( event ) {
107 var keyLeft = 37,
108 keyRight = 39,
109 $el;
110
111 if ( event.keyCode === keyLeft ) {
112 $el = $( '#preftoc li.selected' ).prev().find( 'a' );
113 } else if ( event.keyCode === keyRight ) {
114 $el = $( '#preftoc li.selected' ).next().find( 'a' );
115 } else {
116 return;
117 }
118 if ( $el.length > 0 ) {
119 switchPrefTab( $el.attr( 'href' ).replace( '#mw-prefsection-', '' ) );
120 }
121 } );
122
123 // If we've reloaded the page or followed an open-in-new-window,
124 // make the selected tab visible.
125 hash = location.hash;
126 if ( hash.match( /^#mw-prefsection-[\w\-]+/ ) ) {
127 switchPrefTab( hash.replace( '#mw-prefsection-', '' ) );
128 }
129
130 // In browsers that support the onhashchange event we will not bind click
131 // handlers and instead let the browser do the default behavior (clicking the
132 // <a href="#.."> will naturally set the hash, handled by onhashchange.
133 // But other things that change the hash will also be catched (e.g. using
134 // the Back and Forward browser navigation).
135 // Note the special check for IE "compatibility" mode.
136 if ( 'onhashchange' in window &&
137 ( document.documentMode === undefined || document.documentMode >= 8 )
138 ) {
139 $( window ).on( 'hashchange', function () {
140 var hash = location.hash;
141 if ( hash.match( /^#mw-prefsection-[\w\-]+/ ) ) {
142 switchPrefTab( hash.replace( '#mw-prefsection-', '' ) );
143 } else if ( hash === '' ) {
144 switchPrefTab( 'personal', 'noHash' );
145 }
146 } );
147 // In older browsers we'll bind a click handler as fallback.
148 // We must not have onhashchange *and* the click handlers, other wise
149 // the click handler calls switchPrefTab() which sets the hash value,
150 // which triggers onhashcange and calls switchPrefTab() again.
151 } else {
152 $preftoc.on( 'click', 'li a', function ( e ) {
153 switchPrefTab( $( this ).attr( 'href' ).replace( '#mw-prefsection-', '' ) );
154 e.preventDefault();
155 } );
156 }
157
158 // Timezone functions.
159 // Guesses Timezone from browser and updates fields onchange.
160
161 $tzSelect = $( '#mw-input-wptimecorrection' );
162 $tzTextbox = $( '#mw-input-wptimecorrection-other' );
163 $localtimeHolder = $( '#wpLocalTime' );
164 servertime = parseInt( $( 'input[name="wpServerTime"]' ).val(), 10 );
165
166 function minutesToHours( min ) {
167 var tzHour = Math.floor( Math.abs( min ) / 60 ),
168 tzMin = Math.abs( min ) % 60,
169 tzString = ( ( min >= 0 ) ? '' : '-' ) + ( ( tzHour < 10 ) ? '0' : '' ) + tzHour +
170 ':' + ( ( tzMin < 10 ) ? '0' : '' ) + tzMin;
171 return tzString;
172 }
173
174 function hoursToMinutes( hour ) {
175 var minutes,
176 arr = hour.split( ':' );
177
178 arr[ 0 ] = parseInt( arr[ 0 ], 10 );
179
180 if ( arr.length === 1 ) {
181 // Specification is of the form [-]XX
182 minutes = arr[ 0 ] * 60;
183 } else {
184 // Specification is of the form [-]XX:XX
185 minutes = Math.abs( arr[ 0 ] ) * 60 + parseInt( arr[ 1 ], 10 );
186 if ( arr[ 0 ] < 0 ) {
187 minutes *= -1;
188 }
189 }
190 // Gracefully handle non-numbers.
191 if ( isNaN( minutes ) ) {
192 return 0;
193 } else {
194 return minutes;
195 }
196 }
197
198 function updateTimezoneSelection() {
199 var minuteDiff, localTime,
200 type = $tzSelect.val();
201
202 if ( type === 'guess' ) {
203 // Get browser timezone & fill it in
204 minuteDiff = -( new Date().getTimezoneOffset() );
205 $tzTextbox.val( minutesToHours( minuteDiff ) );
206 $tzSelect.val( 'other' );
207 $tzTextbox.prop( 'disabled', false );
208 } else if ( type === 'other' ) {
209 // Grab data from the textbox, parse it.
210 minuteDiff = hoursToMinutes( $tzTextbox.val() );
211 } else {
212 // Grab data from the $tzSelect value
213 minuteDiff = parseInt( type.split( '|' )[ 1 ], 10 ) || 0;
214 $tzTextbox.val( minutesToHours( minuteDiff ) );
215 }
216
217 // Determine local time from server time and minutes difference, for display.
218 localTime = servertime + minuteDiff;
219
220 // Bring time within the [0,1440) range.
221 localTime = ( ( localTime % 1440 ) + 1440 ) % 1440;
222
223 $localtimeHolder.text( mw.language.convertNumber( minutesToHours( localTime ) ) );
224 }
225
226 if ( $tzSelect.length && $tzTextbox.length ) {
227 $tzSelect.change( updateTimezoneSelection );
228 $tzTextbox.blur( updateTimezoneSelection );
229 updateTimezoneSelection();
230 }
231
232 // Preserve the tab after saving the preferences
233 // Not using cookies, because their deletion results are inconsistent.
234 // Not using jStorage due to its enormous size (for this feature)
235 if ( window.sessionStorage ) {
236 if ( sessionStorage.getItem( 'mediawikiPreferencesTab' ) !== null ) {
237 switchPrefTab( sessionStorage.getItem( 'mediawikiPreferencesTab' ), 'noHash' );
238 }
239 // Deleting the key, the tab states should be reset until we press Save
240 sessionStorage.removeItem( 'mediawikiPreferencesTab' );
241
242 $( '#mw-prefs-form' ).submit( function () {
243 var storageData = $( $preftoc ).find( 'li.selected a' ).attr( 'id' ).replace( 'preftab-', '' );
244 sessionStorage.setItem( 'mediawikiPreferencesTab', storageData );
245 } );
246 }
247
248 // Set up a message to notify users if they try to leave the page without
249 // saving.
250 $( '#mw-prefs-form' ).data( 'origdata', $( '#mw-prefs-form' ).serialize() );
251 allowCloseWindow = mw.confirmCloseWindow( {
252 test: function () {
253 return $( '#mw-prefs-form' ).serialize() !== $( '#mw-prefs-form' ).data( 'origdata' );
254 },
255
256 message: mw.msg( 'prefswarning-warning', mw.msg( 'saveprefs' ) ),
257 namespace: 'prefswarning'
258 } );
259 $( '#mw-prefs-form' ).submit( $.proxy( allowCloseWindow, 'release' ) );
260 $( '#mw-prefs-restoreprefs' ).click( $.proxy( allowCloseWindow, 'release' ) );
261 } );
262 }( mediaWiki, jQuery ) );