diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/data/composite/data/withSortedList.js | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/data/composite/data/withSortedList.js b/src/data/composite/data/withSortedList.js index eda050ab..fc0ed9e9 100644 --- a/src/data/composite/data/withSortedList.js +++ b/src/data/composite/data/withSortedList.js @@ -95,37 +95,38 @@ export default templateCompositeFrom({ return comparison; }); - const symbolToStable = new Map(); const stableSortIndices = []; const sortedList = []; + const symbolToStable = new Map(); + const stableToUnstable = new Map(); + for (const [stableIndex, symbol] of symbols.entries()) { const sourceIndex = symbolToIndex.get(symbol); stableSortIndices.push(sourceIndex); symbolToStable.set(symbol, stableIndex); sortedList.push(list[sourceIndex]); - } - const push = (array, value) => { - array.push(value); - return array; - }; + if (stableIndex === 0) { + stableToUnstable.set(stableIndex, 0); + continue; + } + + const previousUnstable = stableToUnstable.get(stableIndex - 1); - const stableToUnstable = - symbols.reduce( - (accumulator, current, index) => - (index === 0 - ? push(accumulator, 0) - : (isEqual(current, symbols[index - 1]) - ? push(accumulator, accumulator.at(-1)) - : push(accumulator, accumulator.at(-1) + 1))), - []); + const newUnstable = + (isEqual(symbol, symbols[stableIndex - 1]) + ? previousUnstable + : previousUnstable + 1); + + stableToUnstable.set(stableIndex, newUnstable); + } const unstableSortIndices = originalIndices .map(index => indexToSymbol.get(index)) .map(symbol => symbolToStable.get(symbol)) - .map(stable => stableToUnstable[stable]); + .map(stable => stableToUnstable.get(stable)); return continuation({ ['#sortedList']: sortedList, |