С помощью нокаута вы можете использовать цепочку вычисленных свойств, чтобы получить нужный (UI?) Формат!
Отказ от ответственности: я предполагаю, что этот список не будет содержать тысячи элементов
1.Группировка
Первый шаг - перейти от списка (ko.observableArray([])
) элементов к вычисляемому объекту, который группируется по id:
// Search for "group by javascript" to have this function explained
const groupBy = (prop, xs) => xs.reduce(
(acc, x) => Object.assign(acc, { [x[prop]]: (acc[x[prop]] || []).concat(x) }), {}
);
const items = ko.observableArray([]);
const itemsById = ko.pureComputed(() =>
groupBy("Id", items())
);
itemsById.subscribe(console.log);
items([{Id: 0, count1: 5, count2: 10, yearMonth: "201803"},{Id: 0, count1: 10, count2: 0, yearMonth: "201804"},{Id: 1, count1: 900, count2: 200, yearMonth: "201805"},{Id: 0, count1: 10, count2: 0, yearMonth: "201806"},{Id: 1, count1: 100, count2: 100, yearMonth: "201807"},{Id: 1, count1: 100, count2: 2, yearMonth: "201808"}]);
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
2.Слияние
Теперь, когда мы сгруппировали списки элементов, которые необходимо суммировать, мы можем начать применять нашу логику слияния:
const itemsWithSameId = [{Id:0,count1:5,count2:10,yearMonth:"201803"},{Id:0,count1:10,count2:0,yearMonth:"201804"},{Id:0,count1:10,count2:0,yearMonth:"201806"}];
const merge = (itemA, itemB) => ({
Id: itemB.Id,
count1: itemA.count1 + itemB.count1,
count2: itemA.count2 + itemB.count2
});
// Look up "merging objects using reduce in javascript" to find out more
console.log(
itemsWithSameId.reduce(merge, { count1: 0, count2: 0 })
)
3.Возвращаясь от индексированного объекта к массиву
Теперь, когда мы знаем, как объединить наши группы, мы можем вернуться к массиву, который нам нужен в нашем пользовательском интерфейсе:
// Utilities:
const groupBy = (prop, xs) => xs.reduce(
(acc, x) => Object.assign(acc, {
[x[prop]]: (acc[x[prop]] || []).concat(x)
}), {}
);
// Data Logic:
const merge = (itemA, itemB) => ({
Id: itemB.Id,
count1: itemA.count1 + itemB.count1,
count2: itemA.count2 + itemB.count2
});
// App
const items = ko.observableArray([]);
const itemsById = ko.pureComputed(() =>
groupBy("Id", items())
);
// Look up "mapping over the values of a javascript object" for more info
const summedItems = ko.pureComputed(() =>
Object
.values(itemsById())
.map(items => items.reduce(merge, { count1: 0, count2: 0 }))
);
// Apply bindings with viewmodel exposing summedItems
ko.applyBindings({ summedItems });
// Inject data (probably in success callback of ajax call)
items([{Id: 0, count1: 5, count2: 10, yearMonth: "201803"},{Id: 0, count1: 10, count2: 0, yearMonth: "201804"},{Id: 1, count1: 900, count2: 200, yearMonth: "201805"},{Id: 0, count1: 10, count2: 0, yearMonth: "201806"},{Id: 1, count1: 100, count2: 100, yearMonth: "201807"},{Id: 1, count1: 100, count2: 2, yearMonth: "201808"}]);
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<table>
<thead>
<tr>
<th>Id</th>
<th>Count 1</th>
<th>Count 2</th>
</tr>
</thead>
<tbody data-bind="foreach: summedItems">
<td data-bind="text: Id"></td>
<td data-bind="text: count1"></td>
<td data-bind="text: count2"></td>
</tbody>
</table>