mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
3c293ea00c
Change-Id: I8991b97c980d4149f53eb5601036220ef3c0c440
183 lines
5.2 KiB
JavaScript
183 lines
5.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWMagicLinkNodeInspector class.
|
|
*
|
|
* @copyright 2011-2019 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Inspector for editing MediaWiki magic links (RFC/ISBN/PMID).
|
|
*
|
|
* @class
|
|
* @extends ve.ui.NodeInspector
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector = function VeUiMWMagicLinkNodeInspector() {
|
|
// Parent constructor
|
|
ve.ui.MWMagicLinkNodeInspector.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWMagicLinkNodeInspector, ve.ui.NodeInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWMagicLinkNodeInspector.static.name = 'linkMagicNode';
|
|
|
|
ve.ui.MWMagicLinkNodeInspector.static.title = null; // see #getSetupProcess
|
|
|
|
ve.ui.MWMagicLinkNodeInspector.static.modelClasses = [ ve.dm.MWMagicLinkNode ];
|
|
|
|
ve.ui.MWMagicLinkNodeInspector.static.actions = ve.ui.MWMagicLinkNodeInspector.super.static.actions.concat( [
|
|
{
|
|
action: 'convert',
|
|
label: OO.ui.deferMsg( 'visualeditor-magiclinknodeinspector-convert-link' ),
|
|
modes: [ 'edit' ]
|
|
}
|
|
] );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWMagicLinkNodeInspector.super.prototype.initialize.call( this );
|
|
|
|
// Properties
|
|
this.targetInput = new OO.ui.TextInputWidget( {
|
|
validate: this.validate.bind( this )
|
|
} );
|
|
this.targetInput.on( 'change', this.onChange.bind( this ) );
|
|
|
|
// Initialization
|
|
this.form.$element.append( this.targetInput.$element );
|
|
};
|
|
|
|
/**
|
|
* Return true if the given string is a valid magic link of the
|
|
* appropriate type.
|
|
*
|
|
* @private
|
|
* @param {string} str String to validate
|
|
* @return {boolean} String is valid
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.validate = function ( str ) {
|
|
var node = this.getFragment().getSelectedNode();
|
|
return node.constructor.static.validateContent( str, node.getMagicType() );
|
|
};
|
|
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.onChange = function ( value ) {
|
|
// Disable the unsafe action buttons if the input isn't valid
|
|
var isValid = this.validate( value );
|
|
this.actions.forEach( null, function ( action ) {
|
|
if ( !action.hasFlag( 'safe' ) ) {
|
|
action.setDisabled( !isValid );
|
|
}
|
|
} );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.getActionProcess = function ( action ) {
|
|
if ( ( action === 'done' || action === 'convert' ) &&
|
|
!this.validate( this.targetInput.getValue() ) ) {
|
|
// Don't close dialog: input isn't valid.
|
|
return new OO.ui.Process( 0 );
|
|
}
|
|
if ( action === 'convert' ) {
|
|
return new OO.ui.Process( function () {
|
|
this.close( { action: action } );
|
|
}, this );
|
|
}
|
|
return ve.ui.MWMagicLinkNodeInspector.super.prototype.getActionProcess.call( this, action );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.getSetupProcess = function ( data ) {
|
|
// Set the title based on the node type
|
|
var fragment = data.fragment,
|
|
node = fragment instanceof ve.dm.SurfaceFragment ?
|
|
fragment.getSelectedNode() : null,
|
|
type = node instanceof ve.dm.MWMagicLinkNode ?
|
|
node.getMagicType() : null,
|
|
msg = type ?
|
|
'visualeditor-magiclinknodeinspector-title-' + type.toLowerCase() :
|
|
null;
|
|
|
|
data = $.extend( {
|
|
title: msg ? OO.ui.deferMsg( msg ) : null
|
|
}, data );
|
|
return ve.ui.MWMagicLinkNodeInspector.super.prototype.getSetupProcess.call( this, data )
|
|
.next( function () {
|
|
// Initialization
|
|
this.targetInput.setValue(
|
|
this.selectedNode ? this.selectedNode.getAttribute( 'content' ) : ''
|
|
);
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.getReadyProcess = function ( data ) {
|
|
return ve.ui.MWMagicLinkNodeInspector.super.prototype.getReadyProcess.call( this, data )
|
|
.next( function () {
|
|
this.targetInput.focus().select();
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWMagicLinkNodeInspector.prototype.getTeardownProcess = function ( data ) {
|
|
data = data || {};
|
|
return ve.ui.MWMagicLinkNodeInspector.super.prototype.getTeardownProcess.call( this, data )
|
|
.first( function () {
|
|
var content, annotation, annotations,
|
|
surfaceModel = this.getFragment().getSurface(),
|
|
doc = surfaceModel.getDocument(),
|
|
nodeRange = this.selectedNode.getOuterRange(),
|
|
value = this.targetInput.getValue(),
|
|
done = data.action === 'done',
|
|
convert = data.action === 'convert',
|
|
remove = data.action === 'remove' || ( done && !value );
|
|
|
|
if ( remove ) {
|
|
surfaceModel.change(
|
|
ve.dm.TransactionBuilder.static.newFromRemoval( doc, nodeRange )
|
|
);
|
|
} else if ( convert ) {
|
|
annotation = ve.dm.MWMagicLinkNode.static.annotationFromContent(
|
|
value
|
|
);
|
|
if ( annotation ) {
|
|
annotations = doc.data.getAnnotationsFromOffset( nodeRange.start ).clone();
|
|
annotations.push( annotation );
|
|
content = value.split( '' );
|
|
ve.dm.Document.static.addAnnotationsToData( content, annotations );
|
|
surfaceModel.change(
|
|
ve.dm.TransactionBuilder.static.newFromReplacement( doc, nodeRange, content )
|
|
);
|
|
}
|
|
} else if ( done && this.validate( value ) ) {
|
|
surfaceModel.change(
|
|
ve.dm.TransactionBuilder.static.newFromAttributeChanges(
|
|
doc, nodeRange.start, { content: value }
|
|
)
|
|
);
|
|
}
|
|
}, this );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWMagicLinkNodeInspector );
|