mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
93 lines
2.3 KiB
JavaScript
93 lines
2.3 KiB
JavaScript
|
/**
|
||
|
* Creates an es.DocumentViewLeafNode object.
|
||
|
*
|
||
|
* @class
|
||
|
* @constructor
|
||
|
* @extends {es.DocumentViewNode}
|
||
|
* @param model {es.ModelNode} Model to observe
|
||
|
* @param {jQuery} [$element] Element to use as a container
|
||
|
*/
|
||
|
es.DocumentViewLeafNode = function( model, $element ) {
|
||
|
// Inheritance
|
||
|
es.DocumentViewNode.call( this, model, $element );
|
||
|
|
||
|
// Properties
|
||
|
this.$content = $( '<div class="es-content"></div>' ).appendTo( this.$ );
|
||
|
this.contentView = new es.ContentView( this.$content, model );
|
||
|
};
|
||
|
|
||
|
/* Methods */
|
||
|
|
||
|
/**
|
||
|
* Render content.
|
||
|
*
|
||
|
* @method
|
||
|
*/
|
||
|
es.DocumentViewLeafNode.prototype.renderContent = function() {
|
||
|
this.contentView.render();
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Draw selection around a given range.
|
||
|
*
|
||
|
* @method
|
||
|
* @param {es.Range} range Range of content to draw selection around
|
||
|
*/
|
||
|
es.DocumentViewLeafNode.prototype.drawSelection = function( range ) {
|
||
|
this.contentView.drawSelection( range );
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Clear selection.
|
||
|
*
|
||
|
* @method
|
||
|
*/
|
||
|
es.DocumentViewLeafNode.prototype.clearSelection = function() {
|
||
|
this.contentView.clearSelection();
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Gets the nearest offset of a rendered position.
|
||
|
*
|
||
|
* @method
|
||
|
* @param {es.Position} position Position to get offset for
|
||
|
* @returns {Integer} Offset of position
|
||
|
*/
|
||
|
es.DocumentViewLeafNode.prototype.getOffsetFromRenderedPosition = function( position ) {
|
||
|
return this.contentView.getOffsetFromRenderedPosition( position );
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Gets rendered position of offset within content.
|
||
|
*
|
||
|
* @method
|
||
|
* @param {Integer} offset Offset to get position for
|
||
|
* @returns {es.Position} Position of offset
|
||
|
*/
|
||
|
es.DocumentViewLeafNode.prototype.getRenderedPositionFromOffset = function( offset, leftBias ) {
|
||
|
var position = this.contentView.getRenderedPositionFromOffset( offset, leftBias ),
|
||
|
offset = this.$content.offset();
|
||
|
position.top += offset.top;
|
||
|
position.left += offset.left;
|
||
|
position.bottom += offset.top;
|
||
|
return position;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Gets the length of the content in the model.
|
||
|
*
|
||
|
* @method
|
||
|
* @returns {Integer} Length of content
|
||
|
*/
|
||
|
es.DocumentViewLeafNode.prototype.getElementLength = function() {
|
||
|
return this.model.getElementLength();
|
||
|
};
|
||
|
|
||
|
es.DocumentViewLeafNode.prototype.getRenderedLineRangeFromOffset = function( offset ) {
|
||
|
return this.contentView.getRenderedLineRangeFromOffset( offset );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
es.extendClass( es.DocumentViewLeafNode, es.DocumentViewNode );
|