Merge "search: Reduce skins.vector.search module size"

This commit is contained in:
jenkins-bot 2022-10-04 23:35:08 +00:00 committed by Gerrit Code Review
commit f8af368121
5 changed files with 11 additions and 16 deletions

View File

@ -64,8 +64,8 @@ function onFetchEnd( event ) {
// execute before the rendering steps happen (e.g. layout and paint). A
// nested rAF will execute after these rendering steps have completed
// and ensure the search results are visible to the user.
requestAnimationFrame( function () {
requestAnimationFrame( function () {
requestAnimationFrame( () => {
requestAnimationFrame( () => {
if ( !performance.getEntriesByName( queryMark ).length ) {
return;
}

View File

@ -81,8 +81,7 @@ function adaptApiResponse( config, query, restResponse, showDescription ) {
* @return {SearchClient}
*/
function restSearchClient( config ) {
const customClient = config.get( 'wgVectorSearchClient' );
return customClient || {
return config.get( 'wgVectorSearchClient', {
/**
* @type {fetchByTitle}
*/
@ -103,7 +102,7 @@ function restSearchClient( config ) {
fetch: searchResponsePromise
};
}
};
} );
}
module.exports = restSearchClient;

View File

@ -14,7 +14,7 @@ function initApp( searchBox ) {
titleInput = /** @type {HTMLInputElement|null} */ (
searchBox.querySelector( 'input[name=title]' )
),
search = /** @type {HTMLInputElement|null} */ ( searchBox.querySelector( 'input[name="search"]' ) ),
search = /** @type {HTMLInputElement|null} */ ( searchBox.querySelector( 'input[name=search]' ) ),
searchPageTitle = titleInput && titleInput.value;
if ( !searchForm || !search || !titleInput ) {
@ -43,10 +43,7 @@ function initApp( searchBox ) {
* @return {void}
*/
function main( document ) {
const searchBoxes = document.querySelectorAll( '.vector-search-box' );
searchBoxes.forEach( ( searchBox ) => {
initApp( searchBox );
} );
document.querySelectorAll( '.vector-search-box' )
.forEach( initApp );
}
main( document );

View File

@ -28,8 +28,7 @@
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.
const customGenerator = config.get( 'wgVectorSearchUrlGenerator' );
return customGenerator || {
return config.get( 'wgVectorSearchUrlGenerator', {
/**
* @type {generateUrl}
*/
@ -52,7 +51,7 @@ function urlGenerator( config ) {
return articlePath + '?' + $.param( $.extend( {}, params, { search: suggestion } ) );
}
};
} );
}
/** @module urlGenerator */

View File

@ -4,14 +4,14 @@ const jestFetchMock = require( 'jest-fetch-mock' );
const mockedRequests = !process.env.TEST_LIVE_REQUESTS;
const configMock = {
get: jest.fn().mockImplementation( key => {
get: jest.fn().mockImplementation( ( key, fallback = null ) => {
if ( key === 'wgScriptPath' ) {
return '/w';
}
if ( key === 'wgScript' ) {
return '/w/index.php';
}
return null;
return fallback;
} ),
set: jest.fn()
};