mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 02:23:58 +00:00
283047b604
This can be re-used by Citoid. Bonus: Improve placeholder copy. Change-Id: I429ce5d7faae56955bcc09a9662d8a36c5098e44
96 lines
2.4 KiB
JavaScript
96 lines
2.4 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWReferenceSourceSelectWidget class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Creates an ve.ui.MWReferenceSourceSelectWidget object.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.SearchWidget
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
* @cfg {boolean} [showExisting] Show 're-use existing reference' as an option
|
|
*/
|
|
ve.ui.MWReferenceSourceSelectWidget = function VeUiMWReferenceSourceSelectWidget( config ) {
|
|
config = config || {};
|
|
|
|
// Parent constructor
|
|
ve.ui.MWReferenceSourceSelectWidget.super.call( this, config );
|
|
|
|
var i, len, tools, item, items = [],
|
|
limit = ve.init.target.constructor.static.citationToolsLimit;
|
|
|
|
try {
|
|
// Must use mw.message to avoid JSON being parsed as Wikitext
|
|
tools = JSON.parse( mw.message( 'visualeditor-cite-tool-definition.json' ).plain() );
|
|
} catch ( e ) {
|
|
tools = [];
|
|
}
|
|
|
|
// Go over available tools
|
|
for ( i = 0, len = Math.min( limit, tools.length ); i < len; i++ ) {
|
|
item = tools[i];
|
|
items.push( new OO.ui.DecoratedOptionWidget( {
|
|
icon: item.icon,
|
|
label: item.title,
|
|
data: {
|
|
windowName: 'cite-' + item.name,
|
|
dialogData: { template: item.template }
|
|
}
|
|
} ) );
|
|
}
|
|
|
|
// Basic tools
|
|
this.refBasic = new OO.ui.DecoratedOptionWidget( {
|
|
icon: 'reference',
|
|
label: ve.msg( 'visualeditor-dialogbutton-reference-full-label' ),
|
|
data: { windowName: 'reference' }
|
|
} );
|
|
items.push( this.refBasic );
|
|
|
|
if ( config.showExisting ) {
|
|
this.refExisting = new OO.ui.DecoratedOptionWidget( {
|
|
icon: 'reference-existing',
|
|
label: ve.msg( 'visualeditor-dialog-reference-useexisting-full-label' ),
|
|
data: {
|
|
windowName: 'reference',
|
|
dialogData: { useExisting: true }
|
|
}
|
|
} );
|
|
items.push( this.refExisting );
|
|
}
|
|
|
|
this.addItems( items );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 've-ui-mwReferenceSourceSelectWidget' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWReferenceSourceSelectWidget, OO.ui.SelectWidget );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Get the basic reference option
|
|
*
|
|
* @return {OO.ui.OptionWidget} Basic reference option
|
|
*/
|
|
ve.ui.MWReferenceSourceSelectWidget.prototype.getRefBasic = function () {
|
|
return this.refBasic;
|
|
};
|
|
|
|
/**
|
|
* Get the existing reference option
|
|
*
|
|
* @return {OO.ui.OptionWidget} Existing reference option
|
|
*/
|
|
ve.ui.MWReferenceSourceSelectWidget.prototype.getRefExisting = function () {
|
|
return this.refExisting;
|
|
};
|