/*! * 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 {connect} from 'react-redux'; import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js'; import licenseModelOverviewActionHelper from '../licenseModelOverviewActionHelper.js'; import LicenseModelActionHelper from '../../LicenseModelActionHelper.js'; import LicenseModelDescriptionEdit from './LicenseModelDescriptionEdit.jsx'; import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js'; import {VLM_DESCRIPTION_FORM} from '../LicenseModelOverviewConstants.js'; export const mapStateToProps = ({licenseModel: {licenseModelEditor: {data}, licenseModelOverview: {descriptionEditor: {data: descriptionData, genericFieldInfo} }}}) => { let description = (descriptionData && descriptionData.description) ? descriptionData.description : null; let isReadOnlyMode = VersionControllerUtils.isReadOnly(data); return { data, description, genericFieldInfo, isReadOnlyMode }; }; const mapActionsToProps = (dispatch) => { return { onDataChanged: (deltaData) => ValidationHelper.dataChanged(dispatch, {deltaData, formName: VLM_DESCRIPTION_FORM}), onCancel: () => licenseModelOverviewActionHelper.editDescriptionClose(dispatch), onSubmit: (licenseModel) => { licenseModelOverviewActionHelper.editDescriptionClose(dispatch); LicenseModelActionHelper.saveLicenseModel(dispatch, {licenseModel}); }, onVendorDescriptionEdit: description => licenseModelOverviewActionHelper.editDescriptionOpen(dispatch,{description}) }; }; export class VendorDataView extends React.Component { render() { let {data: {vendorName}, description, isReadOnlyMode} = this.props; return (
vendor
{vendorName}
{ description && !isReadOnlyMode ? this.renderDescriptionEdit() : this.renderDescription() }
); } renderDescription() { let {data: {description}, onVendorDescriptionEdit, isReadOnlyMode} = this.props; return (
{if (!isReadOnlyMode) {onVendorDescriptionEdit(description);}}} className={!isReadOnlyMode ? 'vendor-description' : 'vendor-description-readonly'}>
{description}
); } renderDescriptionEdit() { let {onCancel, onDataChanged, onSubmit, description, genericFieldInfo, data} = this.props; return( ); } } export default connect(mapStateToProps, mapActionsToProps)(VendorDataView);