[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / dependencies / SoftwareProductDependenciesReducer.js
1
2 /*!
3  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing
15  * permissions and limitations under the License.
16  */
17
18 import {actionTypes, relationTypes} from './SoftwareProductDependenciesConstants.js';
19 import {checkCyclesAndMarkDependencies} from './SoftwareProductDependenciesUtils.js';
20 import uuid from 'uuid-js';
21
22 export default (state = [], action) => {
23         switch (action.type) {
24                 case actionTypes.SOFTWARE_PRODUCT_DEPENDENCIES_LIST_UPDATE:
25                         return checkCyclesAndMarkDependencies(action.dependenciesList);
26                 case actionTypes.ADD_SOFTWARE_PRODUCT_DEPENDENCY:
27                         return [...state, {
28                                 sourceId: null,
29                                 relationType: relationTypes.DEPENDS_ON,
30                                 targetId: null,
31                                 id: uuid.create()
32                         }];
33                 default:
34                         return state;
35         }
36 };