2016-02-03 21:03:41 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MediaWiki ReferencesListCommand class.
|
|
|
|
*
|
2018-01-03 01:05:45 +00:00
|
|
|
* @copyright 2011-2018 VisualEditor Team's Cite sub-team and others; see AUTHORS.txt
|
2017-12-29 12:12:35 +00:00
|
|
|
* @license MIT
|
2016-02-03 21:03:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* References list command.
|
|
|
|
*
|
|
|
|
* If a references list node is selected, opens the dialog to edit it.
|
|
|
|
* Otherwise inserts the references list for the default group.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.Command
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
ve.ui.MWReferencesListCommand = function VeUiMWReferencesListCommand() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWReferencesListCommand.super.call(
|
|
|
|
this, 'referencesList', null, null,
|
|
|
|
{ supportedSelections: [ 'linear' ] }
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWReferencesListCommand, ve.ui.Command );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWReferencesListCommand.prototype.execute = function ( surface ) {
|
2017-09-19 20:17:52 +00:00
|
|
|
var fragment = surface.getModel().getFragment(),
|
2016-02-03 21:03:41 +00:00
|
|
|
selectedNode = fragment.getSelectedNode(),
|
|
|
|
isReflistNodeSelected = selectedNode && selectedNode instanceof ve.dm.MWReferencesListNode;
|
|
|
|
|
|
|
|
if ( isReflistNodeSelected ) {
|
|
|
|
return surface.execute( 'window', 'open', 'referencesList' );
|
|
|
|
} else {
|
|
|
|
fragment.collapseToEnd().insertContent( [
|
|
|
|
{
|
|
|
|
type: 'mwReferencesList',
|
|
|
|
attributes: {
|
|
|
|
listGroup: 'mwReference/',
|
2017-09-19 20:17:52 +00:00
|
|
|
refGroup: '',
|
|
|
|
isResponsive: mw.config.get( 'wgCiteResponsiveReferences' )
|
2016-02-03 21:03:41 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{ type: '/mwReferencesList' }
|
|
|
|
] );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.commandRegistry.register( new ve.ui.MWReferencesListCommand() );
|