mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
0a7a845a42
Change-Id: I0b299c840ede1a1b8552cecfc70c5760ab036181
73 lines
1.8 KiB
JavaScript
73 lines
1.8 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWExternalLinkAnnotationWidget class.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Creates an ve.ui.MWExternalLinkAnnotationWidget object.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.LinkAnnotationWidget
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWExternalLinkAnnotationWidget = function VeUiMWExternalLinkAnnotationWidget() {
|
|
// Parent constructor
|
|
ve.ui.MWExternalLinkAnnotationWidget.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWExternalLinkAnnotationWidget, ve.ui.LinkAnnotationWidget );
|
|
|
|
/* Static Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWExternalLinkAnnotationWidget.static.getAnnotationFromText = function ( value ) {
|
|
var href = value.trim();
|
|
|
|
// Keep annotation in sync with value
|
|
if ( href === '' ) {
|
|
return null;
|
|
} else {
|
|
return new ve.dm.MWExternalLinkAnnotation( {
|
|
type: 'link/mwExternal',
|
|
attributes: {
|
|
href: href
|
|
}
|
|
} );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Create an external link input widget.
|
|
*
|
|
* @param {Object} [config] Configuration options
|
|
* @return {OO.ui.TextInputWidget} Text input widget
|
|
*/
|
|
ve.ui.MWExternalLinkAnnotationWidget.static.createExternalLinkInputWidget = function ( config ) {
|
|
return new OO.ui.TextInputWidget( $.extend( {}, config, {
|
|
icon: 'linkExternal',
|
|
validate: function ( text ) {
|
|
return !!ve.init.platform.getExternalLinkUrlProtocolsRegExp().exec( text.trim() );
|
|
}
|
|
} ) );
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Create a text input widget to be used by the annotation widget
|
|
*
|
|
* @param {Object} [config] Configuration options
|
|
* @return {OO.ui.TextInputWidget} Text input widget
|
|
*/
|
|
ve.ui.MWExternalLinkAnnotationWidget.prototype.createInputWidget = function ( config ) {
|
|
return this.constructor.static.createExternalLinkInputWidget( config );
|
|
};
|