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 from 'react';
17 import PropTypes from 'prop-types';
18 import { Localize, Translate } from 'react-redux-i18n';
20 const VersionListItem = ({ data, onSelectVersion, isHeader, isSelected }) => {
21 let { modificationTime, name, state, description } = data;
22 const modificationText = !isHeader ? (
23 <Localize value={modificationTime} dateFormat="date.long" />
25 <Translate value="workflow.overview.lastEdited" />
28 function onVersionClick() {
29 onSelectVersion(data);
34 data-test-id="version-item-row"
35 className={`version-item-row ${
36 isHeader ? 'header-row' : 'clickable'
37 } ${isSelected ? 'selected' : ''}`}
38 onClick={onVersionClick}>
40 className={`version-item-field ${
41 isHeader ? 'header-field item-version' : 'item-version'
46 className={`version-item-field ${
47 isHeader ? 'header-field item-status' : 'item-status'
52 className={`version-item-field ${
53 isHeader ? 'header-field' : 'item-last-edited'
58 className={`version-item-field ${
59 isHeader ? 'header-field' : 'item-description'
61 <div className="description-text">{description}</div>
67 VersionListItem.propTypes = {
68 data: PropTypes.object,
69 onSelectVersion: PropTypes.func,
70 isHeader: PropTypes.bool,
71 isSelected: PropTypes.bool
74 export default VersionListItem;