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