mediawiki-extensions-Visual.../modules/ve/ui/inspectors/ve.ui.LinkInspector.js
Rob Moen 224cc1f9a0 Migrate tools from SurfaceObserver Class
ContextView positioning, Italic, and Bold annotations working

Change-Id: Ifc68bd61c8f27b6a14d314dc2999753af6e0ee04
2012-04-11 13:19:58 -07:00

94 lines
2.8 KiB
JavaScript

/**
* Creates an ve.ui.LinkInspector object.
*
* @class
* @constructor
* @param {ve.ui.Toolbar} toolbar
*/
ve.ui.LinkInspector = function( toolbar, context ) {
// Inheritance
ve.ui.Inspector.call( this, toolbar, context );
// Properties
this.$clearButton = $( '<div class="es-inspector-button es-inspector-clearButton"></div>' )
.prependTo( this.$ );
this.$.prepend( '<div class="es-inspector-title">Edit link</div>' );
this.$locationLabel = $( '<label>Page title</label>' ).appendTo( this.$form );
this.$locationInput = $( '<input type="text">' ).appendTo( this.$form );
this.initialValue = null;
// Events
var _this = this;
this.$clearButton.click( function() {
if ( $(this).is( '.es-inspector-button-disabled' ) ) {
return;
}
var surfaceView = _this.context.getSurfaceView();
surfaceView.annotate( 'clear', /link\/.*/ );
_this.$locationInput.val( '' );
_this.context.closeInspector();
} );
this.$locationInput.bind( 'mousedown keydown cut paste', function() {
setTimeout( function() {
if ( _this.$locationInput.val() !== _this.initialValue ) {
_this.$acceptButton.removeClass( 'es-inspector-button-disabled' );
} else {
_this.$acceptButton.addClass( 'es-inspector-button-disabled' );
}
}, 0 );
} );
};
/* Methods */
ve.ui.LinkInspector.prototype.getTitleFromSelection = function() {
var surfaceView = this.context.getSurfaceView(),
surfaceModel = surfaceView.getModel(),
documentModel = surfaceModel.getDocument(),
data = documentModel.getData( surfaceView.getSelectionRange() );
if ( data.length ) {
var annotation = ve.dm.DocumentNode.getMatchingAnnotations( data[0], /link\/.*/ );
if ( annotation.length ) {
annotation = annotation[0];
}
if ( annotation && annotation.data && annotation.data.title ) {
return annotation.data.title;
}
}
return null;
};
ve.ui.LinkInspector.prototype.onOpen = function() {
var title = this.getTitleFromSelection();
if ( title !== null ) {
this.$locationInput.val( title );
this.$clearButton.removeClass( 'es-inspector-button-disabled' );
} else {
this.$locationInput.val( '' );
this.$clearButton.addClass( 'es-inspector-button-disabled' );
}
this.$acceptButton.addClass( 'es-inspector-button-disabled' );
this.initialValue = this.$locationInput.val();
var _this = this;
setTimeout( function() {
_this.$locationInput.focus().select();
}, 0 );
};
ve.ui.LinkInspector.prototype.onClose = function( accept ) {
if ( accept ) {
var title = this.$locationInput.val();
if ( title === this.getTitleFromSelection() || !title ) {
return;
}
var surfaceView = this.context.getSurfaceView();
surfaceView.annotate( 'clear', /link\/.*/ );
surfaceView.annotate( 'set', { 'type': 'link/internal', 'data': { 'title': title } } );
}
};
/* Inheritance */
ve.extendClass( ve.ui.LinkInspector, ve.ui.Inspector );