Fix license key group and entitlement pools required fields
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / licenseAgreement / LicenseAgreementEditorReducer.js
1 /*!
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 import {
17     actionTypes,
18     defaultState,
19     LA_EDITOR_FORM,
20     enums as LicenseAgreementEnums
21 } from './LicenseAgreementConstants.js';
22 import { other as optionInputOther } from 'nfvo-components/input/validation/InputOptions.jsx';
23
24 export default (state = {}, action) => {
25     switch (action.type) {
26         case actionTypes.licenseAgreementEditor.OPEN:
27             return {
28                 ...state,
29                 formReady: null,
30                 formName: LA_EDITOR_FORM,
31                 genericFieldInfo: {
32                     description: {
33                         isValid: true,
34                         errorText: '',
35                         validations: [{ type: 'maxLength', data: 1000 }],
36                         tabId:
37                             LicenseAgreementEnums.SELECTED_LICENSE_AGREEMENT_TAB
38                                 .GENERAL
39                     },
40                     licenseTerm: {
41                         isValid: true,
42                         errorText: '',
43                         validations: [
44                             { type: 'required', data: true },
45                             {
46                                 type: 'requiredChoiceWithOther',
47                                 data: optionInputOther.OTHER
48                             }
49                         ],
50                         tabId:
51                             LicenseAgreementEnums.SELECTED_LICENSE_AGREEMENT_TAB
52                                 .GENERAL
53                     },
54                     name: {
55                         isValid: true,
56                         errorText: '',
57                         validations: [
58                             { type: 'required', data: true },
59                             { type: 'maxLength', data: 25 },
60                             { type: 'validateName', data: true }
61                         ],
62                         tabId:
63                             LicenseAgreementEnums.SELECTED_LICENSE_AGREEMENT_TAB
64                                 .GENERAL
65                     }
66                 },
67                 data: action.licenseAgreement
68                     ? { ...action.licenseAgreement }
69                     : defaultState.LICENSE_AGREEMENT_EDITOR_DATA
70             };
71         case actionTypes.licenseAgreementEditor.CLOSE:
72             return {};
73         case actionTypes.licenseAgreementEditor.SELECT_TAB:
74             return {
75                 ...state,
76                 selectedTab: action.tab
77             };
78         default:
79             return state;
80     }
81 };