2016-10-02 09:14:26 -04:00
|
|
|
import {
|
2016-11-20 13:39:18 -05:00
|
|
|
NOTIFICATIONS_UPDATE,
|
|
|
|
NOTIFICATIONS_REFRESH_SUCCESS,
|
|
|
|
NOTIFICATIONS_EXPAND_SUCCESS
|
2016-10-30 10:06:43 -04:00
|
|
|
} from '../actions/notifications';
|
2016-11-23 16:57:57 -05:00
|
|
|
import { ACCOUNT_BLOCK_SUCCESS } from '../actions/accounts';
|
2016-10-30 10:06:43 -04:00
|
|
|
import Immutable from 'immutable';
|
2016-09-12 13:20:55 -04:00
|
|
|
|
2016-11-20 13:39:18 -05:00
|
|
|
const initialState = Immutable.Map({
|
|
|
|
items: Immutable.List(),
|
|
|
|
next: null,
|
|
|
|
loaded: false
|
|
|
|
});
|
|
|
|
|
|
|
|
const notificationToMap = notification => Immutable.Map({
|
|
|
|
id: notification.id,
|
|
|
|
type: notification.type,
|
|
|
|
account: notification.account.id,
|
|
|
|
status: notification.status ? notification.status.id : null
|
|
|
|
});
|
|
|
|
|
|
|
|
const normalizeNotification = (state, notification) => {
|
|
|
|
return state.update('items', list => list.unshift(notificationToMap(notification)));
|
|
|
|
};
|
|
|
|
|
|
|
|
const normalizeNotifications = (state, notifications, next) => {
|
|
|
|
let items = Immutable.List();
|
|
|
|
const loaded = state.get('loaded');
|
|
|
|
|
|
|
|
notifications.forEach((n, i) => {
|
|
|
|
items = items.set(i, notificationToMap(n));
|
|
|
|
});
|
|
|
|
|
|
|
|
return state.update('items', list => loaded ? list.unshift(...items) : list.push(...items)).set('next', next).set('loaded', true);
|
|
|
|
};
|
|
|
|
|
|
|
|
const appendNormalizedNotifications = (state, notifications, next) => {
|
|
|
|
let items = Immutable.List();
|
|
|
|
|
|
|
|
notifications.forEach((n, i) => {
|
|
|
|
items = items.set(i, notificationToMap(n));
|
|
|
|
});
|
|
|
|
|
|
|
|
return state.update('items', list => list.push(...items)).set('next', next);
|
|
|
|
};
|
2016-09-17 10:36:10 -04:00
|
|
|
|
2016-11-23 16:57:57 -05:00
|
|
|
const filterNotifications = (state, relationship) => {
|
|
|
|
return state.update('items', list => list.filterNot(item => item.get('account') === relationship.id));
|
|
|
|
};
|
|
|
|
|
2016-09-19 17:25:59 -04:00
|
|
|
export default function notifications(state = initialState, action) {
|
2016-09-12 13:20:55 -04:00
|
|
|
switch(action.type) {
|
2016-11-20 13:39:18 -05:00
|
|
|
case NOTIFICATIONS_UPDATE:
|
|
|
|
return normalizeNotification(state, action.notification);
|
|
|
|
case NOTIFICATIONS_REFRESH_SUCCESS:
|
|
|
|
return normalizeNotifications(state, action.notifications, action.next);
|
|
|
|
case NOTIFICATIONS_EXPAND_SUCCESS:
|
|
|
|
return appendNormalizedNotifications(state, action.notifications, action.next);
|
2016-11-23 16:57:57 -05:00
|
|
|
case ACCOUNT_BLOCK_SUCCESS:
|
|
|
|
return filterNotifications(state, action.relationship);
|
2016-09-12 13:20:55 -04:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|