mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-06 06:29:11 +00:00
a1eb56c14f
unicodejs.graphemebreak.js * New file: singleton class with splitClusters method * On load, builds graphemeBreakRegexp from unicodejs.graphemebreakproperties.js unicodejs.js * Remove old splitClusters method (was just a placeholder) * Change "conjunction" -> "disjunction", for consistency and correctness unicodejs.textstring.js * Use new splitClusters method modules/ve/ve.js * Use new splitClusters method unicodejs.wordbreak.text.js * Add new splitClusters test * Refactor charRangeArrayRegexp test to use splitClusters PHP files * add unicodejs.graphemebreak.js, unicodejs.graphemebreakproperties.js .docs/categories.json * add unicodeJS.wordbreak class Change-Id: I8f512e2fc2c46eb4b5f00994a8dac88f3c8f7dd2
67 lines
1.7 KiB
JavaScript
67 lines
1.7 KiB
JavaScript
/*!
|
|
* UnicodeJS TextString class.
|
|
*
|
|
* @copyright 2013 UnicodeJS team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* This class provides a simple interface to fetching plain text
|
|
* from a data source. The base class reads data from a string, but
|
|
* an extended class could provide access to a more complex structure,
|
|
* e.g. an array or an HTML document tree.
|
|
*
|
|
* @class unicodeJS.TextString
|
|
* @constructor
|
|
* @param {string} text Text
|
|
*/
|
|
unicodeJS.TextString = function UnicodeJSTextString( text ) {
|
|
this.clusters = unicodeJS.graphemebreak.splitClusters( text );
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Read grapheme cluster at specified position
|
|
*
|
|
* @method
|
|
* @param {number} position Position to read from
|
|
* @returns {string|null} Grapheme cluster, or null if out of bounds
|
|
*/
|
|
unicodeJS.TextString.prototype.read = function ( position ) {
|
|
var clusterAt = this.clusters[position];
|
|
return clusterAt !== undefined ? clusterAt : null;
|
|
};
|
|
|
|
/**
|
|
* Return number of grapheme clusters in the text string
|
|
*
|
|
* @method
|
|
* @returns {number} Number of grapheme clusters
|
|
*/
|
|
unicodeJS.TextString.prototype.getLength = function () {
|
|
return this.clusters.length;
|
|
};
|
|
|
|
/**
|
|
* Return a sub-TextString
|
|
*
|
|
* @param {number} start Start offset
|
|
* @param {number} end End offset
|
|
* @returns {unicodeJS.TextString} New TextString object containing substring
|
|
*/
|
|
unicodeJS.TextString.prototype.substring = function ( start, end ) {
|
|
var textString = new unicodeJS.TextString( '' );
|
|
textString.clusters = this.clusters.slice( start, end );
|
|
return textString;
|
|
};
|
|
|
|
/**
|
|
* Get as a plain string
|
|
*
|
|
* @returns {string} Plain javascript string
|
|
*/
|
|
unicodeJS.TextString.prototype.getString = function () {
|
|
return this.clusters.join( '' );
|
|
};
|