mediawiki-extensions-Visual.../modules/ve/ui/inspectors/ve.ui.LinkInspector.js
Trevor Parscal db9f941fa6 Rename this.$ to this.$element, and this.$$ to this.$
Objectives:
* Rename this.$ to this.$element
* Rename this.$$ to this.$
* Get rid of the need to use this.frame.$$
* Rename OO.ui.Element.get$$ to OO.ui.Element.getJQuery

Changes: (using Sublime Text regex patterns)
* Replace "get$$" with "getJQuery"
* Replace "\.(\$)([^\$a-zA-Z])" with ".$element$2"
* Replace "\.(\$\$)" with ".$"
* Replace "'$$'" with "'$'"
* Set this.$ to null in constructor of OO.ui.Window
* Set this.$ to this.frame.$ in initialize method of OO.ui.Window
* Replace "\.(frame.\$)([^\$a-zA-Z])" with ".\$$2"

Bonus:
* Use this.$() in a bunch of places where $() was erroneously used

Change-Id: If3d870124ab8d10f8223532cda95c2b2b075db94
2013-11-03 23:03:49 -08:00

110 lines
2.8 KiB
JavaScript

/*!
* VisualEditor UserInterface LinkInspector class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Link inspector.
*
* @class
* @extends ve.ui.AnnotationInspector
*
* @constructor
* @param {ve.ui.SurfaceWindowSet} windowSet Window set this inspector is part of
* @param {Object} [config] Configuration options
*/
ve.ui.LinkInspector = function VeUiLinkInspector( windowSet, config ) {
// Parent constructor
ve.ui.AnnotationInspector.call( this, windowSet, config );
};
/* Inheritance */
OO.inheritClass( ve.ui.LinkInspector, ve.ui.AnnotationInspector );
/* Static properties */
ve.ui.LinkInspector.static.name = 'link';
ve.ui.LinkInspector.static.icon = 'link';
ve.ui.LinkInspector.static.titleMessage = 'visualeditor-linkinspector-title';
ve.ui.LinkInspector.static.linkTargetInputWidget = ve.ui.LinkTargetInputWidget;
/**
* Annotation models this inspector can edit.
*
* @static
* @property {Function[]}
*/
ve.ui.LinkInspector.static.modelClasses = [ ve.dm.LinkAnnotation ];
/* Methods */
/**
* Handle frame ready events.
*
* @method
*/
ve.ui.LinkInspector.prototype.initialize = function () {
// Parent method
ve.ui.AnnotationInspector.prototype.initialize.call( this );
// Properties
this.targetInput = new this.constructor.static.linkTargetInputWidget( {
'$': this.$, '$overlay': this.surface.$localOverlayMenus
} );
// Initialization
this.$form.append( this.targetInput.$element );
};
/**
* Handle the inspector being opened.
*/
ve.ui.LinkInspector.prototype.onOpen = function () {
// Parent method
ve.ui.AnnotationInspector.prototype.onOpen.call( this );
// Wait for animation to complete
this.surface.disable();
setTimeout( ve.bind( function () {
// Note: Focus input prior to setting target annotation
this.targetInput.$input.focus();
// Setup annotation
if ( this.initialAnnotation ) {
this.targetInput.setAnnotation( this.initialAnnotation );
} else {
// If an initial annotation couldn't be created (e.g. the text was invalid),
// just populate the text we tried to create the annotation from
this.targetInput.setValue( this.initialText );
}
this.targetInput.$input.select();
this.surface.enable();
}, this ), 200 );
};
/**
* Get the annotation from the input (so AnnotationInspector can request the value
* from the inspector rather than the widget)
* @method
* @returns {ve.dm.LinkAnnotation} Link annotation
*/
ve.ui.LinkInspector.prototype.getAnnotation = function () {
return this.targetInput.annotation;
};
/**
* @inheritdoc
*/
ve.ui.LinkInspector.prototype.getAnnotationFromText = function ( text ) {
return new ve.dm.LinkAnnotation( { 'type': 'link', 'attributes': { 'href': text } } );
};
/* Registration */
ve.ui.inspectorFactory.register( ve.ui.LinkInspector );