mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
169b7e754d
Change-Id: I8cefd6c871ed6d1ad71f64eb66236de1b8b719b5
69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
/**
|
|
* Creates an ve.ui.ClearButtonTool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ui.ButtonTool}
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {String} name
|
|
*/
|
|
ve.ui.ClearButtonTool = function( toolbar, name, title ) {
|
|
// Inheritance
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
|
|
|
// Properties
|
|
this.$.addClass( 'es-toolbarButtonTool-disabled' );
|
|
this.pattern = /(textStyle\/|link\/).*/;
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.ClearButtonTool.prototype.getAnnotations = function(){
|
|
var surfaceView = this.toolbar.getSurfaceView(),
|
|
surfaceModel = surfaceView.getModel(),
|
|
documentModel = surfaceModel.getDocument(),
|
|
data = documentModel.getData( surfaceModel.getSelection() );
|
|
|
|
if ( data.length ) {
|
|
if ( ve.isPlainObject( data[0][1] ) ) {
|
|
return ve.dm.Document.getMatchingAnnotations( data[0][1], this.pattern );
|
|
}
|
|
}
|
|
return ;
|
|
};
|
|
|
|
ve.ui.ClearButtonTool.prototype.onClick = function() {
|
|
var surfaceView = this.toolbar.getSurfaceView(),
|
|
model = surfaceView.getModel(),
|
|
annotations = this.getAnnotations();
|
|
for ( var hash in annotations ) {
|
|
model.annotate( 'clear', annotations[hash] );
|
|
}
|
|
surfaceView.showSelection( model.getSelection() );
|
|
surfaceView.contextView.closeInspector();
|
|
};
|
|
|
|
ve.ui.ClearButtonTool.prototype.updateState = function( annotations ) {
|
|
var matchingAnnotations = ve.dm.Document.getMatchingAnnotations(
|
|
annotations, this.pattern
|
|
);
|
|
|
|
if ( ve.isEmptyObject( matchingAnnotations ) ) {
|
|
this.$.addClass( 'es-toolbarButtonTool-disabled' );
|
|
} else {
|
|
this.$.removeClass( 'es-toolbarButtonTool-disabled' );
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.Tool.tools.clear = {
|
|
'constructor': ve.ui.ClearButtonTool,
|
|
'name': 'clear',
|
|
'title': 'Clear formatting'
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ui.ClearButtonTool, ve.ui.ButtonTool );
|