function offsetInterval(values, {
value = [values[0], values[values.length - 1]],
formatValue = v => v,
format = ([a, b]) => `${formatValue(a)} … ${formatValue(b)}`,
...options
} = {}) {
if(new Set(values).size < values.length) throw Error("All values have to be unique.");
const valueof = i => values[i];
const indexof = v => values.indexOf(v);
const _format = i => formatValue(valueof(i));
const input = interval([0, values.length - 1], {
...options,
step: 1,
value: value.map(indexof),
format: v => format(v.map(valueof)),
});
return mapInputValue(input, indices => indices.map(valueof), dates => dates.map(indexof));
}