2023-07-08 20:01:08 +02:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
2016-11-20 19:39:18 +01:00
|
|
|
import {
|
|
|
|
ALERT_SHOW,
|
|
|
|
ALERT_DISMISS,
|
2017-05-20 17:31:47 +02:00
|
|
|
ALERT_CLEAR,
|
2016-11-20 19:39:18 +01:00
|
|
|
} from '../actions/alerts';
|
|
|
|
|
2017-07-11 01:00:14 +02:00
|
|
|
const initialState = ImmutableList([]);
|
2016-11-20 19:39:18 +01:00
|
|
|
|
2023-07-08 20:01:08 +02:00
|
|
|
let id = 0;
|
|
|
|
|
|
|
|
const addAlert = (state, alert) =>
|
|
|
|
state.push({
|
|
|
|
key: id++,
|
|
|
|
...alert,
|
|
|
|
});
|
|
|
|
|
2016-11-20 19:39:18 +01:00
|
|
|
export default function alerts(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-15 13:27:27 +02:00
|
|
|
case ALERT_SHOW:
|
2023-07-08 20:01:08 +02:00
|
|
|
return addAlert(state, action.alert);
|
2017-04-15 13:27:27 +02:00
|
|
|
case ALERT_DISMISS:
|
2023-07-08 20:01:08 +02:00
|
|
|
return state.filterNot(item => item.key === action.alert.key);
|
2017-04-15 13:27:27 +02:00
|
|
|
case ALERT_CLEAR:
|
|
|
|
return state.clear();
|
|
|
|
default:
|
|
|
|
return state;
|
2016-11-20 19:39:18 +01:00
|
|
|
}
|
2022-12-18 16:51:37 +01:00
|
|
|
}
|