|
12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @format
- *
- * @emails oncall+draft_js
- */
- 'use strict';
-
- var DraftStringKey = require("./DraftStringKey");
-
- var UnicodeUtils = require("fbjs/lib/UnicodeUtils");
-
- var strlen = UnicodeUtils.strlen;
- /**
- * Convert to UTF-8 character counts for storage.
- */
-
- function encodeEntityRanges(block, storageMap) {
- var encoded = [];
- block.findEntityRanges(function (character) {
- return !!character.getEntity();
- }, function (
- /*number*/
- start,
- /*number*/
- end) {
- var text = block.getText();
- var key = block.getEntityAt(start);
- encoded.push({
- offset: strlen(text.slice(0, start)),
- length: strlen(text.slice(start, end)),
- // Encode the key as a number for range storage.
- key: Number(storageMap[DraftStringKey.stringify(key)])
- });
- });
- return encoded;
- }
-
- module.exports = encodeEntityRanges;
|