summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/onboarding/softwareProduct/components/loadBalancing/SoftwareProductComponentLoadBalancingRefView.jsx
blob: 4c90fc0be2c7abbe9fe1ea4db4fbbf233b13ccca (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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/*!
 * 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 PropTypes from 'prop-types';
import SVGIcon from 'sdc-ui/lib/react/SVGIcon.js';
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.'
    }
];
//TODO check for buttons

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 ? 'chevronUp' : 'chevronDown'} />
            <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: PropTypes.string.isRequired,
        softwareProductId: PropTypes.string.isRequired,
        qdata: PropTypes.object,
        qschema: PropTypes.object,
        currentSoftwareProduct: 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;