2023-05-28 14:38:10 +00:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
import {
|
|
|
|
ALERT_SHOW,
|
|
|
|
ALERT_DISMISS,
|
2017-05-20 15:31:47 +00:00
|
|
|
ALERT_CLEAR,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/alerts';
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
const initialState = ImmutableList([]);
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
export default function alerts(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-15 11:27:27 +00:00
|
|
|
case ALERT_SHOW:
|
2017-07-10 23:00:14 +00:00
|
|
|
return state.push(ImmutableMap({
|
2017-04-15 11:27:27 +00:00
|
|
|
key: state.size > 0 ? state.last().get('key') + 1 : 0,
|
|
|
|
title: action.title,
|
2017-05-20 15:31:47 +00:00
|
|
|
message: action.message,
|
2019-08-27 14:50:39 +00:00
|
|
|
message_values: action.message_values,
|
2017-04-15 11:27:27 +00: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 18:39:18 +00:00
|
|
|
}
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|