mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
080b6958e8
* Prefer dispatchEvent to $.trigger * Prefer Object.assign to $.extend * Prefer URLSearchParams to $.params * Prefer getAttribute / properties to $.attr * Prefer document.querySelectorAll over $.find Change-Id: I5f4464e5bfa11b401e663f0b8761fc6092380627
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
/**
|
|
* @typedef {Record<string,string>} UrlParams
|
|
* @param {string} title
|
|
* @param {string} fulltext
|
|
*/
|
|
|
|
/**
|
|
* @callback generateUrl
|
|
* @param {RestResult|SearchResult|string} searchResult
|
|
* @param {UrlParams} [params]
|
|
* @param {string} [articlePath]
|
|
* @return {string}
|
|
*/
|
|
|
|
/**
|
|
* @typedef {Object} UrlGenerator
|
|
* @property {generateUrl} generateUrl
|
|
*/
|
|
|
|
/**
|
|
* Generates URLs for suggestions like those in MediaWiki's mediawiki.searchSuggest implementation.
|
|
*
|
|
* @param {MwMap} config
|
|
* @return {UrlGenerator}
|
|
*/
|
|
function urlGenerator( config ) {
|
|
// TODO: This is a placeholder for enabling customization of the URL generator.
|
|
// wgVectorSearchUrlGenerator has not been defined as a config variable yet.
|
|
return config.get( 'wgVectorSearchUrlGenerator', {
|
|
/**
|
|
* @param {RestResult|SearchResult|string} suggestion
|
|
* @param {UrlParams} params
|
|
* @param {string} articlePath
|
|
* @return {string}
|
|
*/
|
|
generateUrl(
|
|
suggestion,
|
|
params = {
|
|
title: 'Special:Search'
|
|
},
|
|
articlePath = config.get( 'wgScript' )
|
|
) {
|
|
if ( typeof suggestion !== 'string' ) {
|
|
suggestion = suggestion.title;
|
|
} else {
|
|
// Add `fulltext` query param to search within pages and for navigation
|
|
// to the search results page (prevents being redirected to a certain
|
|
// article).
|
|
params = Object.assign( {}, params, {
|
|
fulltext: '1'
|
|
} );
|
|
}
|
|
|
|
const searchParams = new URLSearchParams(
|
|
Object.assign( {}, params, { search: suggestion } )
|
|
);
|
|
return `${articlePath}?${searchParams.toString()}`;
|
|
}
|
|
} );
|
|
}
|
|
|
|
/** @module urlGenerator */
|
|
module.exports = urlGenerator;
|