aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/onboarding/licenseModel/overview/LicenseModelOverviewView.jsx
blob: d6c79ddb5286666e1f6d7d64698703cc88b73777 (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
/*!
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
import React from 'react';
import i18n from 'nfvo-utils/i18n/i18n.js';
import Modal from 'nfvo-components/modal/Modal.jsx';
import classNames from 'classnames';

import EntitlementPoolsEditor from '../entitlementPools/EntitlementPoolsEditor.js';
import FeatureGroupEditor from '../featureGroups/FeatureGroupEditor.js';
import LicenseAgreementEditor from '../licenseAgreement/LicenseAgreementEditor.js';
import LicenseKeyGroupsEditor from '../licenseKeyGroups/LicenseKeyGroupsEditor.js';
import {overviewEditorHeaders, selectedButton} from './LicenseModelOverviewConstants.js';

import SummaryView from './SummaryView.jsx';
import VLMListView from './VLMListView.jsx';
import ListButtons from './summary/ListButtons.jsx';


const setModalClassName = (modalHeader) => {
	switch (modalHeader) {
		case overviewEditorHeaders.ENTITLEMENT_POOL:
			return 'entitlement-pools-modal';
		case overviewEditorHeaders.LICENSE_AGREEMENT:
			return 'license-agreement-modal';
		case overviewEditorHeaders.FEATURE_GROUP:
			return 'feature-group-modal';
		case overviewEditorHeaders.LICENSE_KEY_GROUP:
			return 'license-key-groups-modal';
		default:
			return '';
	}
};

class LicenseModelOverviewView extends React.Component {

	static propTypes = {
		isDisplayModal: React.PropTypes.bool,
		isReadOnlyMode: React.PropTypes.bool,
		licenseModelId: React.PropTypes.string,
		licensingDataList: React.PropTypes.array,
		modalHeader: React.PropTypes.string,
		selectedTab: React.PropTypes.symbol,
		onTabSelect: React.PropTypes.func,
		onCallVCAction: React.PropTypes.func,
		onClose: React.PropTypes.func
	};

	render() {
		let {isDisplayModal, modalHeader, licensingDataList, selectedTab, onTabSelect} = this.props;
		let selectedInUse = selectedTab !== selectedButton.NOT_IN_USE;

		return(
			<div className='license-model-overview'>
				<SummaryView/>
				<div className={classNames('overview-list-section ', !selectedInUse ? 'overview-list-orphans' : '' )}>
					<div className='vlm-list-tab-panel'>
						<div className='section-title'>{selectedInUse ? i18n('VLM List View') : i18n('Entities not in Use')}</div>
						<ListButtons onTabSelect={onTabSelect} selectedInUse={selectedInUse}/>
					</div>
					<VLMListView licensingDataList={licensingDataList} showInUse={selectedInUse}/>
				</div>
				{
					isDisplayModal &&
					<Modal show={isDisplayModal} bsSize='large' animation={true} className={classNames('onborading-modal', setModalClassName(modalHeader))}>
						<Modal.Header>
							<Modal.Title>{`${i18n('Create New ')}${i18n(modalHeader)}`}</Modal.Title>
						</Modal.Header>
						<Modal.Body>
							{this.renderModalBody(modalHeader)}
						</Modal.Body>
					</Modal>
				}
			</div>
		);
	}

	renderModalBody(modalHeader) {
		let {licenseModelId, version} = this.props;
		switch (modalHeader) {
			case overviewEditorHeaders.ENTITLEMENT_POOL:
				return <EntitlementPoolsEditor version={version} licenseModelId={licenseModelId} isReadOnlyMode={false}/>;
			case overviewEditorHeaders.LICENSE_AGREEMENT:
				return <LicenseAgreementEditor version={version} licenseModelId={licenseModelId} isReadOnlyMode={false}/>;
			case overviewEditorHeaders.FEATURE_GROUP:
				return <FeatureGroupEditor version={version} licenseModelId={licenseModelId} isReadOnlyMode={false}/>;
			case overviewEditorHeaders.LICENSE_KEY_GROUP:
				return <LicenseKeyGroupsEditor version={version} licenseModelId={licenseModelId} isReadOnlyMode={false}/>;
		}
	}
}

export default  LicenseModelOverviewView;