20 lines
412 B
JavaScript
20 lines
412 B
JavaScript
|
import { SNIPPETED_MESSAGES } from '../actions/actionsTypes';
|
||
|
|
||
|
const initialState = {
|
||
|
messages: []
|
||
|
};
|
||
|
|
||
|
export default function server(state = initialState, action) {
|
||
|
switch (action.type) {
|
||
|
case SNIPPETED_MESSAGES.MESSAGES_RECEIVED:
|
||
|
return {
|
||
|
...state,
|
||
|
messages: [...state.messages, ...action.messages]
|
||
|
};
|
||
|
case SNIPPETED_MESSAGES.CLOSE:
|
||
|
return initialState;
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
}
|