Add collaboration feature
[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, NEW_RULE_TEMP_ID} from './SoftwareProductDependenciesConstants.js';
19 import {checkCyclesAndMarkDependencies} from './SoftwareProductDependenciesUtils.js';
20
21 let newRowObject = {id: NEW_RULE_TEMP_ID, targetId: null, sourceId: null, relationType: relationTypes.DEPENDS_ON};
22
23 export default (state = [Object.assign({}, newRowObject) ], action) => {
24         switch (action.type) {
25                 case actionTypes.SOFTWARE_PRODUCT_DEPENDENCIES_LIST_UPDATE:
26                         // copying the entity with the data for the row that is in the 'add' mode
27                         let newDependency = state.find(dependency => dependency.id === NEW_RULE_TEMP_ID);
28                         action.dependenciesList.push(newDependency);
29                         // returning list from the server with our 'new entity' row
30                         return checkCyclesAndMarkDependencies(action.dependenciesList);
31                 case actionTypes.ADD_SOFTWARE_PRODUCT_DEPENDENCY :
32                         // resetting the entity with the data for the 'add' mode for a new entity
33                         let newArray = state.filter(dependency => dependency.id !== NEW_RULE_TEMP_ID);
34                         newArray.push(Object.assign({}, newRowObject));
35                         return newArray;
36                 case actionTypes.UPDATE_NEW_SOFTWARE_PRODUCT_DEPENDENCY :
37                         // we really only need this for the 'new' row since we need to change the state to get
38                         // everything updated
39                         let updateArrayIndex = state.findIndex(dependency => dependency.id === NEW_RULE_TEMP_ID);
40                         let updateArray = state.slice();
41                         updateArray.splice(updateArrayIndex, 1, action.item);
42                         return checkCyclesAndMarkDependencies(updateArray);
43                 default:
44                         return state;
45         }
46 };