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.object,
29 viewableVersions: PropTypes.arrayOf(Object),
30 getVersions: PropTypes.func,
31 versionsList: PropTypes.array,
32 history: PropTypes.object,
33 getOverview: PropTypes.func,
34 match: PropTypes.object,
35 savedParams: PropTypes.object,
36 saveParamsToServer: PropTypes.func,
37 workflowId: PropTypes.string,
38 versionState: PropTypes.string,
39 certifyVersion: PropTypes.func,
40 changeVersion: PropTypes.func
47 routeToOverview = () => {
48 const { history, match } = this.props;
49 const workflowId = match.params.workflowId;
50 history.push('/workflow/' + workflowId + '/overview');
53 sendSaveParamsToServer = () => {
54 const { savedParams, saveParamsToServer, workflowId } = this.props;
55 saveParamsToServer({ params: savedParams, workflowId });
58 certifyVersion = () => {
62 currentWorkflowVersion
64 certifyVersion({ workflowId, versionId: currentWorkflowVersion.id });
67 versionChangeCallback = versionId => {
68 const { changeVersion, workflowId } = this.props;
69 changeVersion({ versionId, workflowId });
74 currentWorkflowVersion,
79 let isCertifyDisable =
81 versionState.toLowerCase() === versionStateType.CERTIFIED;
83 <div className="version-controller-bar">
84 <WorkflowTitle workflowName={workflowName} />
85 <div className="vc-container">
87 currentWorkflowVersion={currentWorkflowVersion}
88 viewableVersions={versionsList}
89 onOverviewClick={this.routeToOverview}
90 onVersionSelectChange={this.versionChangeCallback}
93 onSaveClick={this.sendSaveParamsToServer}
94 certifyDisabled={isCertifyDisable}
95 onCertifyClick={this.certifyVersion}
103 VersionControllerView.defaultProps = {
104 getVersions: () => {}