mediawiki-extensions-Visual.../modules/es/models/es.TransactionModel.js

139 lines
3.3 KiB
JavaScript
Raw Normal View History

/**
* Creates an es.TransactionModel object.
*
* @class
* @constructor
* @param {Object[]} operations List of operations
*/
es.TransactionModel = function( operations ) {
this.operations = es.isArray( operations ) ? operations : [];
this.lengthDifference = 0;
};
/* Methods */
2011-11-04 21:06:06 +00:00
/**
* Gets a list of all operations.
*
* @method
* @returns {Object[]} List of operations
*/
es.TransactionModel.prototype.getOperations = function() {
2011-11-17 14:43:11 +00:00
return this.operations;
};
/**
* Gets the difference in content length this transaction will cause if applied.
*
* @method
* @returns {Integer} Difference in content length
*/
es.TransactionModel.prototype.getLengthDifference = function() {
return this.lengthDifference;
};
2011-11-04 21:06:06 +00:00
/**
* Adds a retain operation.
*
* @method
* @param {Integer} length Length of content data to retain
*/
es.TransactionModel.prototype.pushRetain = function( length ) {
var end = this.operations.length - 1;
if ( this.operations.length && this.operations[end].type === 'retain' ) {
this.operations[end].length += length;
} else {
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.TransactionModel.prototype.pushInsert = function( data ) {
var end = this.operations.length - 1;
if ( this.operations.length && this.operations[end].type === 'insert' ) {
this.operations[end].data = this.operations[end].data.concat( data );
} else {
this.operations.push( {
'type': 'insert',
'data': data
} );
}
this.lengthDifference += data.length;
};
2011-11-04 21:06:06 +00:00
/**
* Adds a removal operation.
*
* @method
* @param {Array} data Data to remove
*/
es.TransactionModel.prototype.pushRemove = function( data ) {
var end = this.operations.length - 1;
if ( this.operations.length && this.operations[end].type === 'remove' ) {
this.operations[end].data = this.operations[end].data.concat( data );
} else {
this.operations.push( {
'type': 'remove',
'data': data
} );
}
this.lengthDifference -= data.length;
};
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.TransactionModel.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.TransactionModel.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.TransactionModel.prototype.pushStopAnnotating = function( method, annotation ) {
this.operations.push( {
'type': 'annotate',
'method': method,
'bias': 'stop',
'annotation': annotation
} );
};