mediawiki-extensions-Cite/modules/ve-cite/ve.ui.MWReferencesListDialog.js
Adam Wight 73c90a0e7d Clean up and fix some jsdoc annotations
Some of the annotations were used in a way that confused jsdoc.  This
cleans up redundant annotations and uses more canonical tags.

These changes cause all classes to now appear in the generated pages.

Includes linking to external docs.

Bug: T358641
Change-Id: Iaee1dadcc19a70c27839d0d27dfa6a07a70fb46b
2024-02-29 13:05:42 +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( function () {
// 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 } );
}, this );
}
// 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( function () {
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();
}, this );
};
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getTeardownProcess = function ( data ) {
return ve.ui.MWReferencesListDialog.super.prototype.getTeardownProcess.call( this, data )
.next( function () {
this.groupInput.disconnect( this );
this.responsiveCheckbox.disconnect( this );
}, this );
};
/**
* @override
*/
ve.ui.MWReferencesListDialog.prototype.getReadyProcess = function ( data ) {
return ve.ui.MWReferencesListDialog.super.prototype.getReadyProcess.call( this, data )
.next( function () {
this.groupInput.focus();
}, this );
};
/* Registration */
ve.ui.windowFactory.register( ve.ui.MWReferencesListDialog );