mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
2439c0149a
new static method looks for annotation in annotation object. ve2 Cleanup on annotate method and surface model. Partially revive UI tools by exchaning old method usage for ve2 methods. Change-Id: Id0ac58330292d76801bbcf1d71a919b493f8ab9e
103 lines
2.6 KiB
JavaScript
103 lines
2.6 KiB
JavaScript
// ToolbarView
|
|
ve.ui.Toolbar = function( $container, surfaceView, config ) {
|
|
// Inheritance TODO: Do we still need it?
|
|
ve.EventEmitter.call( this );
|
|
if ( !surfaceView ) {
|
|
return;
|
|
}
|
|
|
|
// References for use in closures
|
|
var _this = this,
|
|
$window = $( window );
|
|
|
|
// Properties
|
|
this.surfaceView = surfaceView;
|
|
this.$ = $container;
|
|
this.$groups = $( '<div class="es-toolbarGroups"></div>' ).prependTo( this.$ );
|
|
this.tools = [];
|
|
|
|
// Listen to the model for selection event
|
|
this.surfaceView.model.on( 'select', function( e ){
|
|
var model = _this.surfaceView.model,
|
|
doc = model.getDocument(),
|
|
annotations = doc.getAnnotationsFromRange( model.getSelection() ),
|
|
nodes = [],
|
|
startNode,
|
|
endNode;
|
|
|
|
if( e !== null ) {
|
|
if ( e.from === e.to ){
|
|
nodes.push( doc.getNodeFromOffset( e.from ) );
|
|
} else {
|
|
startNode = doc.getNodeFromOffset( e.from );
|
|
endNode = doc.getNodeFromOffset ( e.end );
|
|
// These should be different, alas just in case.
|
|
if ( startNode === endNode ) {
|
|
nodes.push( startNode );
|
|
|
|
} else {
|
|
model.traverseLeafNodes( function( node ) {
|
|
nodes.push( node );
|
|
if( node === endNode ) {
|
|
return false;
|
|
}
|
|
}, startNode );
|
|
}
|
|
}
|
|
// Update state
|
|
for ( i = 0; i < _this.tools.length; i++ ) {
|
|
_this.tools[i].updateState( annotations, nodes );
|
|
console.log ('updated tools');
|
|
}
|
|
} else {
|
|
// Clear state
|
|
for ( i = 0; i < _this.tools.length; i++ ) {
|
|
_this.tools[i].clearState();
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
this.config = config || [
|
|
{ 'name': 'history', 'items' : ['undo', 'redo'] },
|
|
{ 'name': 'textStyle', 'items' : ['format'] },
|
|
{ 'name': 'textStyle', 'items' : ['bold', 'italic', 'link', 'clear'] },
|
|
{ 'name': 'list', 'items' : ['number', 'bullet', 'outdent', 'indent'] }
|
|
];
|
|
this.setup();
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.Toolbar.prototype.getSurfaceView = function() {
|
|
return this.surfaceView;
|
|
};
|
|
|
|
ve.ui.Toolbar.prototype.setup = function() {
|
|
for ( var i = 0; i < this.config.length; i++ ) {
|
|
var $group = $( '<div>' )
|
|
.addClass( 'es-toolbarGroup' )
|
|
.addClass( 'es-toolbarGroup-' + this.config[i].name );
|
|
if ( this.config[i].label ) {
|
|
$group.append(
|
|
$( '<div>' ).addClass( 'es-toolbarLabel' ).html( this.config[i].label )
|
|
);
|
|
}
|
|
|
|
for ( var j = 0; j < this.config[i].items.length; j++ ) {
|
|
var toolDefintion = ve.ui.Tool.tools[ this.config[i].items[j] ];
|
|
if ( toolDefintion ) {
|
|
var tool = new toolDefintion.constructor(
|
|
this, toolDefintion.name, toolDefintion.title, toolDefintion.data
|
|
);
|
|
this.tools.push( tool );
|
|
$group.append( tool.$ );
|
|
}
|
|
}
|
|
|
|
this.$groups.append( $group );
|
|
}
|
|
};
|
|
|
|
ve.extendClass( ve.ui.Toolbar, ve.EventEmitter );
|