2017-03-18 08:35:17 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-04-04 04:36:03 +00:00
|
|
|
// Create plain text entries corresponding to areas of the text that match no
|
|
|
|
// existing entries. Returns an empty array if all parts of the text have been
|
|
|
|
// parsed into recognizable entries already.
|
2017-03-18 08:35:17 +00:00
|
|
|
function fill(existingEntries, text) {
|
|
|
|
let position = 0;
|
|
|
|
|
2017-04-04 04:36:03 +00:00
|
|
|
// Fill inner parts of the text. For example, if text is `foobarbaz` and both
|
|
|
|
// `foo` and `baz` have matched into an entry, this will return a dummy entry
|
|
|
|
// corresponding to `bar`.
|
|
|
|
const result = existingEntries.reduce((acc, textSegment) => {
|
2017-03-18 08:35:17 +00:00
|
|
|
if (textSegment.start > position) {
|
2017-04-04 04:36:03 +00:00
|
|
|
acc.push({
|
2017-03-18 08:35:17 +00:00
|
|
|
start: position,
|
|
|
|
end: textSegment.start
|
|
|
|
});
|
|
|
|
}
|
|
|
|
position = textSegment.end;
|
2017-04-04 04:36:03 +00:00
|
|
|
return acc;
|
|
|
|
}, []);
|
2017-03-18 08:35:17 +00:00
|
|
|
|
2017-04-04 04:36:03 +00:00
|
|
|
// Complete the unmatched end of the text with a dummy entry
|
2017-03-18 08:35:17 +00:00
|
|
|
if (position < text.length) {
|
|
|
|
result.push({
|
|
|
|
start: position,
|
|
|
|
end: text.length
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = fill;
|