mediawiki-extensions-Visual.../modules/es/es.Transaction.js

138 lines
2.9 KiB
JavaScript
Raw Normal View History

/**
* Creates an es.Transaction object.
*
* @class
* @constructor
* @param {Object[]} operations List of operations
*/
es.Transaction = function( operations ) {
this.operations = es.isArray( operations ) ? operations : [];
};
/* Methods */
2011-11-04 21:06:06 +00:00
/**
* Gets a list of all operations.
*
* @method
* @returns {Object[]} List of operations
*/
es.Transaction.prototype.getOperations = function() {
2011-11-17 14:43:11 +00:00
return this.operations;
};
2011-11-04 21:06:06 +00:00
/**
* Merges consecutive operations of the same type.
*
* @method
*/
es.Transaction.prototype.optimize = function() {
for ( var i = 0; i < this.operations.length - 1; i++ ) {
var a = this.operations[i];
var b = this.operations[i + 1];
if ( a.type === b.type ) {
switch ( a.type ) {
case 'retain':
a.length += b.length;
this.operations.splice( i + 1, 1 );
i--;
break;
case 'insert':
case 'remove':
a.data = a.data.concat( b.data );
this.operations.splice( i + 1, 1 );
i--;
break;
}
}
}
};
2011-11-04 21:06:06 +00:00
/**
* Adds a retain operation.
*
* @method
* @param {Integer} length Length of content data to retain
*/
es.Transaction.prototype.pushRetain = function( length ) {
this.operations.push( {
'type': 'retain',
'length': length
} );
};
2011-11-04 21:06:06 +00:00
/**
* Adds an insertion operation.
*
* @method
* @param {Array} data Data to retain
*/
es.Transaction.prototype.pushInsert = function( data ) {
this.operations.push( {
'type': 'insert',
2011-11-04 21:06:06 +00:00
'data': data
} );
};
2011-11-04 21:06:06 +00:00
/**
* Adds a removal operation.
*
* @method
* @param {Array} data Data to remove
*/
es.Transaction.prototype.pushRemove = function( data ) {
this.operations.push( {
'type': 'remove',
'data': data
} );
};
2011-11-04 21:06:06 +00:00
/**
* Adds an element attribute change operation.
*
* @method
* @param {String} method Method to use, either "set" or "clear"
* @param {String} key Name of attribute to change
* @param {Mixed} value Value to set attribute to, or value of attribute being cleared
*/
es.Transaction.prototype.pushChangeElementAttribute = function( method, key, value ) {
this.operations.push( {
'type': 'attribute',
'method': method,
'key': key,
'value': value
} );
};
2011-11-04 21:06:06 +00:00
/**
* Adds a start annotating operation.
*
* @method
* @param {String} method Method to use, either "set" or "clear"
* @param {Object} annotation Annotation object to start setting or clearing from content data
*/
es.Transaction.prototype.pushStartAnnotating = function( method, annotation ) {
this.operations.push( {
'type': 'annotate',
'method': method,
'bias': 'start',
'annotation': annotation
} );
};
2011-11-04 21:06:06 +00:00
/**
* Adds a stop annotating operation.
*
* @method
* @param {String} method Method to use, either "set" or "clear"
* @param {Object} annotation Annotation object to stop setting or clearing from content data
*/
es.Transaction.prototype.pushStopAnnotating = function( method, annotation ) {
this.operations.push( {
'type': 'annotate',
'method': method,
'bias': 'stop',
'annotation': annotation
} );
};