mediawiki-extensions-Cite/modules/ve-cite/ve.ui.MWReferencesListDialog.js
Ed Sanders 5a2154de38 ESLint: Enforce prefer-arrow-callback
Change-Id: I8d96b69e8c15bc8ad84cfb0c511396e5b3e7ac20
2024-06-03 12:31:33 +01:00

210 lines
5.9 KiB
JavaScript

'use strict';
/*!
* VisualEditor user interface MWReferencesListDialog class.
*
* @copyright 2011-2018 VisualEditor Team's Cite sub-team and others; see AUTHORS.txt
* @license MIT
*/
/**
* Dialog for editing MediaWiki references lists.
*
* @constructor
* @extends ve.ui.NodeDialog
* @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';
/* Methods */
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getBodyHeight = function () {
return Math.max( 150, Math.ceil( this.editPanel.$element[ 0 ].scrollHeight ) );
};
/**
* @override
*/
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' )
} );
const groupField = new OO.ui.FieldLayout( this.groupInput, {
align: 'top',
label: ve.msg( 'cite-ve-dialog-reference-options-group-label' )
} );
this.responsiveCheckbox = new OO.ui.CheckboxInputWidget();
const responsiveField = new OO.ui.FieldLayout( this.responsiveCheckbox, {
align: 'inline',
label: ve.msg( 'cite-ve-dialog-reference-options-responsive-label' )
} );
// Initialization
this.optionsFieldset.addItems( [ groupField, responsiveField ] );
this.editPanel.$element.append( this.optionsFieldset.$element );
this.panels.addItems( [ this.editPanel ] );
this.$body.append( this.panels.$element );
};
/**
* Handle change event.
*/
ve.ui.MWReferencesListDialog.prototype.onChange = function () {
this.updateActions();
};
/**
* Update the 'done' action according to whether there are changes
*/
ve.ui.MWReferencesListDialog.prototype.updateActions = function () {
this.actions.setAbilities( { done: this.isModified() } );
};
/**
* @return {boolean}
*/
ve.ui.MWReferencesListDialog.prototype.isModified = function () {
if ( !this.selectedNode ) {
return true;
}
const refGroup = this.groupInput.getValue();
const listGroup = 'mwReference/' + refGroup;
const isResponsive = this.responsiveCheckbox.isSelected();
const oldListGroup = this.selectedNode.getAttribute( 'listGroup' );
const oldResponsive = this.selectedNode.getAttribute( 'isResponsive' );
return listGroup !== oldListGroup || isResponsive !== oldResponsive;
};
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getActionProcess = function ( action ) {
if ( action === 'done' ) {
return new OO.ui.Process( () => {
// Save changes
const refGroup = this.groupInput.getValue();
const listGroup = 'mwReference/' + refGroup;
const isResponsive = this.responsiveCheckbox.isSelected();
if ( this.selectedNode ) {
// Edit existing model
const surfaceModel = this.getFragment().getSurface();
const doc = surfaceModel.getDocument();
if ( this.isModified() ) {
// newFromAttributeChanges doesn't do the smart-replacing
// for nested attributes, so make a copy of the mw
// attribute so we can disable autoGenerated now we've
// changed it.
const mwData = ve.copy( this.selectedNode.getAttribute( 'mw' ) ) || {};
delete mwData.autoGenerated;
const attrChanges = {
listGroup: listGroup,
refGroup: refGroup,
isResponsive: isResponsive,
mw: mwData
};
surfaceModel.change(
ve.dm.TransactionBuilder.static.newFromAttributeChanges(
doc, this.selectedNode.getOuterRange().start, attrChanges
)
);
}
}
this.close( { action: action } );
} );
}
// Parent method
return ve.ui.MWReferencesListDialog.super.prototype.getActionProcess.call( this, action );
};
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getSetupProcess = function ( data ) {
return ve.ui.MWReferencesListDialog.super.prototype.getSetupProcess.call( this, data )
.next( () => {
if ( !( this.selectedNode instanceof ve.dm.MWReferencesListNode ) ) {
throw new Error( 'Cannot open dialog: references list must be selected' );
}
this.groupInput.setValue( this.selectedNode.getAttribute( 'refGroup' ) );
this.groupInput.populateMenu( this.getFragment().getDocument().getInternalList() );
this.responsiveCheckbox.setSelected( this.selectedNode.getAttribute( 'isResponsive' ) );
const isReadOnly = this.isReadOnly();
this.groupInput.setReadOnly( isReadOnly );
this.responsiveCheckbox.setDisabled( isReadOnly );
this.groupInput.connect( this, { change: 'onChange' } );
this.responsiveCheckbox.connect( this, { change: 'onChange' } );
this.updateActions();
} );
};
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getTeardownProcess = function ( data ) {
return ve.ui.MWReferencesListDialog.super.prototype.getTeardownProcess.call( this, data )
.next( () => {
this.groupInput.disconnect( this );
this.responsiveCheckbox.disconnect( this );
} );
};
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getReadyProcess = function ( data ) {
return ve.ui.MWReferencesListDialog.super.prototype.getReadyProcess.call( this, data )
.next( () => {
this.groupInput.focus();
} );
};
/* Registration */
ve.ui.windowFactory.register( ve.ui.MWReferencesListDialog );