Entitlement Pool - Support Type Field
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / entitlementPools / EntitlementPoolsEditorReducer.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
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     SP_ENTITLEMENT_POOL_FORM
20 } from './EntitlementPoolsConstants.js';
21 import moment from 'moment';
22 import { DATE_FORMAT } from 'sdc-app/onboarding/OnboardingConstants.js';
23
24 export default (state = {}, action) => {
25     switch (action.type) {
26         case actionTypes.entitlementPoolsEditor.OPEN:
27             let entitlementPoolData = { ...action.entitlementPool };
28             let { startDate, expiryDate } = entitlementPoolData;
29             if (startDate) {
30                 entitlementPoolData.startDate = moment(
31                     startDate,
32                     DATE_FORMAT
33                 ).format(DATE_FORMAT);
34             }
35             if (expiryDate) {
36                 entitlementPoolData.expiryDate = moment(
37                     expiryDate,
38                     DATE_FORMAT
39                 ).format(DATE_FORMAT);
40             }
41             return {
42                 ...state,
43                 formReady: null,
44                 formName: SP_ENTITLEMENT_POOL_FORM,
45                 genericFieldInfo: {
46                     name: {
47                         isValid: true,
48                         errorText: '',
49                         validations: [
50                             { type: 'required', data: true },
51                             { type: 'maxLength', data: 120 }
52                         ]
53                     },
54                     description: {
55                         isValid: true,
56                         errorText: '',
57                         validations: [{ type: 'maxLength', data: 1000 }]
58                     },
59                     type: {
60                         isValid: true,
61                         errorText: '',
62                         validations: [{ type: 'required', data: true }]
63                     },
64                     increments: {
65                         isValid: true,
66                         errorText: '',
67                         validations: [{ type: 'maxLength', data: 120 }]
68                     },
69                     thresholdUnits: {
70                         isValid: true,
71                         errorText: '',
72                         validations: []
73                     },
74                     thresholdValue: {
75                         isValid: true,
76                         errorText: '',
77                         validations: []
78                     },
79                     startDate: {
80                         isValid: true,
81                         errorText: '',
82                         validations: []
83                     },
84                     expiryDate: {
85                         isValid: true,
86                         errorText: '',
87                         validations: []
88                     },
89                     manufacturerReferenceNumber: {
90                         isValid: true,
91                         errorText: '',
92                         validations: [
93                             { type: 'required', data: true },
94                             { type: 'maxLength', data: 100 }
95                         ]
96                     }
97                 },
98                 data: action.entitlementPool
99                     ? entitlementPoolData
100                     : defaultState.ENTITLEMENT_POOLS_EDITOR_DATA
101             };
102         case actionTypes.entitlementPoolsEditor.DATA_CHANGED:
103             return {
104                 ...state,
105                 data: {
106                     ...state.data,
107                     ...action.deltaData
108                 }
109             };
110         case actionTypes.entitlementPoolsEditor.CLOSE:
111             return {};
112
113         case actionTypes.entitlementPoolsEditor.LIMITS_LIST_LOADED:
114             return {
115                 ...state,
116                 limitsList: action.response.results
117             };
118         default:
119             return state;
120     }
121 };