2 * Add search suggestions to the search form.
6 var api, map, resultRenderCache, searchboxesSelectors,
7 // Region where the suggestions box will appear directly below
8 // (using the same width). Can be a container element or the input
9 // itself, depending on what suits best in the environment.
10 // For Vector the suggestion box should align with the simpleSearch
11 // container's borders, in other skins it should align with the input
12 // element (not the search form, as that would leave the buttons
13 // vertically between the input and the suggestions).
14 $searchRegion = $( '#simpleSearch, #searchInput' ).first(),
15 $searchInput = $( '#searchInput' );
19 // SimpleSearch is broken in Opera < 9.6
21 // Older Konquerors are unable to position the suggestions correctly (bug 50805)
22 konqueror: [['>=', '4.11']],
25 // Support for iOS 6 or higher. It has not been tested on iOS 5 or lower
30 if ( !$.client.test( map ) ) {
34 // Compute form data for search suggestions functionality.
35 function computeResultRenderCache( context ) {
36 var $form, baseHref, linkParams;
38 // Compute common parameters for links' hrefs
39 $form = context.config.$region.closest( 'form' );
41 baseHref = $form.attr( 'action' );
42 baseHref += baseHref.indexOf( '?' ) > -1 ? '&' : '?';
44 linkParams = $form.serializeObject();
47 textParam: context.data.$textbox.attr( 'name' ),
48 linkParams: linkParams,
53 // The function used to render the suggestions.
54 function renderFunction( text, context ) {
55 if ( !resultRenderCache ) {
56 resultRenderCache = computeResultRenderCache( context );
59 // linkParams object is modified and reused
60 resultRenderCache.linkParams[ resultRenderCache.textParam ] = text;
62 // this is the container <div>, jQueryfied
66 .attr( 'href', resultRenderCache.baseHref + $.param( resultRenderCache.linkParams ) )
67 .attr( 'title', text )
68 .addClass( 'mw-searchSuggest-link' )
72 function specialRenderFunction( query, context ) {
75 if ( !resultRenderCache ) {
76 resultRenderCache = computeResultRenderCache( context );
79 // linkParams object is modified and reused
80 resultRenderCache.linkParams[ resultRenderCache.textParam ] = query;
82 if ( $el.children().length === 0 ) {
86 .addClass( 'special-label' )
87 .text( mw.msg( 'searchsuggest-containing' ) ),
89 .addClass( 'special-query' )
94 $el.find( '.special-query' )
98 if ( $el.parent().hasClass( 'mw-searchSuggest-link' ) ) {
99 $el.parent().attr( 'href', resultRenderCache.baseHref + $.param( resultRenderCache.linkParams ) + '&fulltext=1' );
103 .attr( 'href', resultRenderCache.baseHref + $.param( resultRenderCache.linkParams ) + '&fulltext=1' )
104 .addClass( 'mw-searchSuggest-link' )
109 // Generic suggestions functionality for all search boxes
110 searchboxesSelectors = [
111 // Primary searchbox on every page in standard skins
116 // Generic selector for skins with multiple searchboxes (used by CologneBlue)
117 // and for MediaWiki itself (special pages with page title inputs)
120 $( searchboxesSelectors.join( ', ' ) )
122 fetch: function ( query, response, maxRows ) {
125 api = api || new mw.Api();
127 $.data( node, 'request', api.get( {
128 action: 'opensearch',
133 } ).done( function ( data ) {
134 response( data[ 1 ] );
137 cancel: function () {
139 request = $.data( node, 'request' );
143 $.removeData( node, 'request' );
147 render: renderFunction,
148 select: function () {
149 // allow the form to be submitted
156 .bind( 'paste cut drop', function () {
157 // make sure paste and cut events from the mouse and drag&drop events
158 // trigger the keypress handler and cause the suggestions to update
159 $( this ).trigger( 'keypress' );
161 // In most skins (at least Monobook and Vector), the font-size is messed up in <body>.
162 // (they use 2 elements to get a sane font-height). So, instead of making exceptions for
163 // each skin or adding more stylesheets, just copy it from the active element so auto-fit.
165 var $this = $( this );
167 .data( 'suggestions-context' )
169 .css( 'fontSize', $this.css( 'fontSize' ) );
172 // Ensure that the thing is actually present!
173 if ( $searchRegion.length === 0 ) {
174 // Don't try to set anything up if simpleSearch is disabled sitewide.
175 // The loader code loads us if the option is present, even if we're
176 // not actually enabled (anymore).
180 // Special suggestions functionality for skin-provided search box
181 $searchInput.suggestions( {
183 render: specialRenderFunction,
184 select: function ( $input ) {
185 $input.closest( 'form' )
186 .append( $( '<input type="hidden" name="fulltext" value="1"/>' ) );
187 return true; // allow the form to be submitted
190 $region: $searchRegion
193 // If the form includes any fallback fulltext search buttons, remove them
194 $searchInput.closest( 'form' ).find( '.mw-fallbackSearchButton' ).remove();
197 }( mediaWiki, jQuery ) );