/*! * Copyright © 2016-2018 European Support Limited * * 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 Input from 'nfvo-components/input/validation/Input.jsx'; import GridSection from 'nfvo-components/grid/GridSection.jsx'; import GridItem from 'nfvo-components/grid/GridItem.jsx'; import { optionsInputValues as licenseKeyGroupOptionsInputValues, LKG_FORM_NAME } from '../LicenseKeyGroupsConstants.js'; import { optionsInputValues as LicenseModelOptionsInputValues } from '../../LicenseModelConstants.js'; import { DATE_FORMAT } from 'sdc-app/onboarding/OnboardingConstants.js'; import UuId from 'sdc-app/onboarding/licenseModel/components/UuId.jsx'; const LicenseKeyGroupFormContent = ({ data, onDataChanged, genericFieldInfo, validateName, validateStartDate, thresholdValueValidation }) => { let { name, description, increments, type, thresholdUnits, thresholdValue, startDate, expiryDate, manufacturerReferenceNumber, id, versionUUID } = data; return ( onDataChanged({ name }, LKG_FORM_NAME, { name: validateName }) } label={i18n('Name')} data-test-id="create-lkg-name" value={name} isValid={genericFieldInfo.name.isValid} errorText={genericFieldInfo.name.errorText} isRequired={true} type="text" /> { const selectedIndex = e.target.selectedIndex; const val = e.target.options[selectedIndex].value; onDataChanged({ type: val }, LKG_FORM_NAME); }} value={type} label={i18n('Type')} data-test-id="create-lkg-type" isValid={genericFieldInfo.type.isValid} errorText={genericFieldInfo.type.errorText} groupClassName="bootstrap-input-options" className="input-options-select" overlayPos="bottom" type="select"> {licenseKeyGroupOptionsInputValues.TYPE.map(type => ( ))} onDataChanged({ description }, LKG_FORM_NAME) } label={i18n('Description')} data-test-id="create-lkg-description" value={description} isValid={genericFieldInfo.description.isValid} errorText={genericFieldInfo.description.errorText} type="textarea" overlayPos="bottom" /> { // setting the unit to the correct value const selectedIndex = e.target.selectedIndex; const val = e.target.options[selectedIndex].value; onDataChanged({ thresholdUnits: val }, LKG_FORM_NAME); // TODO make sure that the value is valid too onDataChanged( { thresholdValue: thresholdValue }, LKG_FORM_NAME, { thresholdValue: thresholdValueValidation } ); }} value={thresholdUnits} label={i18n('Threshold Units')} data-test-id="create-ep-threshold-units" isValid={genericFieldInfo.thresholdUnits.isValid} errorText={genericFieldInfo.thresholdUnits.errorText} groupClassName="bootstrap-input-options" className="input-options-select" type="select"> {LicenseModelOptionsInputValues.THRESHOLD_UNITS.map( mtype => ( ) )} onDataChanged( { startDate: startDate ? startDate.format(DATE_FORMAT) : '' }, LKG_FORM_NAME, { startDate: validateStartDate } ) } isValid={genericFieldInfo.startDate.isValid} errorText={genericFieldInfo.startDate.errorText} selectsStart /> onDataChanged({ thresholdValue }, LKG_FORM_NAME, { thresholdValue: thresholdValueValidation }) } label={i18n('Threshold Value')} isValid={genericFieldInfo.thresholdValue.isValid} errorText={genericFieldInfo.thresholdValue.errorText} data-test-id="create-ep-threshold-value" value={thresholdValue} type="text" /> { onDataChanged( { expiryDate: expiryDate ? expiryDate.format(DATE_FORMAT) : '' }, LKG_FORM_NAME ); onDataChanged({ startDate }, LKG_FORM_NAME, { startDate: validateStartDate }); }} isValid={genericFieldInfo.expiryDate.isValid} errorText={genericFieldInfo.expiryDate.errorText} selectsEnd /> onDataChanged( { manufacturerReferenceNumber }, LKG_FORM_NAME ) } label={i18n('Manufacturer Reference Number')} value={manufacturerReferenceNumber} data-test-id="create-ep-mrn" type="text" /> onDataChanged({ increments }, LKG_FORM_NAME) } label={i18n('Increments')} value={increments} data-test-id="create-ep-increments" type="text" /> {id && versionUUID && } ); }; export default LicenseKeyGroupFormContent;