2 * Copyright © 2018 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 import React, { Component } from 'react';
17 import PropTypes from 'prop-types';
19 import ActionButtons from 'features/version/versionController/views/ActionButtons';
20 import VersionContainer from 'features/version/versionController/views/VersionsContainer';
21 import WorkflowTitle from 'features/version/versionController/views/WorkflowTitle';
22 import { versionState as versionStateType } from 'features/version/versionConstants';
24 export default class VersionControllerView extends Component {
26 location: PropTypes.object,
27 workflowName: PropTypes.string,
28 currentWorkflowVersion: PropTypes.string,
29 viewableVersions: PropTypes.arrayOf(Object),
30 callForAction: PropTypes.func,
31 getVersions: PropTypes.func,
32 versionsList: PropTypes.array,
33 history: PropTypes.object,
34 getOverview: PropTypes.func,
35 match: PropTypes.object,
36 savedParams: PropTypes.object,
37 saveParamsToServer: PropTypes.func,
38 workflowId: PropTypes.string,
39 versionState: PropTypes.string,
40 certifyVersion: PropTypes.func
47 dynamicDispatcher = (action, payload) => {
48 const { history, callForAction } = this.props;
50 typeof action === 'object'
51 ? action.target.attributes.actionType.value
53 let pageName = history.location.pathname.split('/').pop();
54 callForAction(pageName + '/' + actionName, payload);
57 routeToOverview = () => {
58 const { history, match } = this.props;
59 const workflowId = match.params.workflowId;
60 history.push('/workflow/' + workflowId + '/overview');
63 sendSaveParamsToServer = () => {
64 const { savedParams, saveParamsToServer, workflowId } = this.props;
65 saveParamsToServer({ params: savedParams, workflowId });
68 certifyVersion = () => {
72 currentWorkflowVersion
74 certifyVersion({ workflowId, versionId: currentWorkflowVersion });
79 currentWorkflowVersion,
84 let isCertifyDisable =
86 versionState.toLowerCase() === versionStateType.CERTIFIED;
88 <div className="version-controller-bar">
89 <WorkflowTitle workflowName={workflowName} />
90 <div className="vc-container">
92 currentWorkflowVersion={currentWorkflowVersion}
93 viewableVersions={versionsList}
94 onOverviewClick={this.routeToOverview}
97 onSaveClick={this.sendSaveParamsToServer}
98 certifyDisabled={isCertifyDisable}
99 onCertifyClick={this.certifyVersion}
107 VersionControllerView.defaultProps = {
108 getVersions: () => {},
109 callForAction: () => {}