Migrate sdc-sdc-workflow-designer docs
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-ui / src / main / frontend / src / features / version / inputOutput / inputOutputActions.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 { createActions } from 'redux-actions';
18
19 import {
20     NAME_MAX_LEN,
21     NAMESPACE
22 } from 'features/version/inputOutput/inputOutputConstants';
23
24 export const {
25     [NAMESPACE]: {
26         setInputsOutputs,
27         changeError,
28         showInputs,
29         showOutputs,
30         search,
31         add,
32         changeName,
33         changeType,
34         changeMandatory,
35         remove
36     }
37 } = createActions({
38     [NAMESPACE]: {
39         SET_INPUTS_OUTPUTS: undefined,
40         CHANGE_ERROR: undefined,
41         SHOW_INPUTS: undefined,
42         SHOW_OUTPUTS: undefined,
43         SEARCH: undefined,
44         ADD: undefined,
45         CHANGE_NAME: (name, key) => ({
46             name: name.substr(0, NAME_MAX_LEN),
47             key
48         }),
49         CHANGE_TYPE: (type, key) => ({ type, key }),
50         CHANGE_MANDATORY: (mandatory, key) => ({ mandatory, key }),
51         REMOVE: undefined
52     }
53 });