Merge "Add preference for watching uploaded files"
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.searchSuggest.js
1 /*!
2 * Add search suggestions to the search form.
3 */
4 ( function ( mw, $ ) {
5 mw.searchSuggest = {
6 // queries the wiki and calls response with the result
7 request: function ( api, query, response, maxRows ) {
8 return api.get( {
9 formatversion: 2,
10 action: 'opensearch',
11 search: query,
12 namespace: 0,
13 limit: maxRows,
14 suggest: true
15 } ).done( function ( data, jqXHR ) {
16 response( data[ 1 ], {
17 type: jqXHR.getResponseHeader( 'X-OpenSearch-Type' ),
18 query: query
19 } );
20 } );
21 }
22 };
23
24 $( function () {
25 var api, map, searchboxesSelectors,
26 // Region where the suggestions box will appear directly below
27 // (using the same width). Can be a container element or the input
28 // itself, depending on what suits best in the environment.
29 // For Vector the suggestion box should align with the simpleSearch
30 // container's borders, in other skins it should align with the input
31 // element (not the search form, as that would leave the buttons
32 // vertically between the input and the suggestions).
33 $searchRegion = $( '#simpleSearch, #searchInput' ).first(),
34 $searchInput = $( '#searchInput' ),
35 previousSearchText = $searchInput.val();
36
37 // Compatibility map
38 map = {
39 // SimpleSearch is broken in Opera < 9.6
40 opera: [ [ '>=', 9.6 ] ],
41 // Older Konquerors are unable to position the suggestions correctly (bug 50805)
42 konqueror: [ [ '>=', '4.11' ] ],
43 docomo: false,
44 blackberry: false,
45 // Support for iOS 6 or higher. It has not been tested on iOS 5 or lower
46 ipod: [ [ '>=', 6 ] ],
47 iphone: [ [ '>=', 6 ] ]
48 };
49
50 if ( !$.client.test( map ) ) {
51 return;
52 }
53
54 // Compute form data for search suggestions functionality.
55 function getFormData( context ) {
56 var $form, baseHref, linkParams;
57
58 if ( !context.formData ) {
59 // Compute common parameters for links' hrefs
60 $form = context.config.$region.closest( 'form' );
61
62 baseHref = $form.attr( 'action' );
63 baseHref += baseHref.indexOf( '?' ) > -1 ? '&' : '?';
64
65 linkParams = $form.serializeObject();
66
67 context.formData = {
68 textParam: context.data.$textbox.attr( 'name' ),
69 linkParams: linkParams,
70 baseHref: baseHref
71 };
72 }
73
74 return context.formData;
75 }
76
77 /**
78 * Callback that's run when the user changes the search input text
79 * 'this' is the search input box (jQuery object)
80 *
81 * @ignore
82 */
83 function onBeforeUpdate() {
84 var searchText = this.val();
85
86 if ( searchText && searchText !== previousSearchText ) {
87 mw.track( 'mediawiki.searchSuggest', {
88 action: 'session-start'
89 } );
90 }
91 previousSearchText = searchText;
92 }
93
94 /**
95 * defines the location of autocomplete. Typically either
96 * header, which is in the top right of vector (for example)
97 * and content which identifies the main search bar on
98 * Special:Search. Defaults to header for skins that don't set
99 * explicitly.
100 *
101 * @ignore
102 */
103 function getInputLocation( context ) {
104 return context.config.$region
105 .closest( 'form' )
106 .find( '[data-search-loc]' )
107 .data( 'search-loc' ) || 'header';
108 }
109
110 /**
111 * Callback that's run when suggestions have been updated either from the cache or the API
112 * 'this' is the search input box (jQuery object)
113 *
114 * @ignore
115 */
116 function onAfterUpdate( metadata ) {
117 var context = this.data( 'suggestionsContext' );
118
119 mw.track( 'mediawiki.searchSuggest', {
120 action: 'impression-results',
121 numberOfResults: context.config.suggestions.length,
122 resultSetType: metadata.type || 'unknown',
123 query: metadata.query,
124 inputLocation: getInputLocation( context )
125 } );
126 }
127
128 // The function used to render the suggestions.
129 function renderFunction( text, context ) {
130 var formData = getFormData( context ),
131 textboxConfig = context.data.$textbox.data( 'mw-searchsuggest' ) || {};
132
133 // linkParams object is modified and reused
134 formData.linkParams[ formData.textParam ] = text;
135
136 // Allow trackers to attach tracking information, such
137 // as wprov, to clicked links.
138 mw.track( 'mediawiki.searchSuggest', {
139 action: 'render-one',
140 formData: formData,
141 index: context.config.suggestions.indexOf( text ) + 1
142 } );
143
144 // this is the container <div>, jQueryfied
145 this.text( text );
146
147 // wrap only as link, if the config doesn't disallow it
148 if ( textboxConfig.wrapAsLink !== false ) {
149 this.wrap(
150 $( '<a>' )
151 .attr( 'href', formData.baseHref + $.param( formData.linkParams ) )
152 .attr( 'title', text )
153 .addClass( 'mw-searchSuggest-link' )
154 );
155 }
156 }
157
158 // The function used when the user makes a selection
159 function selectFunction( $input ) {
160 var context = $input.data( 'suggestionsContext' ),
161 text = $input.val();
162
163 mw.track( 'mediawiki.searchSuggest', {
164 action: 'click-result',
165 numberOfResults: context.config.suggestions.length,
166 clickIndex: context.config.suggestions.indexOf( text ) + 1
167 } );
168
169 // allow the form to be submitted
170 return true;
171 }
172
173 function specialRenderFunction( query, context ) {
174 var $el = this,
175 formData = getFormData( context );
176
177 // linkParams object is modified and reused
178 formData.linkParams[ formData.textParam ] = query;
179
180 if ( $el.children().length === 0 ) {
181 $el
182 .append(
183 $( '<div>' )
184 .addClass( 'special-label' )
185 .text( mw.msg( 'searchsuggest-containing' ) ),
186 $( '<div>' )
187 .addClass( 'special-query' )
188 .text( query )
189 )
190 .show();
191 } else {
192 $el.find( '.special-query' )
193 .text( query );
194 }
195
196 if ( $el.parent().hasClass( 'mw-searchSuggest-link' ) ) {
197 $el.parent().attr( 'href', formData.baseHref + $.param( formData.linkParams ) + '&fulltext=1' );
198 } else {
199 $el.wrap(
200 $( '<a>' )
201 .attr( 'href', formData.baseHref + $.param( formData.linkParams ) + '&fulltext=1' )
202 .addClass( 'mw-searchSuggest-link' )
203 );
204 }
205 }
206
207 // Generic suggestions functionality for all search boxes
208 searchboxesSelectors = [
209 // Primary searchbox on every page in standard skins
210 '#searchInput',
211 // Generic selector for skins with multiple searchboxes (used by CologneBlue)
212 // and for MediaWiki itself (special pages with page title inputs)
213 '.mw-searchInput'
214 ];
215 $( searchboxesSelectors.join( ', ' ) )
216 .suggestions( {
217 fetch: function ( query, response, maxRows ) {
218 var node = this[ 0 ];
219
220 api = api || new mw.Api();
221
222 $.data( node, 'request', mw.searchSuggest.request( api, query, response, maxRows ) );
223 },
224 cancel: function () {
225 var node = this[ 0 ],
226 request = $.data( node, 'request' );
227
228 if ( request ) {
229 request.abort();
230 $.removeData( node, 'request' );
231 }
232 },
233 result: {
234 render: renderFunction,
235 select: function () {
236 // allow the form to be submitted
237 return true;
238 }
239 },
240 update: {
241 before: onBeforeUpdate,
242 after: onAfterUpdate
243 },
244 cache: true,
245 highlightInput: true
246 } )
247 .bind( 'paste cut drop', function () {
248 // make sure paste and cut events from the mouse and drag&drop events
249 // trigger the keypress handler and cause the suggestions to update
250 $( this ).trigger( 'keypress' );
251 } )
252 // In most skins (at least Monobook and Vector), the font-size is messed up in <body>.
253 // (they use 2 elements to get a sane font-height). So, instead of making exceptions for
254 // each skin or adding more stylesheets, just copy it from the active element so auto-fit.
255 .each( function () {
256 var $this = $( this );
257 $this
258 .data( 'suggestions-context' )
259 .data.$container
260 .css( 'fontSize', $this.css( 'fontSize' ) );
261 } );
262
263 // Ensure that the thing is actually present!
264 if ( $searchRegion.length === 0 ) {
265 // Don't try to set anything up if simpleSearch is disabled sitewide.
266 // The loader code loads us if the option is present, even if we're
267 // not actually enabled (anymore).
268 return;
269 }
270
271 // Special suggestions functionality and tracking for skin-provided search box
272 $searchInput.suggestions( {
273 update: {
274 before: onBeforeUpdate,
275 after: onAfterUpdate
276 },
277 result: {
278 render: renderFunction,
279 select: selectFunction
280 },
281 special: {
282 render: specialRenderFunction,
283 select: function ( $input ) {
284 $input.closest( 'form' )
285 .append( $( '<input type="hidden" name="fulltext" value="1"/>' ) );
286 return true; // allow the form to be submitted
287 }
288 },
289 $region: $searchRegion
290 } );
291
292 $searchInput.closest( 'form' )
293 // track the form submit event
294 .on( 'submit', function () {
295 var context = $searchInput.data( 'suggestionsContext' );
296 mw.track( 'mediawiki.searchSuggest', {
297 action: 'submit-form',
298 numberOfResults: context.config.suggestions.length,
299 $form: context.config.$region.closest( 'form' ),
300 inputLocation: getInputLocation( context )
301 } );
302 } )
303 // If the form includes any fallback fulltext search buttons, remove them
304 .find( '.mw-fallbackSearchButton' ).remove();
305 } );
306
307 }( mediaWiki, jQuery ) );