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
) {
125 api
= api
|| new mw
.Api();
127 $.data( node
, 'request', api
.get( {
128 action
: 'opensearch',
132 } ).done( function ( data
) {
133 response( data
[ 1 ] );
136 cancel: function () {
138 request
= $.data( node
, 'request' );
142 $.removeData( node
, 'request' );
146 render
: renderFunction
,
147 select: function () {
148 // allow the form to be submitted
155 .bind( 'paste cut drop', function () {
156 // make sure paste and cut events from the mouse and drag&drop events
157 // trigger the keypress handler and cause the suggestions to update
158 $( this ).trigger( 'keypress' );
160 // In most skins (at least Monobook and Vector), the font-size is messed up in <body>.
161 // (they use 2 elements to get a sane font-height). So, instead of making exceptions for
162 // each skin or adding more stylesheets, just copy it from the active element so auto-fit.
164 var $this = $( this );
166 .data( 'suggestions-context' )
168 .css( 'fontSize', $this.css( 'fontSize' ) );
171 // Ensure that the thing is actually present!
172 if ( $searchRegion
.length
=== 0 ) {
173 // Don't try to set anything up if simpleSearch is disabled sitewide.
174 // The loader code loads us if the option is present, even if we're
175 // not actually enabled (anymore).
179 // Special suggestions functionality for skin-provided search box
180 $searchInput
.suggestions( {
182 render
: specialRenderFunction
,
183 select: function ( $input
) {
184 $input
.closest( 'form' )
185 .append( $( '<input type="hidden" name="fulltext" value="1"/>' ) );
186 return true; // allow the form to be submitted
189 $region
: $searchRegion
192 // If the form includes any fallback fulltext search buttons, remove them
193 $searchInput
.closest( 'form' ).find( '.mw-fallbackSearchButton' ).remove();
196 }( mediaWiki
, jQuery
) );