react 16 upgrade
[sdc.git] / openecomp-ui / src / nfvo-components / modal / GlobalModalReducer.js
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 import { actionTypes, typeEnum } from './GlobalModalConstants.js';
18
19 export default (state = null, action) => {
20     switch (action.type) {
21         case actionTypes.GLOBAL_MODAL_SHOW:
22             return {
23                 ...action.data
24             };
25         case actionTypes.GLOBAL_MODAL_ERROR:
26             return {
27                 type: typeEnum.ERROR,
28                 ...action.data
29             };
30         case actionTypes.GLOBAL_MODAL_WARNING:
31             return {
32                 type: typeEnum.WARNING,
33                 ...action.data
34             };
35
36         case actionTypes.GLOBAL_MODAL_SUCCESS:
37             return {
38                 type: typeEnum.SUCCESS,
39                 ...action.data
40             };
41
42         case actionTypes.GLOBAL_MODAL_CLOSE:
43             return null;
44         default:
45             return state;
46     }
47 };