2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor Range class.
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
/**
|
|
|
|
* Range of content.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-02 21:00:55 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
2012-09-17 13:30:50 +00:00
|
|
|
* @param {Number} from Starting offset
|
|
|
|
* @param {Number} [to=from] Ending offset
|
|
|
|
* @property {Number} from Starting offset
|
|
|
|
* @property {Number} to Ending offset
|
|
|
|
* @property {Number} start Normalized starting offset
|
|
|
|
* @property {Number} end Normalized ending offset
|
2011-11-02 21:00:55 +00:00
|
|
|
*/
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
ve.Range = function veRange( from, to ) {
|
2011-11-02 21:00:55 +00:00
|
|
|
this.from = from || 0;
|
|
|
|
this.to = typeof to === 'undefined' ? this.from : to;
|
|
|
|
this.normalize();
|
|
|
|
};
|
|
|
|
|
2012-09-17 23:53:03 +00:00
|
|
|
/* Static Methods */
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
/**
|
2012-02-06 23:50:56 +00:00
|
|
|
* Creates a new ve.Range object that's a translated version of another.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-02 21:00:55 +00:00
|
|
|
* @method
|
2012-02-06 23:50:56 +00:00
|
|
|
* @param {ve.Range} range Range to base new range on
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
* @param {Number} distance Distance to move range by
|
2012-02-06 23:50:56 +00:00
|
|
|
* @returns {ve.Range} New translated range
|
2011-11-02 21:00:55 +00:00
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.newFromTranslatedRange = function ( range, distance ) {
|
2012-02-06 23:50:56 +00:00
|
|
|
return new ve.Range( range.from + distance, range.to + distance );
|
2011-11-02 21:00:55 +00:00
|
|
|
};
|
|
|
|
|
2012-06-20 01:20:28 +00:00
|
|
|
/**
|
|
|
|
* Creates a new ve.Range object that covers all of the given ranges
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @param {Array} ranges Array of ve.Range objects (at least one)
|
|
|
|
* @returns {ve.Range} Range that spans all of the given ranges
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.newCoveringRange = function ( ranges ) {
|
2012-06-20 01:20:28 +00:00
|
|
|
var minStart, maxEnd, i;
|
|
|
|
if ( !ranges || ranges.length === 0 ) {
|
2012-08-08 17:48:53 +00:00
|
|
|
throw new Error( 'newCoveringRange() requires at least one range' );
|
2012-06-20 01:20:28 +00:00
|
|
|
}
|
|
|
|
minStart = ranges[0].start;
|
|
|
|
maxEnd = ranges[0].end;
|
|
|
|
for ( i = 1; i < ranges.length; i++ ) {
|
|
|
|
if ( ranges[i].start < minStart ) {
|
|
|
|
minStart = ranges[i].start;
|
|
|
|
}
|
|
|
|
if ( ranges[i].end > maxEnd ) {
|
|
|
|
maxEnd = ranges[i].end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new ve.Range( minStart, maxEnd );
|
|
|
|
};
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
/* Methods */
|
|
|
|
|
2011-11-10 01:28:01 +00:00
|
|
|
/**
|
|
|
|
* Gets a clone of this object.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-10 01:28:01 +00:00
|
|
|
* @method
|
2012-02-06 23:50:56 +00:00
|
|
|
* @returns {ve.Range} Clone of range
|
2011-11-10 01:28:01 +00:00
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.prototype.clone = function () {
|
2012-02-06 23:50:56 +00:00
|
|
|
return new ve.Range( this.from, this.to );
|
2011-11-10 01:28:01 +00:00
|
|
|
};
|
|
|
|
|
2011-11-02 21:00:55 +00:00
|
|
|
/**
|
|
|
|
* Checks if an offset is within this range.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-02 21:00:55 +00:00
|
|
|
* @method
|
2012-09-17 13:30:50 +00:00
|
|
|
* @param {Number} offset Offset to check
|
2011-11-02 21:00:55 +00:00
|
|
|
* @returns {Boolean} If offset is within this range
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.prototype.containsOffset = function ( offset ) {
|
2011-11-02 21:00:55 +00:00
|
|
|
this.normalize();
|
|
|
|
return offset >= this.start && offset < this.end;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the length of the range.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-02 21:00:55 +00:00
|
|
|
* @method
|
Object management: Object create/inherit/clone utilities
* For the most common case:
- replace ve.extendClass with ve.inheritClass (chose slightly
different names to detect usage of the old/new one, and I
like 'inherit' better).
- move it up to below the constructor, see doc block for why.
* Cases where more than 2 arguments were passed to
ve.extendClass are handled differently depending on the case.
In case of a longer inheritance tree, the other arguments
could be omitted (like in "ve.ce.FooBar, ve.FooBar,
ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar,
because ve.ce.FooBar inherits from ve.Bar).
In the case of where it previously had two mixins with
ve.extendClass(), either one becomes inheritClass and one
a mixin, both to mixinClass().
No visible changes should come from this commit as the
instances still all have the same visible properties in the
end. No more or less than before.
* Misc.:
- Be consistent in calling parent constructors in the
same order as the inheritance.
- Add missing @extends and @param documentation.
- Replace invalid {Integer} type hint with {Number}.
- Consistent doc comments order:
@class, @abstract, @constructor, @extends, @params.
- Fix indentation errors
A fairly common mistake was a superfluous space before the
identifier on the assignment line directly below the
documentation comment.
$ ack "^ [^*]" --js modules/ve
- Typo "Inhertiance" -> "Inheritance".
- Replacing the other confusing comment "Inheritance" (inside
the constructor) with "Parent constructor".
- Add missing @abstract for ve.ui.Tool.
- Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js
- Add function names to all @constructor functions. Now that we
have inheritance it is important and useful to have these
functions not be anonymous.
Example of debug shot: http://cl.ly/image/1j3c160w3D45
Makes the difference between
< documentNode;
> ve_dm_DocumentNode
...
: ve_dm_BranchNode
...
: ve_dm_Node
...
: ve_dm_Node
...
: Object
...
without names (current situation):
< documentNode;
> Object
...
: Object
...
: Object
...
: Object
...
: Object
...
though before this commit, it really looks like this
(flattened since ve.extendClass really did a mixin):
< documentNode;
> Object
...
...
...
Pattern in Sublime (case-sensitive) to find nameless
constructor functions:
"^ve\..*\.([A-Z])([^\.]+) = function \("
Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
2012-09-05 06:07:47 +00:00
|
|
|
* @returns {Number} Length of range
|
2011-11-02 21:00:55 +00:00
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.prototype.getLength = function () {
|
2011-11-02 21:00:55 +00:00
|
|
|
return Math.abs( this.from - this.to );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets start and end properties, ensuring start is always before end.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-02 21:00:55 +00:00
|
|
|
* This should always be called before using the start or end properties. Do not call this unless
|
|
|
|
* you are about to use these properties.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-11-02 21:00:55 +00:00
|
|
|
* @method
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.prototype.normalize = function () {
|
2011-11-02 21:00:55 +00:00
|
|
|
if ( this.from < this.to ) {
|
|
|
|
this.start = this.from;
|
|
|
|
this.end = this.to;
|
|
|
|
} else {
|
|
|
|
this.start = this.to;
|
|
|
|
this.end = this.from;
|
|
|
|
}
|
|
|
|
};
|
2011-12-07 22:28:07 +00:00
|
|
|
|
2012-07-03 20:28:10 +00:00
|
|
|
/**
|
|
|
|
* Swaps from and to values, effectively changing the direction.
|
|
|
|
*
|
|
|
|
* The range will also be normalized when this is called.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.prototype.flip = function () {
|
2012-07-03 20:28:10 +00:00
|
|
|
var from = this.from;
|
|
|
|
this.from = this.to;
|
|
|
|
this.to = from;
|
|
|
|
this.normalize();
|
|
|
|
};
|
|
|
|
|
2011-12-07 22:28:07 +00:00
|
|
|
/**
|
|
|
|
* Determines if two Ranges are equal. Direction counts.
|
|
|
|
*
|
|
|
|
* @method
|
2012-02-06 23:50:56 +00:00
|
|
|
* @param {ve.Range}
|
2011-12-07 22:28:07 +00:00
|
|
|
* @returns {Boolean}
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.Range.prototype.equals = function ( other ) {
|
2011-12-07 22:28:07 +00:00
|
|
|
return this.from === other.from && this.to === other.to;
|
|
|
|
};
|
2012-09-07 01:04:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new ve.Range object.
|
|
|
|
*
|
|
|
|
* @method
|
2012-09-17 13:30:50 +00:00
|
|
|
* @param {Number} Length of the new range.
|
2012-09-07 01:04:51 +00:00
|
|
|
* @returns {ve.Range} A new range.
|
|
|
|
*/
|
|
|
|
ve.Range.prototype.truncate = function ( length ) {
|
|
|
|
var diff = 0;
|
|
|
|
this.normalize();
|
|
|
|
if ( this.getLength() > length ) {
|
|
|
|
diff = this.getLength() - length;
|
|
|
|
}
|
|
|
|
return new ve.Range( this.from, this.to - diff );
|
|
|
|
};
|
2012-09-28 15:06:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if Range is collapsed or not.
|
|
|
|
* @method
|
|
|
|
* @returns {Boolean}
|
|
|
|
*/
|
|
|
|
ve.Range.prototype.isCollapsed = function () {
|
|
|
|
return this.from === this.to;
|
|
|
|
};
|