d2-ui
Version:
39 lines (33 loc) • 1.15 kB
JavaScript
/**
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule getRangesForDraftEntity
* @typechecks
*
*/
/**
* Obtain the start and end positions of the range that has the
* specified entity applied to it.
*
* Entity keys are applied only to contiguous stretches of text, so this
* method searches for the first instance of the entity key and returns
* the subsequent range.
*/
;
var invariant = require('fbjs/lib/invariant');
function getRangesForDraftEntity(block, key) {
var ranges = [];
block.findEntityRanges(function (c) {
return c.getEntity() === key;
}, function (start, end) {
ranges.push({ start: start, end: end });
});
!!!ranges.length ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Entity key not found in this range.') : invariant(false) : undefined;
return ranges;
}
module.exports = getRangesForDraftEntity;