2012-05-21 19:37:30 +00:00
|
|
|
/**
|
|
|
|
* Creates an ve.ui.ListButtonTool object.
|
2012-06-13 23:06:21 +00:00
|
|
|
*
|
2012-05-21 19:37:30 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
|
|
|
* @extends {ve.ui.ButtonTool}
|
|
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
|
|
* @param {String} name
|
|
|
|
*/
|
|
|
|
ve.ui.ListButtonTool = function( toolbar, name, title, data ) {
|
|
|
|
// Inheritance
|
|
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.data = data;
|
|
|
|
this.nodes = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
ve.ui.ListButtonTool.prototype.list = function( nodes, style ) {
|
2012-06-15 00:21:37 +00:00
|
|
|
var surface = this.toolbar.surfaceView,
|
|
|
|
model = surface.getModel(),
|
|
|
|
doc = model.getDocument(),
|
|
|
|
selection = model.getSelection(),
|
|
|
|
siblings = doc.selectNodes( selection, 'siblings'),
|
|
|
|
outerRange = null,
|
|
|
|
tx;
|
2012-05-21 19:37:30 +00:00
|
|
|
|
2012-06-15 00:21:37 +00:00
|
|
|
if ( siblings.length > 1 ){
|
|
|
|
outerRange = new ve.Range(
|
|
|
|
siblings[0].nodeOuterRange.from,
|
|
|
|
siblings[siblings.length-1].nodeOuterRange.to
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
outerRange = ( siblings[0].node['parent'].getOuterRange() );
|
|
|
|
}
|
|
|
|
|
|
|
|
tx = ve.dm.Transaction.newFromWrap(
|
|
|
|
doc,
|
|
|
|
outerRange,
|
|
|
|
[],
|
|
|
|
[ { 'type': 'list', 'attributes': { 'style': style } } ],
|
|
|
|
[],
|
|
|
|
[ { 'type': 'listItem' } ]
|
|
|
|
);
|
|
|
|
model.transact ( tx );
|
|
|
|
return ;
|
|
|
|
|
|
|
|
siblings = doc.selectNodes(selection, 'siblings');
|
|
|
|
outerRange = new ve.Range(
|
|
|
|
siblings[0].nodeOuterRange.from,
|
|
|
|
siblings[siblings.length-1].nodeOuterRange.to
|
|
|
|
);
|
|
|
|
model.setSelection( outerRange );
|
|
|
|
surface.showSelection( model.getSelection() );
|
2012-05-21 19:37:30 +00:00
|
|
|
};
|
|
|
|
|
2012-06-15 00:21:37 +00:00
|
|
|
ve.ui.ListButtonTool.prototype.unlist = function( node ){
|
|
|
|
var surface = this.toolbar.surfaceView,
|
|
|
|
model = surface.getModel(),
|
|
|
|
doc = model.getDocument(),
|
|
|
|
selection = model.getSelection(),
|
|
|
|
siblings = doc.selectNodes( selection, 'siblings'),
|
|
|
|
outerRange = null,
|
|
|
|
tx;
|
2012-05-21 19:37:30 +00:00
|
|
|
|
2012-06-15 00:21:37 +00:00
|
|
|
if ( siblings.length > 1 ){
|
|
|
|
outerRange = new ve.Range(
|
|
|
|
siblings[0].nodeOuterRange.from,
|
|
|
|
siblings[siblings.length-1].nodeOuterRange.to
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
outerRange = ( siblings[0].node['parent'].getOuterRange() );
|
|
|
|
}
|
|
|
|
|
|
|
|
tx = ve.dm.Transaction.newFromWrap(
|
|
|
|
doc,
|
|
|
|
outerRange,
|
|
|
|
[ { 'type': 'list' } ],
|
|
|
|
[],
|
|
|
|
[ { 'type': 'listItem' } ],
|
|
|
|
[]
|
|
|
|
);
|
2012-05-21 19:37:30 +00:00
|
|
|
|
2012-06-15 00:21:37 +00:00
|
|
|
model.transact ( tx );
|
|
|
|
|
|
|
|
};
|
2012-05-21 19:37:30 +00:00
|
|
|
ve.ui.ListButtonTool.prototype.onClick = function() {
|
|
|
|
this.toolbar.surfaceView.model.breakpoint();
|
|
|
|
if ( !this.$.hasClass( 'es-toolbarButtonTool-down' ) ) {
|
|
|
|
this.list( this.nodes, this.name );
|
|
|
|
} else {
|
|
|
|
this.unlist( this.nodes );
|
|
|
|
}
|
|
|
|
this.toolbar.surfaceView.model.breakpoint();
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ui.ListButtonTool.prototype.updateState = function( annotations, nodes ) {
|
|
|
|
/*
|
|
|
|
* XXX: Disabled for now because lists work differently now (they are structured, not flat)
|
2012-06-13 23:06:21 +00:00
|
|
|
*
|
2012-05-21 19:37:30 +00:00
|
|
|
function areListItemsOfStyle( nodes, style ) {
|
|
|
|
var parent, styles;
|
|
|
|
for( var i = 0; i < nodes.length; i++ ) {
|
|
|
|
parent = nodes[i].getParent();
|
2012-06-07 01:03:55 +00:00
|
|
|
if ( parent.getType() !== 'listItem' ) {
|
2012-05-21 19:37:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
styles = parent.getElementAttribute( 'styles' );
|
|
|
|
if ( styles[ styles.length - 1] !== style ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.nodes = nodes;
|
|
|
|
if ( areListItemsOfStyle( this.nodes, this.name ) ) {
|
|
|
|
this.$.addClass( 'es-toolbarButtonTool-down' );
|
|
|
|
} else {
|
|
|
|
this.$.removeClass( 'es-toolbarButtonTool-down' );
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.Tool.tools.number = {
|
|
|
|
'constructor': ve.ui.ListButtonTool,
|
|
|
|
'name': 'number',
|
|
|
|
'title': 'Numbered list'
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ui.Tool.tools.bullet = {
|
|
|
|
'constructor': ve.ui.ListButtonTool,
|
|
|
|
'name': 'bullet',
|
|
|
|
'title': 'Bulleted list'
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.ui.ListButtonTool, ve.ui.ButtonTool );
|