summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/onboarding/OnboardingCatalogView.jsx
blob: f2a9db1342bcb13c7c586e8a6f2367bdb7e1ad25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import React from 'react';
import i18n from 'nfvo-utils/i18n/i18n.js';
import Modal from 'nfvo-components/modal/Modal.jsx';
import objectValues from 'lodash/values.js';
import LicenseModelCreation from './licenseModel/creation/LicenseModelCreation.js';
import SoftwareProductCreation from './softwareProduct/creation/SoftwareProductCreation.js';
import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
import classnames from 'classnames';
import ExpandableInput from 'nfvo-components/input/ExpandableInput.jsx';

export const catalogItemTypes = Object.freeze({
	LICENSE_MODEL: 'license-model',
	SOFTWARE_PRODUCT: 'software-product'
});

const catalogItemTypeClasses = {
	LICENSE_MODEL: 'license-model-type',
	SOFTWARE_PRODUCT: 'software-product-type'
};

class OnboardingCatalogView extends React.Component {

	constructor(props) {
		super(props);
		this.state = {searchValue: ''};
		this.handleSearch = this.handleSearch.bind(this);
	}

	handleSearch(event){
		this.setState({searchValue: event.target.value});
	}

	static propTypes = {
		licenseModelList: React.PropTypes.array,
		softwareProductList: React.PropTypes.array,
		modalToShow: React.PropTypes.oneOf(objectValues(catalogItemTypes)),
		onSelectLicenseModel: React.PropTypes.func.isRequired,
		onSelectSoftwareProduct: React.PropTypes.func.isRequired,
		onAddLicenseModelClick: React.PropTypes.func.isRequired,
		onAddSoftwareProductClick: React.PropTypes.func.isRequired
	};

	getModalDetails() {
		const {modalToShow} = this.props;
		switch (modalToShow) {
			case catalogItemTypes.LICENSE_MODEL:
				return {
					title: i18n('New License Model'),
					element: <LicenseModelCreation/>
				};
			case catalogItemTypes.SOFTWARE_PRODUCT:
				return {
					title: i18n('New Software Product'),
					element: <SoftwareProductCreation/>
				};
		}
	}

	render() {
		const modalDetails = this.getModalDetails();
		const {licenseModelList, softwareProductList, onSelectLicenseModel, onSelectSoftwareProduct, onAddLicenseModelClick, onAddSoftwareProductClick, modalToShow} = this.props;

		return (
			<div className='catalog-view'>
				<div className='catalog-header'>
					<div className='catalog-header-title'>{i18n('Onboarding Catalog')}</div>
					<ExpandableInput
						onChange={this.handleSearch}
						iconType='search'/>
				</div>
				<div className='catalog-list'>

					<div className='create-catalog-item tile'>
						<div className='plus-section'>
							<div className='plus-icon-button'/>
							<span>{i18n('ADD')}</span>
						</div>
						<div className='primary-btn new-license-model'>
							<span
								className='primary-btn-text'
								onClick={() => onAddLicenseModelClick()}>{i18n('New License Model')}</span></div>
						<div className='primary-btn'>
							<span
								className='primary-btn-text'
								onClick={() => onAddSoftwareProductClick()}>{i18n('New Vendor Software Product')}</span>
						</div>
					</div>
					{licenseModelList.filter(vlm => vlm.vendorName.toLowerCase().indexOf(this.state.searchValue.toLowerCase()) > -1).map(licenseModel => this.renderTile(
						{
							...licenseModel,
							name: licenseModel.vendorName
						},
						catalogItemTypeClasses.LICENSE_MODEL,
						() => onSelectLicenseModel(licenseModel))
					)}
					{softwareProductList.filter(vsp => vsp.name.toLowerCase().indexOf(this.state.searchValue.toLowerCase()) > -1).map(softwareProduct => this.renderTile(softwareProduct,
						catalogItemTypeClasses.SOFTWARE_PRODUCT,
						() => onSelectSoftwareProduct(softwareProduct))
					)}
				</div>
				<Modal
					show={Boolean(modalDetails)}
					className={`${this.getCatalogItemTypeClassByItemType(modalToShow)}-modal`}>
					<Modal.Header>
						<Modal.Title>{modalDetails && modalDetails.title}</Modal.Title>
					</Modal.Header>
					<Modal.Body>
						{
							modalDetails && modalDetails.element
						}
					</Modal.Body>
				</Modal>
			</div>
		);

	}

	getCatalogItemTypeClassByItemType(catalogItemType) {
		switch (catalogItemType) {
			case catalogItemTypes.LICENSE_MODEL:
				return catalogItemTypeClasses.LICENSE_MODEL;
			case catalogItemTypes.SOFTWARE_PRODUCT:
				return catalogItemTypeClasses.SOFTWARE_PRODUCT;
		}
	}

	renderTile(catalogItemData, catalogItemTypeClass, onSelect) {
		let {status: itemStatus} = VersionControllerUtils.getCheckOutStatusKindByUserID(catalogItemData.status, catalogItemData.lockingUser);
		return (
			<div className='catalog-tile tile' key={catalogItemData.id} onClick={() => onSelect()}>
				<div className={`catalog-tile-type ${catalogItemTypeClass}`}/>
				<div className='catalog-tile-icon'>
					<div className={`icon ${catalogItemTypeClass}-icon`}></div>
				</div>
				<div className='catalog-tile-content'>
					<div className='catalog-tile-item-details'>
						<div className='catalog-tile-item-name'>{catalogItemData.name}</div>
						<div className='catalog-tile-item-version'>V {catalogItemData.version}</div>
					</div>
					<div className={classnames('catalog-tile-check-in-status', {'sprite-new checkout-editable-status-icon': itemStatus === 'Locked'})}>
					</div>
				</div>
			</div>
		);
	}
}
export default OnboardingCatalogView;