Skip to content
Snippets Groups Projects
Commit 59657e24 authored by Akihiko Odaki's avatar Akihiko Odaki Committed by Eugen Rochko
Browse files

Rename variables to have semantic meanings in notifications reducer (#6890)

parent fe398a09
No related branches found
No related tags found
No related merge requests found
......@@ -49,11 +49,11 @@ const normalizeNotification = (state, notification) => {
};
const normalizeNotifications = (state, notifications, next) => {
let items = ImmutableList();
let newItems = ImmutableList();
const loaded = state.get('loaded');
notifications.forEach((n, i) => {
items = items.set(i, notificationToMap(n));
newItems = newItems.set(i, notificationToMap(n));
});
if (state.get('next') === null) {
......@@ -61,7 +61,7 @@ const normalizeNotifications = (state, notifications, next) => {
}
return state
.update('items', list => loaded ? items.concat(list) : list.concat(items))
.update('items', oldItems => loaded ? newItems.concat(oldItems) : oldItems.concat(newItems))
.set('loaded', true)
.set('isLoading', false);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment