fix artifact not updating with versioning
[sdc/sdc-workflow-designer.git] / workflow-designer-ui / src / main / frontend / src / features / version / versionReducer.js
1 /*
2 * Copyright © 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 or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 import {
17     SET_CURRENT_VERSION,
18     DETAILS_CHANGED,
19     VERSION_STATE_CHANGED,
20     TOGGLE_COMPOSITION_UPDATE
21 } from 'features/version/versionConstants';
22
23 const initialState = {
24     isCompositionUpdating: false
25 };
26
27 function versionReducer(state = initialState, action) {
28     switch (action.type) {
29         case SET_CURRENT_VERSION:
30             return action.payload;
31         case DETAILS_CHANGED:
32             return {
33                 ...state,
34                 ...action.payload
35             };
36         case VERSION_STATE_CHANGED:
37             return {
38                 ...state,
39                 ...action.payload
40             };
41         case TOGGLE_COMPOSITION_UPDATE:
42             return {
43                 ...state,
44                 isCompositionUpdating: action.payload.isCompositionUpdating
45             };
46         default:
47             return state;
48     }
49 }
50
51 export default versionReducer;