mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
0a7a845a42
Change-Id: I0b299c840ede1a1b8552cecfc70c5760ab036181
87 lines
2.5 KiB
JavaScript
87 lines
2.5 KiB
JavaScript
/*!
|
|
* VisualEditor MWWikitextDataTransferHandlerFactory class.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Drop handler Factory.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.DataTransferHandlerFactory
|
|
* @constructor
|
|
*/
|
|
ve.ui.MWWikitextDataTransferHandlerFactory = function VeUiMwWikitextDataTransferHandlerFactory() {
|
|
var name,
|
|
factory = this;
|
|
|
|
// Parent constructor
|
|
ve.ui.MWWikitextDataTransferHandlerFactory.super.apply( this, arguments );
|
|
|
|
for ( name in ve.ui.dataTransferHandlerFactory.registry ) {
|
|
this.register( ve.ui.dataTransferHandlerFactory.registry[ name ] );
|
|
}
|
|
|
|
ve.ui.dataTransferHandlerFactory.on( 'register', function ( name, data ) {
|
|
factory.register( data );
|
|
} );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWWikitextDataTransferHandlerFactory, ve.ui.DataTransferHandlerFactory );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWWikitextDataTransferHandlerFactory.prototype.create = function () {
|
|
// Parent method
|
|
var doc,
|
|
handler = ve.ui.MWWikitextDataTransferHandlerFactory.super.prototype.create.apply( this, arguments ),
|
|
resolve = handler.resolve.bind( handler );
|
|
|
|
function isPlain( data ) {
|
|
return typeof data === 'string' || ve.dm.LinearData.static.getType( data ) === 'paragraph';
|
|
}
|
|
|
|
handler.resolve = function ( dataOrDoc ) {
|
|
var annotations, text;
|
|
if ( typeof dataOrDoc === 'string' || ( Array.isArray( dataOrDoc ) && dataOrDoc.every( isPlain ) ) ) {
|
|
resolve( dataOrDoc );
|
|
} else {
|
|
doc = dataOrDoc instanceof ve.dm.Document ?
|
|
dataOrDoc :
|
|
// The handler may have also written items to the store
|
|
new ve.dm.Document( new ve.dm.ElementLinearData( handler.surface.getModel().getDocument().getStore(), dataOrDoc ) );
|
|
|
|
// Optimization: we can skip a server hit if this is a plain link,
|
|
// with no title, whose href is equal to the contained text. This
|
|
// avoids a stutter in the common case of pasting a link into the
|
|
// document.
|
|
annotations = doc.data.getAnnotationsFromRange( new ve.Range( 0, doc.data.getLength() ) );
|
|
if ( annotations.getLength() === 1 ) {
|
|
text = doc.data.getText();
|
|
if ( annotations.get( 0 ).getAttribute( 'href' ) === text ) {
|
|
return resolve( text );
|
|
}
|
|
}
|
|
|
|
ve.init.target.getWikitextFragment( doc, false )
|
|
.done( resolve )
|
|
.fail( function () {
|
|
handler.abort();
|
|
} );
|
|
}
|
|
};
|
|
|
|
return handler;
|
|
};
|
|
|
|
/* Initialization */
|
|
|
|
ve.ui.wikitextDataTransferHandlerFactory = new ve.ui.MWWikitextDataTransferHandlerFactory();
|
|
|
|
ve.ui.wikitextDataTransferHandlerFactory.unregister( ve.ui.MWWikitextStringTransferHandler );
|