Browse Source

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

pull/4/head
Akihiko Odaki 6 years ago
committed by Eugen Rochko
parent
commit
59657e24b9
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/javascript/mastodon/reducers/notifications.js

+ 3
- 3
app/javascript/mastodon/reducers/notifications.js View File

@ -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);
};

Loading…
Cancel
Save