/*! * 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 PropTypes from 'prop-types'; import i18n from 'nfvo-utils/i18n/i18n.js'; import ListEditorView from 'nfvo-components/listEditor/ListEditorView.jsx'; import ListEditorItemView from 'nfvo-components/listEditor/ListEditorItemView.jsx'; class FeatureGroupListEditorView extends React.Component { static propTypes = { vendorName: PropTypes.string, licenseModelId: PropTypes.string.isRequired, isReadOnlyMode: PropTypes.bool.isRequired, onAddFeatureGroupClick: PropTypes.func, onEditFeatureGroupClick: PropTypes.func, onDeleteFeatureGroupClick: PropTypes.func, onCancelFeatureGroupsEditor: PropTypes.func, featureGroupsList: PropTypes.array }; static defaultProps = { featureGroupsList: [] }; state = { localFilter: '' }; render() { let { isReadOnlyMode, onAddFeatureGroupClick, version } = this.props; const { localFilter } = this.state; return (
this.setState({ localFilter: value })} onAdd={() => onAddFeatureGroupClick(version)} isReadOnlyMode={isReadOnlyMode}> {this.filterList().map(listItem => this.renderFeatureGroupListItem( listItem, isReadOnlyMode, version ) )}
); } renderFeatureGroupListItem(listItem, isReadOnlyMode, version) { let { name, description, entitlementPoolsIds = [], licenseKeyGroupsIds = [] } = listItem; return ( this.deleteFeatureGroupItem(listItem, version)} onSelect={() => this.editFeatureGroupItem(listItem, version, isReadOnlyMode) } className="list-editor-item-view" isReadOnlyMode={isReadOnlyMode}>
{i18n('Name')}
{name}
{i18n('EP')}
{entitlementPoolsIds.length || 0}
{i18n('LKG')}
{licenseKeyGroupsIds.length || 0}
{i18n('Description')}
{description}
); } filterList() { let { featureGroupsList } = this.props; let { localFilter } = this.state; if (localFilter.trim()) { const filter = new RegExp(escape(localFilter), 'i'); return featureGroupsList.filter( ({ name = '', description = '' }) => { return ( escape(name).match(filter) || escape(description).match(filter) ); } ); } else { return featureGroupsList; } } editFeatureGroupItem(featureGroup, version) { this.props.onEditFeatureGroupClick(featureGroup, version); } deleteFeatureGroupItem(featureGroup, version) { this.props.onDeleteFeatureGroupClick(featureGroup, version); } } export default FeatureGroupListEditorView; export function generateConfirmationMsg(featureGroupToDelete) { let name = featureGroupToDelete ? featureGroupToDelete.name : ''; let msg = i18n('Are you sure you want to delete "{name}"?', { name: name }); let subMsg = featureGroupToDelete.referencingLicenseAgreements && featureGroupToDelete.referencingLicenseAgreements.length > 0 ? i18n( 'This feature group is associated with one ore more license agreements' ) : ''; return (

{msg}

{subMsg}

); }