/*! * 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 ListEditorView from 'nfvo-components/listEditor/ListEditorView.jsx'; import ListEditorItemView from 'nfvo-components/listEditor/ListEditorItemView.jsx'; import LicenseKeyGroupsEditor from './LicenseKeyGroupsEditor.js'; import InputOptions, {other as optionInputOther} from 'nfvo-components/input/validation/InputOptions.jsx'; import {optionsInputValues} from './LicenseKeyGroupsConstants'; class LicenseKeyGroupsListEditorView extends React.Component { static propTypes = { vendorName: React.PropTypes.string, licenseModelId: React.PropTypes.string.isRequired, licenseKeyGroupsList: React.PropTypes.array, isReadOnlyMode: React.PropTypes.bool.isRequired, isDisplayModal: React.PropTypes.bool, isModalInEditMode: React.PropTypes.bool, onAddLicenseKeyGroupClick: React.PropTypes.func, onEditLicenseKeyGroupClick: React.PropTypes.func, onDeleteLicenseKeyGroupClick: React.PropTypes.func }; static defaultProps = { licenseKeyGroupsList: [] }; state = { localFilter: '' }; render() { let {licenseModelId, isReadOnlyMode, isDisplayModal, isModalInEditMode, version} = this.props; let {onAddLicenseKeyGroupClick} = this.props; const {localFilter} = this.state; return (
this.setState({localFilter: value})} isReadOnlyMode={isReadOnlyMode}> {this.filterList().map(licenseKeyGroup => (this.renderLicenseKeyGroupListItem(licenseKeyGroup, isReadOnlyMode)))} {`${isModalInEditMode ? i18n('Edit License Key Group') : i18n('Create New License Key Group')}`} { isDisplayModal && ( ) }
); } filterList() { let {licenseKeyGroupsList} = this.props; let {localFilter} = this.state; if (localFilter.trim()) { const filter = new RegExp(escape(localFilter), 'i'); return licenseKeyGroupsList.filter(({name = '', description = '', operationalScope = '', type = ''}) => { return escape(name).match(filter) || escape(description).match(filter) || escape(this.extractValue(operationalScope)).match(filter) || escape(type).match(filter); }); } else { return licenseKeyGroupsList; } } renderLicenseKeyGroupListItem(licenseKeyGroup, isReadOnlyMode) { let {id, name, description, operationalScope, type} = licenseKeyGroup; let {onEditLicenseKeyGroupClick, onDeleteLicenseKeyGroupClick} = this.props; return ( onEditLicenseKeyGroupClick(licenseKeyGroup)} onDelete={() => onDeleteLicenseKeyGroupClick(licenseKeyGroup)} className='list-editor-item-view' isReadOnlyMode={isReadOnlyMode}>
{i18n('Name')}
{name}
{i18n('Operational Scope')}
{operationalScope && this.getOperationalScopes(operationalScope)}
{i18n('Type')}
{InputOptions.getTitleByName(optionsInputValues, type)}
{i18n('Description')}
{description}
); } getOperationalScopes(operationalScope) { if(operationalScope.choices && operationalScope.choices.toString() === i18n(optionInputOther.OTHER)) { return operationalScope.other; } else if (operationalScope.choices) { let allOpScopes = ''; for (let opScope of operationalScope.choices) { allOpScopes += allOpScopes === '' ? InputOptions.getTitleByName(optionsInputValues, opScope) : `, ${InputOptions.getTitleByName(optionsInputValues, opScope)}`; } return allOpScopes; } else { return ''; } } extractValue(item) { if (item === undefined) { return ''; } //TODO fix it later return item ? item.choice === optionInputOther.OTHER ? item.other : InputOptions.getTitleByName(optionsInputValues, item.choice) : ''; } } export default LicenseKeyGroupsListEditorView; export function generateConfirmationMsg(licenseKeyGroupToDelete) { let name = licenseKeyGroupToDelete ? licenseKeyGroupToDelete.name : ''; let msg = i18n(`Are you sure you want to delete "${name}"?`); let subMsg = licenseKeyGroupToDelete.referencingFeatureGroups && licenseKeyGroupToDelete.referencingFeatureGroups.length > 0 ? i18n('This license key group is associated with one or more feature groups') : ''; return (

{msg}

{subMsg}

); }