@atlaskit/renderer
Version:
Renderer component
58 lines • 2.87 kB
JavaScript
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
export function segmentText(text, highlighter) {
if (!highlighter || !text) {
return [{
type: 'plain',
text: text !== null && text !== void 0 ? text : ''
}];
}
var segments = [];
var pos = 0;
try {
var markTextSegmentMatches = text.matchAll(highlighter.pattern);
var _iterator = _createForOfIteratorHelper(markTextSegmentMatches),
_step;
try {
var _loop = function _loop() {
var markTextMatch = _step.value;
if (markTextMatch.index !== 0) {
segments.push({
type: 'plain',
text: text.substring(pos, markTextMatch.index)
});
}
segments.push({
type: 'match',
text: markTextMatch[0],
groups: markTextMatch.groups &&
// Ignored via go/ees005
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
Object.keys(markTextMatch.groups).filter(function (key) {
return markTextMatch.groups[key];
})
});
pos = markTextMatch.index + markTextMatch[0].length;
};
for (_iterator.s(); !(_step = _iterator.n()).done;) {
_loop();
}
} catch (err) {
_iterator.e(err);
} finally {
_iterator.f();
}
if (pos < text.length) {
segments.push({
type: 'plain',
text: text.substring(pos)
});
}
return segments;
} catch (_e) {}
return [{
type: 'plain',
text: text
}];
}