2015-04-10 20:28:38 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWTemplateTitleInputWidget class.
|
|
|
|
*
|
2020-01-08 17:13:04 +00:00
|
|
|
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
|
2015-04-10 20:28:38 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an ve.ui.MWTemplateTitleInputWidget object.
|
|
|
|
*
|
|
|
|
* @class
|
2015-06-15 10:25:44 +00:00
|
|
|
* @extends mw.widgets.TitleInputWidget
|
2015-04-10 20:28:38 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
* @cfg {number} [namespace] Namespace to prepend to queries. Defaults to template namespace.
|
|
|
|
*/
|
|
|
|
ve.ui.MWTemplateTitleInputWidget = function VeUiMWTemplateTitleInputWidget( config ) {
|
2016-10-28 00:22:30 +00:00
|
|
|
config = ve.extendObject( {}, {
|
2021-05-21 09:08:13 +00:00
|
|
|
namespace: mw.config.get( 'wgNamespaceIds' ).template,
|
|
|
|
// We don't need results to show up twice normalized and unnormalized
|
|
|
|
addQueryInput: false
|
2015-06-15 10:25:44 +00:00
|
|
|
}, config );
|
|
|
|
|
2015-04-10 20:28:38 +00:00
|
|
|
// Parent constructor
|
2015-06-15 10:25:44 +00:00
|
|
|
ve.ui.MWTemplateTitleInputWidget.super.call( this, config );
|
|
|
|
|
|
|
|
this.showTemplateDescriptions = this.showDescriptions;
|
|
|
|
// Clear the showDescriptions flag for subsequent requests as we implement
|
|
|
|
// description fetch ourselves
|
|
|
|
this.showDescriptions = false;
|
2015-04-10 20:28:38 +00:00
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.descriptions = {};
|
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$element.addClass( 've-ui-mwTemplateTitleInputWidget' );
|
|
|
|
};
|
2015-05-25 13:51:13 +00:00
|
|
|
|
2015-04-10 20:28:38 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
2017-04-21 01:51:11 +00:00
|
|
|
// FIXME: This should extend mw.widgets.TitleSearchWidget instead
|
2015-06-15 10:25:44 +00:00
|
|
|
OO.inheritClass( ve.ui.MWTemplateTitleInputWidget, mw.widgets.TitleInputWidget );
|
2015-04-10 20:28:38 +00:00
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
2021-03-01 17:02:38 +00:00
|
|
|
// @inheritdoc mw.widgets.TitleWidget
|
|
|
|
ve.ui.MWTemplateTitleInputWidget.prototype.getApiParams = function ( query ) {
|
|
|
|
var params = ve.ui.MWTemplateTitleInputWidget.super.prototype.getApiParams.call( this, query );
|
|
|
|
|
|
|
|
// TODO: This should stay as a feature flag for 3rd-parties to fallback to prefixsearch
|
|
|
|
if ( mw.config.get( 'wgVisualEditorConfig' ).cirrusSearchLookup ) {
|
2021-05-19 16:51:48 +00:00
|
|
|
ve.extendObject( params, {
|
|
|
|
generator: 'search',
|
|
|
|
gsrsearch: params.gpssearch,
|
|
|
|
// gsrsort: 'incoming_links_desc',
|
|
|
|
gsrnamespace: params.gpsnamespace,
|
|
|
|
gsrlimit: params.gpslimit
|
|
|
|
} );
|
2021-05-11 13:40:10 +00:00
|
|
|
// Searching for "foo *" is pointless. Don't normalize it to "foo*" either but leave it
|
|
|
|
// unchanged. This makes the word "foo" behave the same in "foo " and "foo bar". In both
|
|
|
|
// cases it's not considered a prefix any more.
|
|
|
|
if ( !/\s$/.test( params.gsrsearch ) ) {
|
|
|
|
params.gsrsearch += '*';
|
|
|
|
}
|
2021-05-19 16:51:48 +00:00
|
|
|
if ( this.showRedirectTargets ) {
|
|
|
|
params.gsrprop = 'redirecttitle';
|
|
|
|
}
|
2021-03-01 17:02:38 +00:00
|
|
|
delete params.gpssearch;
|
|
|
|
delete params.gpsnamespace;
|
|
|
|
delete params.gpslimit;
|
|
|
|
}
|
|
|
|
return params;
|
|
|
|
};
|
|
|
|
|
2019-04-16 15:17:29 +00:00
|
|
|
// @inheritdoc mw.widgets.TitleInputWidget
|
2015-04-10 20:28:38 +00:00
|
|
|
ve.ui.MWTemplateTitleInputWidget.prototype.getLookupRequest = function () {
|
2015-06-15 10:25:44 +00:00
|
|
|
var widget = this,
|
|
|
|
originalResponse,
|
2019-01-09 19:30:42 +00:00
|
|
|
templateDataMessage = mw.message( 'templatedata-doc-subpage' ),
|
|
|
|
templateDataInstalled = templateDataMessage.exists(),
|
|
|
|
templateDocPageFragment = '/' + templateDataMessage.text(),
|
2015-06-15 10:25:44 +00:00
|
|
|
promise = ve.ui.MWTemplateTitleInputWidget.super.prototype.getLookupRequest.call( this );
|
|
|
|
|
2021-05-21 09:41:22 +00:00
|
|
|
/**
|
|
|
|
* @param {Object} response
|
|
|
|
* @param {Object} [newPage]
|
|
|
|
*/
|
|
|
|
function unshiftPages( response, newPage ) {
|
|
|
|
response.query.pages.forEach( function ( page ) {
|
|
|
|
page.index++;
|
|
|
|
} );
|
|
|
|
if ( newPage && newPage.title ) {
|
|
|
|
newPage.index = 1;
|
|
|
|
response.query.pages.unshift( newPage );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
promise = promise
|
|
|
|
.then( function ( response ) {
|
|
|
|
// TODO: Remove when not in Beta any more
|
|
|
|
if ( !mw.config.get( 'wgVisualEditorConfig' ).cirrusSearchLookup ) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
var query = widget.getQueryValue(),
|
|
|
|
title = mw.Title.newFromText( query, widget.namespace );
|
|
|
|
// No point in trying anything when the title is invalid
|
|
|
|
if ( !response.query || !title ) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
var lowerTitle = title.getPrefixedText().toLowerCase(),
|
|
|
|
metadata = response.query.redirects || [],
|
|
|
|
foundMatchingMetadata = metadata.some( function ( redirect ) {
|
|
|
|
return redirect.from.toLowerCase() === lowerTitle;
|
|
|
|
} );
|
|
|
|
if ( foundMatchingMetadata ) {
|
|
|
|
// Redirects will be carefully positioned later in TitleWidget.getOptionsFromData()
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
var i,
|
|
|
|
matchingRedirects = response.query.pages.filter( function ( page ) {
|
|
|
|
return page.redirecttitle && page.redirecttitle.toLowerCase() === lowerTitle;
|
|
|
|
} );
|
|
|
|
if ( matchingRedirects.length ) {
|
|
|
|
for ( i = matchingRedirects.length; i--; ) {
|
|
|
|
var redirect = matchingRedirects[ i ];
|
|
|
|
// Offer redirects as separate options when the user's input is an exact match
|
|
|
|
unshiftPages( response, {
|
|
|
|
pageid: redirect.pageid,
|
|
|
|
ns: redirect.ns,
|
|
|
|
title: redirect.redirecttitle
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
var matchingTitles = response.query.pages.filter( function ( page ) {
|
|
|
|
return page.title.toLowerCase() === lowerTitle;
|
|
|
|
} );
|
|
|
|
if ( matchingTitles.length ) {
|
|
|
|
for ( i = matchingTitles.length; i--; ) {
|
|
|
|
// Make sure exact matches are at the very top
|
|
|
|
unshiftPages( response );
|
|
|
|
matchingTitles[ i ].index = 1;
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
2021-05-20 12:58:05 +00:00
|
|
|
return widget.getApi().get( {
|
|
|
|
// Can't use a direct lookup by title because we need this to be case-insensitive
|
|
|
|
action: 'opensearch',
|
|
|
|
format: 'json',
|
|
|
|
search: query,
|
|
|
|
namespace: widget.namespace,
|
|
|
|
limit: 1,
|
|
|
|
formatversion: 2
|
|
|
|
} ).then( function ( openSearchResult ) {
|
|
|
|
// OpenSearch will perform a prefix search, but we only care about exact matches
|
|
|
|
var titles = openSearchResult[ 1 ].filter( function ( searchResult ) {
|
|
|
|
return searchResult.toLowerCase() === lowerTitle;
|
|
|
|
} );
|
|
|
|
for ( i = titles.length; i--; ) {
|
|
|
|
unshiftPages( response, {
|
|
|
|
ns: widget.namespace,
|
|
|
|
title: titles[ i ]
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
} ).promise( { abort: function () {} } );
|
2021-05-21 09:41:22 +00:00
|
|
|
} )
|
|
|
|
.promise( { abort: function () {} } );
|
|
|
|
|
2021-03-01 17:03:54 +00:00
|
|
|
if ( !this.showTemplateDescriptions ) {
|
|
|
|
return promise;
|
|
|
|
}
|
2015-04-10 20:28:38 +00:00
|
|
|
|
2021-03-01 17:03:54 +00:00
|
|
|
return promise
|
|
|
|
.then( function ( response ) {
|
|
|
|
var xhr, pageId, redirIndex,
|
2021-05-21 09:19:41 +00:00
|
|
|
redirects = ( response.query && response.query.redirects ) || [],
|
2021-03-01 17:03:54 +00:00
|
|
|
origPages = ( response.query && response.query.pages ) || {},
|
|
|
|
newPages = [],
|
2021-05-20 15:35:43 +00:00
|
|
|
titles;
|
2021-03-01 17:03:54 +00:00
|
|
|
|
|
|
|
// Build a new array to replace response.query.pages, ensuring everything goes into
|
|
|
|
// the order defined by the page's index key, instead of whatever random order the
|
|
|
|
// browser would let you iterate over the old object in.
|
|
|
|
for ( pageId in origPages ) {
|
|
|
|
if ( 'index' in origPages[ pageId ] ) {
|
|
|
|
newPages[ origPages[ pageId ].index - 1 ] = origPages[ pageId ];
|
2019-01-09 19:30:42 +00:00
|
|
|
} else {
|
2021-03-01 17:03:54 +00:00
|
|
|
// Watch out for cases where the index is specified on the redirect object
|
|
|
|
// rather than the page object.
|
|
|
|
for ( redirIndex in redirects ) {
|
|
|
|
if ( redirects[ redirIndex ].to === origPages[ pageId ].title ) {
|
|
|
|
newPages[ redirects[ redirIndex ].index - 1 ] = origPages[ pageId ];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-09-10 16:13:36 +00:00
|
|
|
}
|
2021-03-01 17:03:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// T54448: Filter out matches which end in /doc or as configured on-wiki
|
|
|
|
if ( templateDataInstalled ) {
|
|
|
|
newPages = newPages.filter( function ( page ) {
|
|
|
|
// Can't use String.endsWith() as that's ES6.
|
|
|
|
// page.title.endsWith( templateDocPageFragment )
|
|
|
|
return page.title.slice( 0 - templateDocPageFragment.length ) !== templateDocPageFragment;
|
2019-01-09 19:30:42 +00:00
|
|
|
} );
|
2021-03-01 17:03:54 +00:00
|
|
|
} else {
|
|
|
|
// Even if not filtering /doc, collapse the sparse array
|
|
|
|
newPages = newPages.filter( function ( page ) {
|
|
|
|
return page;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
titles = newPages.map( function ( page ) {
|
|
|
|
return page.title;
|
|
|
|
} );
|
|
|
|
|
|
|
|
ve.setProp( response, 'query', 'pages', newPages );
|
|
|
|
originalResponse = response; // lie!
|
|
|
|
|
|
|
|
// Also get descriptions
|
|
|
|
// FIXME: This should go through MWTransclusionModel rather than duplicate.
|
|
|
|
if ( titles.length > 0 ) {
|
|
|
|
xhr = widget.getApi().get( {
|
|
|
|
action: 'templatedata',
|
|
|
|
format: 'json',
|
|
|
|
formatversion: 2,
|
|
|
|
titles: titles,
|
|
|
|
redirects: !!widget.showRedirects,
|
|
|
|
includeMissingTitles: '1',
|
|
|
|
lang: mw.config.get( 'wgUserLanguage' )
|
|
|
|
} );
|
|
|
|
return xhr.promise( { abort: xhr.abort } );
|
|
|
|
}
|
|
|
|
} )
|
|
|
|
.then( function ( templateDataResponse ) {
|
|
|
|
var index, page, missingTitle,
|
|
|
|
pages = ( templateDataResponse && templateDataResponse.pages ) || {};
|
|
|
|
// Look for descriptions and cache them
|
|
|
|
for ( index in pages ) {
|
|
|
|
page = pages[ index ];
|
|
|
|
|
|
|
|
if ( page.missing ) {
|
|
|
|
// Remmeber templates that don't exist in the link cache
|
|
|
|
// { title: { missing: true|false }
|
|
|
|
missingTitle = {};
|
|
|
|
missingTitle[ page.title ] = { missing: true };
|
|
|
|
ve.init.platform.linkCache.setMissing( missingTitle );
|
|
|
|
} else if ( !page.notemplatedata ) {
|
|
|
|
// Cache descriptions
|
|
|
|
widget.descriptions[ page.title ] = page.description;
|
2015-06-15 10:25:44 +00:00
|
|
|
}
|
2021-03-01 17:03:54 +00:00
|
|
|
}
|
|
|
|
// Return the original response
|
|
|
|
return originalResponse;
|
|
|
|
}, function () {
|
|
|
|
// API request failed; most likely, we're on a wiki which doesn't have TemplateData.
|
|
|
|
return originalResponse;
|
|
|
|
} )
|
|
|
|
.promise( { abort: function () {} } );
|
2015-04-10 20:28:38 +00:00
|
|
|
};
|
|
|
|
|
2021-05-19 16:51:48 +00:00
|
|
|
// @inheritdoc mw.widgets.TitleWidget
|
|
|
|
ve.ui.MWTemplateTitleInputWidget.prototype.getOptionWidgetData = function ( title, data ) {
|
2015-06-15 10:25:44 +00:00
|
|
|
return ve.extendObject(
|
|
|
|
ve.ui.MWTemplateTitleInputWidget.super.prototype.getOptionWidgetData.apply( this, arguments ),
|
2021-05-19 16:51:48 +00:00
|
|
|
{
|
|
|
|
description: this.descriptions[ title ],
|
|
|
|
redirecttitle: data.originalData.redirecttitle
|
|
|
|
}
|
2015-06-15 10:25:44 +00:00
|
|
|
);
|
2015-04-10 20:28:38 +00:00
|
|
|
};
|
2021-05-19 16:51:48 +00:00
|
|
|
|
|
|
|
// @inheritdoc mw.widgets.TitleWidget
|
|
|
|
ve.ui.MWTemplateTitleInputWidget.prototype.createOptionWidget = function ( data ) {
|
|
|
|
var widget = ve.ui.MWTemplateTitleInputWidget.super.prototype.createOptionWidget.call( this, data );
|
|
|
|
|
|
|
|
if ( data.redirecttitle ) {
|
|
|
|
// Same conditions as in mw.widgets.TitleWidget.getOptionWidgetData()
|
|
|
|
var title = new mw.Title( data.redirecttitle ),
|
|
|
|
text = this.namespace !== null && this.relative ?
|
|
|
|
title.getRelativeText( this.namespace ) :
|
|
|
|
data.redirecttitle;
|
|
|
|
|
|
|
|
var $desc = widget.$element.find( '.mw-widget-titleOptionWidget-description' );
|
|
|
|
if ( !$desc.length ) {
|
|
|
|
$desc = $( '<span>' )
|
|
|
|
.addClass( 'mw-widget-titleOptionWidget-description' )
|
|
|
|
.appendTo( widget.$element );
|
|
|
|
}
|
|
|
|
$desc.prepend( $( '<div>' )
|
|
|
|
.addClass( 've-ui-mwTemplateTitleInputWidget-redirectedfrom' )
|
|
|
|
.text( mw.msg( 'redirectedfrom', text ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
};
|