Migrate sdc-sdc-workflow-designer docs
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-ui / src / main / frontend / src / shared / modal / modalWrapperActions.js
1 /*
2 * Copyright © 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 { createAction } from 'redux-actions';
18
19 export const SHOW_MODAL = 'modal/SHOW_MODAL';
20 export const HIDE_MODAL = 'modal/HIDE_MODAL';
21
22 export const showInfoModalAction = createAction(SHOW_MODAL, payload => ({
23     size: 'small',
24     ...payload,
25     type: 'info'
26 }));
27
28 export const showAlertModalAction = createAction(SHOW_MODAL, payload => ({
29     size: 'small',
30     ...payload,
31     type: 'alert'
32 }));
33
34 export const showErrorModalAction = createAction(SHOW_MODAL, payload => ({
35     size: 'small',
36     ...payload,
37     type: 'error'
38 }));
39
40 export const showCustomModalAction = createAction(SHOW_MODAL, payload => ({
41     size: 'medium',
42     ...payload,
43     type: 'custom'
44 }));
45
46 export const hideModalAction = createAction(HIDE_MODAL);