mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
/**
|
|
* Creates an ve.ui.AnnotationButtonTool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ui.ButtonTool}
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {String} name
|
|
* @param {Object} annotation
|
|
*/
|
|
ve.ui.AnnotationButtonTool = function( toolbar, name, title, data ) {
|
|
// Inheritance
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
|
|
|
// Properties
|
|
this.annotation = data.annotation;
|
|
this.inspector = data.inspector;
|
|
this.active = false;
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.AnnotationButtonTool.prototype.onClick = function() {
|
|
var surfaceView = this.toolbar.getSurfaceView();
|
|
if ( this.inspector ) {
|
|
if ( surfaceView.getModel().getSelection().getLength() ) {
|
|
this.toolbar.getSurfaceView().getContextView().openInspector( this.inspector );
|
|
} else {
|
|
if ( this.active ) {
|
|
var surfaceModel = surfaceView.getModel(),
|
|
documentModel = surfaceModel.getDocument(),
|
|
selection = surfaceModel.getSelection(),
|
|
range = documentModel.getAnnotationBoundaries( selection.from, this.annotation, true );
|
|
surfaceModel.select( range );
|
|
this.toolbar.getSurfaceView().getContextView().openInspector( this.inspector );
|
|
}
|
|
}
|
|
} else {
|
|
surfaceView.annotate( this.active ? 'clear' : 'set', this.annotation );
|
|
}
|
|
};
|
|
|
|
ve.ui.AnnotationButtonTool.prototype.updateState = function( annotations, nodes ) {
|
|
if ( ve.dm.DocumentNode.getIndexOfAnnotation( annotations.full, this.annotation, true ) !== -1 ) {
|
|
this.$.addClass( 'es-toolbarButtonTool-down' );
|
|
this.active = true;
|
|
return;
|
|
}
|
|
this.$.removeClass( 'es-toolbarButtonTool-down' );
|
|
this.active = false;
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.Tool.tools.bold = {
|
|
'constructor': ve.ui.AnnotationButtonTool,
|
|
'name': 'bold',
|
|
'title': 'Bold (ctrl/cmd + B)',
|
|
'data': {
|
|
'annotation': { 'type': 'textStyle/bold' }
|
|
}
|
|
};
|
|
|
|
ve.ui.Tool.tools.italic = {
|
|
'constructor': ve.ui.AnnotationButtonTool,
|
|
'name': 'italic',
|
|
'title': 'Italic (ctrl/cmd + I)',
|
|
'data': {
|
|
'annotation': { 'type': 'textStyle/italic' }
|
|
}
|
|
};
|
|
|
|
ve.ui.Tool.tools.link = {
|
|
'constructor': ve.ui.AnnotationButtonTool,
|
|
'name': 'link',
|
|
'title': 'Link (ctrl/cmd + K)',
|
|
'data': {
|
|
'annotation': { 'type': 'link/internal', 'data': { 'title': '' } },
|
|
'inspector': 'link'
|
|
}
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ui.AnnotationButtonTool, ve.ui.ButtonTool );
|