mediawiki-extensions-Cite/modules/ve-cite/ve.ui.MWReferencesListCommand.js
Ed Sanders aad7227850 Follow-up I1e0ae39: Set isResponsive on new ref lists
Change-Id: Icd51637b28b44963eddd5d43323dbda329c6a2fc
2017-09-19 21:17:52 +01:00

62 lines
1.5 KiB
JavaScript

/*!
* VisualEditor UserInterface MediaWiki ReferencesListCommand class.
*
* @copyright 2011-2017 Cite VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* 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 ) {
var fragment = surface.getModel().getFragment(),
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/',
refGroup: '',
isResponsive: mw.config.get( 'wgCiteResponsiveReferences' )
}
},
{ type: '/mwReferencesList' }
] );
return true;
}
};
/* Registration */
ve.ui.commandRegistry.register( new ve.ui.MWReferencesListCommand() );