blob: a3383aba43435037ec9bf82b0a44478f3f224f02 [file] [log] [blame]
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03001/*
2 * Copyright © 2016-2018 European Support Limited
AviZi280f8012017-06-09 02:39:56 +03003 *
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 *
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03008 * http://www.apache.org/licenses/LICENSE-2.0
AviZi280f8012017-06-09 02:39:56 +03009 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030012 * 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.
AviZi280f8012017-06-09 02:39:56 +030015 */
16
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020017import { actionTypes, typeEnum } from './GlobalModalConstants.js';
AviZi280f8012017-06-09 02:39:56 +030018
19export default (state = null, action) => {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020020 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,
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020028 ...action.data
29 };
30 case actionTypes.GLOBAL_MODAL_WARNING:
31 return {
32 type: typeEnum.WARNING,
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020033 ...action.data
34 };
AviZi280f8012017-06-09 02:39:56 +030035
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020036 case actionTypes.GLOBAL_MODAL_SUCCESS:
37 return {
38 type: typeEnum.SUCCESS,
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020039 ...action.data
40 };
AviZi280f8012017-06-09 02:39:56 +030041
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020042 case actionTypes.GLOBAL_MODAL_CLOSE:
43 return null;
44 default:
45 return state;
46 }
AviZi280f8012017-06-09 02:39:56 +030047};