2016-10-02 09:14:26 -04:00
|
|
|
import {
|
2016-10-18 11:09:45 -04:00
|
|
|
NOTIFICATION_SHOW,
|
|
|
|
NOTIFICATION_DISMISS,
|
|
|
|
NOTIFICATION_CLEAR
|
2016-10-30 10:06:43 -04:00
|
|
|
} from '../actions/notifications';
|
|
|
|
import Immutable from 'immutable';
|
2016-09-12 13:20:55 -04:00
|
|
|
|
2016-10-18 11:09:45 -04:00
|
|
|
const initialState = Immutable.List([]);
|
2016-09-17 10:36:10 -04:00
|
|
|
|
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-10-18 11:09:45 -04:00
|
|
|
case NOTIFICATION_SHOW:
|
|
|
|
return state.push(Immutable.Map({
|
|
|
|
key: state.size > 0 ? state.last().get('key') + 1 : 0,
|
|
|
|
title: action.title,
|
|
|
|
message: action.message
|
|
|
|
}));
|
2016-09-12 13:20:55 -04:00
|
|
|
case NOTIFICATION_DISMISS:
|
2016-09-21 16:07:18 -04:00
|
|
|
return state.filterNot(item => item.get('key') === action.notification.key);
|
|
|
|
case NOTIFICATION_CLEAR:
|
2016-09-12 13:20:55 -04:00
|
|
|
return state.clear();
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|