Reputation: 668
As an input, I have a string and an array of intervals with colors:
// 0123456789.123456789.123456789.123456789.123
const str = 'The quick brown fox jumps over the lazy dog.';
const colors = [
{from: 0, to: 8, color: 'red'},
{from: 10, to: 14, color: 'brown'},
{from: 16, to: 24, color: 'blue'},
{from: 20, to: 29, color: 'yellow'}
];
Note that the input intervals can intersect!
As output, I want to calculate an array of non-intersecting intervals, with colors and substrings from the given string. The call should look like this:
result = colorizedStrings(str, colors, 'defaultColor');
The result should look like this:
[
{ from: 0, to: 8, sub: 'The quick', colors: ['red' ] },
{ from: 9, to: 9, sub: ' ', colors: ['defaultColor' ] },
{ from: 10, to: 14, sub: 'brown', colors: ['brown' ] },
{ from: 15, to: 15, sub: ' ', colors: ['defaultColor' ] },
{ from: 16, to: 19, sub: 'fox ', colors: ['blue' ] },
{ from: 20, to: 24, sub: 'jumps', colors: ['blue', 'yellow'] },
{ from: 25, to: 29, sub: ' over', colors: ['yellow' ] },
{ from: 30, to: 43, sub: ' the lazy dog.', colors: ['defaultColor' ] },
]
The output intervals contain more than one color when necessary.
I have tried to find an open source Javascript library that calculates the interval intersections. However, I could not find one that is simple and small – the libraries always included fancy stuff (e.g. graphics, charts, etc.). I am looking for "pure math", here.
Can you help me find a suitable solution, please?
Upvotes: 2
Views: 354
Reputation: 386604
You could map the characters and get the colors for each of it and then reduce this array for getting clusters of same colors.
function colorizedStrings(string, colors, defaultColor) {
return Array
.from(string, (sub, i) => {
var t = colors.filter(({ from, to }) => from <= i && i <= to).map(({ color }) => color);
return { sub, colors: t.length ? t : [defaultColor] };
})
.reduce((r, { sub, colors }, i) => {
var last = r[r.length - 1];
if (last && last.colors.join() === colors.join()) {
++last.to;
last.sub += sub;
} else {
r.push({ from: i, to: i, sub, colors });
}
return r;
}, []);
}
// 0123456789.123456789.123456789.123456789.123
var str = 'The quick brown fox jumps over the lazy dog.',
// ---------
// -----
// ---------
// ----------
colors = [{ from: 0, to: 8, color: 'red' }, { from: 10, to: 14, color: 'brown' }, { from: 16, to: 24, color: 'blue' }, { from: 20, to: 29, color: 'yellow' }],
result = colorizedStrings(str, colors, 'defaultColor');
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
Maybe a bit faster with storing of the colors at a given index.
function colorizedStrings(string, colors, defaultColor) {
var colorsAtIndex = [];
colors.forEach(({ from, to, color }) => {
do {
(colorsAtIndex[from] = colorsAtIndex[from] || []).push(color);
} while (from++ < to)
});
return Array
.from(string, (sub, i) => ({ sub, colors: colorsAtIndex[i] || [defaultColor] }))
.reduce((r, { sub, colors }, i) => {
var last = r[r.length - 1];
if (last && last.colors.join() === colors.join()) {
++last.to;
last.sub += sub;
} else {
r.push({ from: i, to: i, sub, colors });
}
return r;
}, []);
}
var str = 'The quick brown fox jumps over the lazy dog.',
colors = [{ from: 0, to: 8, color: 'red' }, { from: 10, to: 14, color: 'brown' }, { from: 16, to: 24, color: 'blue' }, { from: 20, to: 29, color: 'yellow' }],
result = colorizedStrings(str, colors, 'defaultColor');
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
Finally (a more complicated version without using single letters and shorter looping)
function colorizedStrings(string, colors, defaultColor) {
const addColor = (array, color) => array.filter(v => v !== 'defaultColor').concat(color);
return colors.reduce((r, { from, to, color }) =>
r.reduce((s, o) => {
if (to < o.from || from > o.to) { // no appearance
s.push(o);
} else if (from <= o.from && to >= o.to) { // same part
o.colors = addColor(o.colors, color);
s.push(o);
} else if (from <= o.from && to <= o.to) { // split in two parts
s.push(
{ from: o.from, to: to, sub: string.slice(o.from, to + 1), colors: addColor(o.colors, color) },
{ from: to + 1, to: o.to, sub: string.slice(to + 1, o.to + 1), colors: o.colors }
);
} else if (o.from <= from && o.to <= to) { // split in two parts
s.push(
{ from: o.from, to: from, sub: string.slice(o.from, from), colors: o.colors },
{ from: from, to: o.to, sub: string.slice(from, o.to + 1), colors: addColor(o.colors, color) }
);
} else if (from > o.from && to < o.to) { // split in three parts
s.push(
{ from: o.from, to: from - 1, sub: string.slice(o.from, from), colors: o.colors },
{ from: from, to: to, sub: string.slice(from, to + 1), colors: addColor(o.colors, color) },
{ from: to + 1, to: o.to, sub: string.slice(to + 1, o.to + 1), colors: o.colors }
);
} else {
s.push(o);
}
return s;
}, []),
[{ from: 0, to: string.length - 1, sub: string, colors: ['defaultColor'] }]);
}
var str = 'The quick brown fox jumps over the lazy dog.',
colors = [{ from: 0, to: 8, color: 'red' }, { from: 10, to: 14, color: 'brown' }, { from: 16, to: 24, color: 'blue' }, { from: 20, to: 29, color: 'yellow' }],
result = colorizedStrings(str, colors, 'defaultColor');
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
Upvotes: 4