This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-02 06:14:26 -07:00
|
|
|
import {
|
2016-10-18 08:09:45 -07:00
|
|
|
NOTIFICATION_SHOW,
|
|
|
|
NOTIFICATION_DISMISS,
|
|
|
|
NOTIFICATION_CLEAR
|
2016-10-30 07:06:43 -07:00
|
|
|
} from '../actions/notifications';
|
|
|
|
import Immutable from 'immutable';
|
2016-09-12 10:20:55 -07:00
|
|
|
|
2016-10-18 08:09:45 -07:00
|
|
|
const initialState = Immutable.List([]);
|
2016-09-17 07:36:10 -07:00
|
|
|
|
2016-09-19 14:25:59 -07:00
|
|
|
export default function notifications(state = initialState, action) {
|
2016-09-12 10:20:55 -07:00
|
|
|
switch(action.type) {
|
2016-10-18 08:09:45 -07: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 10:20:55 -07:00
|
|
|
case NOTIFICATION_DISMISS:
|
2016-09-21 13:07:18 -07:00
|
|
|
return state.filterNot(item => item.get('key') === action.notification.key);
|
|
|
|
case NOTIFICATION_CLEAR:
|
2016-09-12 10:20:55 -07:00
|
|
|
return state.clear();
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|