mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
109 lines
3.2 KiB
JavaScript
109 lines
3.2 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(),
|
|
surfaceModel = surfaceView.getModel(),
|
|
tx = surfaceModel.getDocument().prepareContentAnnotation(
|
|
surfaceView.currentSelection,
|
|
'clear',
|
|
/link\/.*/
|
|
);
|
|
surfaceModel.transact( tx );
|
|
_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.currentSelection );
|
|
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(),
|
|
surfaceModel = surfaceView.getModel();
|
|
var clear = surfaceModel.getDocument().prepareContentAnnotation(
|
|
surfaceView.currentSelection,
|
|
'clear',
|
|
/link\/.*/
|
|
);
|
|
surfaceModel.transact( clear );
|
|
var set = surfaceModel.getDocument().prepareContentAnnotation(
|
|
surfaceView.currentSelection,
|
|
'set',
|
|
{ 'type': 'link/internal', 'data': { 'title': title } }
|
|
);
|
|
surfaceModel.transact( set );
|
|
}
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ui.LinkInspector, ve.ui.Inspector );
|