Add new code new version
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / entitlementPools / EntitlementPoolsListReducer.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 import {actionTypes} from './EntitlementPoolsConstants';
22 export default (state = [], action) => {
23         switch (action.type) {
24                 case actionTypes.ENTITLEMENT_POOLS_LIST_LOADED:
25                         return [...action.response.results];
26                 case actionTypes.ADD_ENTITLEMENT_POOL:
27                         return [...state, action.entitlementPool];
28                 case actionTypes.EDIT_ENTITLEMENT_POOL:
29                         const indexForEdit = state.findIndex(entitlementPool => entitlementPool.id === action.entitlementPool.id);
30                         return [...state.slice(0, indexForEdit), action.entitlementPool, ...state.slice(indexForEdit + 1)];
31                 case actionTypes.DELETE_ENTITLEMENT_POOL:
32                         return state.filter(entitlementPool => entitlementPool.id !== action.entitlementPoolId);
33                 default:
34                         return state;
35         }
36 };