mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-14 18:45:12 +00:00
0d20873fa6
Change-Id: Ia090c417a1aa716b255613199b5e49616bf0517a
148 lines
4 KiB
JavaScript
148 lines
4 KiB
JavaScript
/*!
|
|
* VisualEditor user interface MWReferencesListDialog class.
|
|
*
|
|
* @copyright 2011-2017 Cite VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog for editing MediaWiki references lists.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.NodeDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWReferencesListDialog = function VeUiMWReferencesListDialog( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWReferencesListDialog.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWReferencesListDialog, ve.ui.NodeDialog );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWReferencesListDialog.static.name = 'referencesList';
|
|
|
|
ve.ui.MWReferencesListDialog.static.title =
|
|
OO.ui.deferMsg( 'cite-ve-dialog-referenceslist-title' );
|
|
|
|
ve.ui.MWReferencesListDialog.static.modelClasses = [ ve.dm.MWReferencesListNode ];
|
|
|
|
ve.ui.MWReferencesListDialog.static.size = 'medium';
|
|
|
|
ve.ui.MWReferencesListDialog.static.actions = [
|
|
{
|
|
action: 'apply',
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-apply' ),
|
|
flags: [ 'progressive', 'primary' ],
|
|
modes: 'edit'
|
|
},
|
|
{
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-cancel' ),
|
|
flags: [ 'safe', 'back' ],
|
|
modes: 'edit'
|
|
}
|
|
];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWReferencesListDialog.prototype.getBodyHeight = function () {
|
|
return Math.max( 150, Math.ceil( this.editPanel.$element[ 0 ].scrollHeight ) );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWReferencesListDialog.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWReferencesListDialog.super.prototype.initialize.call( this );
|
|
|
|
// Properties
|
|
this.panels = new OO.ui.StackLayout();
|
|
this.editPanel = new OO.ui.PanelLayout( {
|
|
scrollable: true, padded: true
|
|
} );
|
|
this.optionsFieldset = new OO.ui.FieldsetLayout();
|
|
|
|
this.groupInput = new ve.ui.MWReferenceGroupInputWidget( {
|
|
$overlay: this.$overlay,
|
|
emptyGroupName: ve.msg( 'cite-ve-dialog-reference-options-group-placeholder' )
|
|
} );
|
|
this.groupField = new OO.ui.FieldLayout( this.groupInput, {
|
|
align: 'top',
|
|
label: ve.msg( 'cite-ve-dialog-reference-options-group-label' )
|
|
} );
|
|
|
|
// Initialization
|
|
this.optionsFieldset.addItems( [ this.groupField ] );
|
|
this.editPanel.$element.append( this.optionsFieldset.$element );
|
|
this.panels.addItems( [ this.editPanel ] );
|
|
this.$body.append( this.panels.$element );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWReferencesListDialog.prototype.getActionProcess = function ( action ) {
|
|
if ( action === 'apply' ) {
|
|
return new OO.ui.Process( function () {
|
|
var refGroup, listGroup, oldListGroup, attrChanges, doc,
|
|
surfaceModel = this.getFragment().getSurface();
|
|
|
|
// Save changes
|
|
refGroup = this.groupInput.getValue();
|
|
listGroup = 'mwReference/' + refGroup;
|
|
|
|
if ( this.selectedNode ) {
|
|
// Edit existing model
|
|
doc = surfaceModel.getDocument();
|
|
oldListGroup = this.selectedNode.getAttribute( 'listGroup' );
|
|
|
|
if ( listGroup !== oldListGroup ) {
|
|
attrChanges = {
|
|
listGroup: listGroup,
|
|
refGroup: refGroup
|
|
};
|
|
surfaceModel.change(
|
|
ve.dm.TransactionBuilder.static.newFromAttributeChanges(
|
|
doc, this.selectedNode.getOuterRange().start, attrChanges
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
this.close( { action: action } );
|
|
}, this );
|
|
}
|
|
// Parent method
|
|
return ve.ui.MWReferencesListDialog.super.prototype.getActionProcess.call( this, action );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWReferencesListDialog.prototype.getSetupProcess = function ( data ) {
|
|
return ve.ui.MWReferencesListDialog.super.prototype.getSetupProcess.call( this, data )
|
|
.next( function () {
|
|
if ( !( this.selectedNode instanceof ve.dm.MWReferencesListNode ) ) {
|
|
throw new Error( 'Cannot open dialog: references list must be selected' );
|
|
}
|
|
|
|
this.actions.setMode( 'edit' );
|
|
|
|
this.groupInput.setValue( this.selectedNode.getAttribute( 'refGroup' ) );
|
|
this.groupInput.populateMenu( this.getFragment().getDocument().getInternalList() );
|
|
}, this );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWReferencesListDialog );
|