2016-11-20 13:39:18 -05:00
|
|
|
import {
|
|
|
|
ALERT_SHOW,
|
|
|
|
ALERT_DISMISS,
|
2017-05-20 11:31:47 -04:00
|
|
|
ALERT_CLEAR,
|
2016-11-20 13:39:18 -05:00
|
|
|
} from '../actions/alerts';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableList([]);
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
export default function alerts(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-15 07:27:27 -04:00
|
|
|
case ALERT_SHOW:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.push(ImmutableMap({
|
2017-04-15 07:27:27 -04:00
|
|
|
key: state.size > 0 ? state.last().get('key') + 1 : 0,
|
|
|
|
title: action.title,
|
2017-05-20 11:31:47 -04:00
|
|
|
message: action.message,
|
2019-08-27 10:50:39 -04:00
|
|
|
message_values: action.message_values,
|
2017-04-15 07:27:27 -04:00
|
|
|
}));
|
|
|
|
case ALERT_DISMISS:
|
|
|
|
return state.filterNot(item => item.get('key') === action.alert.key);
|
|
|
|
case ALERT_CLEAR:
|
|
|
|
return state.clear();
|
|
|
|
default:
|
|
|
|
return state;
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
|
|
|
};
|