mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
1c78d0a38c
unicodejs.js: * add splitClusters(text) and splitCharacters(text) methods unicodejs.textstring.js: * change internal representation from a char string to a list of grapheme clusters unicodejs.wordbreak.js: * change getGroup to work on the first character of a grapheme cluster ve.js: * Use new unicodejs.splitClusters function Bug: 48975 Change-Id: I202b98199d2780534d1e02519b72579ba796f08f
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.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( '' );
|
|
};
|