aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/onboarding/softwareProduct/components/loadBalancing/SoftwareProductComponentLoadBalancingRefView.jsx
blob: dc867714004ae593e149745d3dc075ede2d6c387 (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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*!
 * 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 SVGIcon from 'nfvo-components/icon/SVGIcon.jsx';
import i18n from 'nfvo-utils/i18n/i18n.js';

import Form from 'nfvo-components/input/validation/Form.jsx';
import Input from'nfvo-components/input/validation/Input.jsx';

import GridSection from 'nfvo-components/grid/GridSection.jsx';
import GridItem from 'nfvo-components/grid/GridItem.jsx';

const prefix = 'highAvailabilityAndLoadBalancing/';

const pointers = [
	{
		key: 'failureLoadDistribution',
		description: 'How is load distributed across live vms in the event of a vm/host failure? please describe'
	},
	{
		key: 'nkModelImplementation',
		description: 'Does each VM implement the N+K model for redundancy and failure protection? Please describe.'
	},
	{
		key: 'architectureChoice',
		description: 'What architecture is being implemented: ACTIVE-ACTIVE and/or ACTIVE-PASSIVE. ',
		added: 'Will the arrangement be 1-1 or N-M? Please describe.'
	},
	{key: 'slaRequirements', description: 'Specify application SLA requirements on Cloud platform.'},
	{
		key: 'horizontalScaling',
		description: 'Is horizontal scaling the preferred solution for HA and resiliency? Please describe.'
	},
	{
		key: 'loadDistributionMechanism',
		description: 'Can load be distributed across VMs? If so, are special mechanisms needed to re-balance data across VMs?',
		added: 'Please describe.'
	}
];

const TextAreaItem = ({item, toggle, expanded, genericFieldInfo, dataMap, onQDataChanged}) => (
		<GridItem colSpan={3} key={item.key} >
			<div className={expanded ? 'title' : 'title add-padding'}
				 data-test-id={`btn-${item.key}`}
				 onClick={() => toggle(item.key)}>
					<SVGIcon name={expanded ? 'chevron-up' : 'chevron-down'}/>
					<span className='title-text'>{i18n(item.description)}</span>
					{item.added && <div className='new-line'>{i18n(item.added)}</div>}
			</div>
			<div className={expanded ? 'collapse in' : 'collapse'}>
				<div>
					<div>
						<Input
							data-test-id={`input-${item.key}`}
							type='textarea'
							isValid={genericFieldInfo[`${prefix}${item.key}`].isValid}
							errorText={genericFieldInfo[`${prefix}${item.key}`].errorText}
							value={dataMap[`${prefix}${item.key}`]}
							onChange={(val) => onQDataChanged({[`${prefix}${item.key}`] : val})} />
					</div>
				</div>
			</div>
		</GridItem>
);

class SoftwareProductComponentLoadBalancingView extends React.Component {
	static propTypes = {
		componentId: React.PropTypes.string.isRequired,
		softwareProductId: React.PropTypes.string.isRequired,
		qdata: React.PropTypes.object,
		qschema: React.PropTypes.object,
		currentSoftwareProduct: React.PropTypes.object
	};

	state = {
		expanded: {}
	};

	render() {
		let {dataMap, genericFieldInfo, onQDataChanged, isReadOnlyMode} = this.props;
		return (
			<div className='vsp-components-load-balancing'>
				<div className='halb-data'>
					{ genericFieldInfo && <Form
						formReady={null}
						isValid={true}
						onSubmit={() => this.save()}
						isReadOnlyMode={isReadOnlyMode}
						hasButtons={false}>
						<GridSection title={i18n('High Availability & Load Balancing')}>
							<GridItem colSpan={1}>
								<Input
									data-test-id='input-is-component-mandatory'
									label={i18n('Is Component Mandatory')}
									type='select'
									className='input-options-select'
									groupClassName='bootstrap-input-options'
									isValid={genericFieldInfo[`${prefix}isComponentMandatory`].isValid}
									errorText={genericFieldInfo[`${prefix}isComponentMandatory`].errorText}
									value={dataMap[`${prefix}isComponentMandatory`]}
									onChange={(e) => {
										const selectedIndex = e.target.selectedIndex;
										const val = e.target.options[selectedIndex].value;
										onQDataChanged({[`${prefix}isComponentMandatory`] : val});}
									}>
									 <option key='placeholder' value=''>{i18n('Select...')}</option>
									{ genericFieldInfo[`${prefix}isComponentMandatory`].enum.map(isMan => <option value={isMan.enum} key={isMan.enum}>{isMan.title}</option>) }
								</Input>
							</GridItem>
							<GridItem colSpan={3}/>
							<GridItem colSpan={1}>
								<Input
									data-test-id='input-high-availability-mode'
									label={i18n('High Availability Mode')}
									type='select'
									className='input-options-select'
									groupClassName='bootstrap-input-options'
									isValid={genericFieldInfo[`${prefix}highAvailabilityMode`].isValid}
									errorText={genericFieldInfo[`${prefix}highAvailabilityMode`].errorText}
									value={dataMap[`${prefix}highAvailabilityMode`]}
									onChange={(e) => {
										const selectedIndex = e.target.selectedIndex;
										const val = e.target.options[selectedIndex].value;
										onQDataChanged({[`${prefix}highAvailabilityMode`] : val});}
									}>
									<option key='placeholder' value=''>{i18n('Select...')}</option>
									{genericFieldInfo[`${prefix}highAvailabilityMode`].enum.map(hmode => <option value={hmode.enum} key={hmode.enum}>{hmode.title}</option>)}
								</Input>
							</GridItem>
							<GridItem colSpan={3}/>
						</GridSection>
						<GridSection>
						{pointers.map(pointer => <TextAreaItem onQDataChanged={onQDataChanged}
							   genericFieldInfo={genericFieldInfo} dataMap={dataMap} item={pointer} key={pointer.key + 'pKey'}
							   expanded={this.state.expanded[pointer.key]} toggle={(name)=>{this.toggle(name);}} />)}
						</GridSection>
					</Form> }
				</div>
			</div>
		);
	}

	toggle(name) {
		let st = this.state.expanded[name] ? true : false;
		let newState = {...this.state};
		newState.expanded[name] = !st;
		this.setState(newState);
	}

	save() {
		let {onSubmit, qdata} = this.props;
		return onSubmit({qdata});
	}
}

export default SoftwareProductComponentLoadBalancingView;