/* * Copyright © 2016-2017 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, { Component } from 'react'; import PropTypes from 'prop-types'; import Dropzone from 'react-dropzone'; import { Button } from 'onap-ui-react'; import DraggableUploadFileBox from 'nfvo-components/fileupload/DraggableUploadFileBox.jsx'; import { fileTypes, type2Title, type2Name } from './SoftwareProductComponentsMonitoringConstants.js'; class SoftwareProductComponentsMonitoringView extends Component { static propTypes = { isReadOnlyMode: PropTypes.bool, filenames: PropTypes.object, softwareProductId: PropTypes.string, onDropMibFileToUpload: PropTypes.func, onDeleteSnmpFile: PropTypes.func }; state = { dragging: false }; render() { return (
{this.renderDropzoneWithType(fileTypes.VES_EVENT)} {this.renderDropzoneWithType(fileTypes.SNMP_TRAP)} {this.renderDropzoneWithType(fileTypes.SNMP_POLL)}
); } renderDropzoneWithType(type) { let { isReadOnlyMode, filenames } = this.props; let fileByType = type2Name[type]; let fileName = filenames ? filenames[fileByType] : undefined; let refAndName = `fileInput${type.toString()}`; let typeDisplayName = type2Title[type]; return ( this.handleImport(acceptedFiles, rejectedFiles, { isReadOnlyMode, type, refAndName }) } onDragEnter={() => this.handleOnDragEnter(isReadOnlyMode)} onDragLeave={() => this.setState({ dragging: false })} multiple={false} disableClick={true} ref={refAndName} name={refAndName} accept=".zip">
{typeDisplayName}
{fileName ? this.renderUploadedFileName( fileName, type, isReadOnlyMode ) : this.renderUploadButton(refAndName)}
); } renderUploadButton(refAndName) { let { isReadOnlyMode } = this.props; return ( this.refs[refAndName].open()} /> ); } renderUploadedFileName(filename, type, isReadOnlyMode) { return (
); } handleOnDragEnter(isReadOnlyMode) { if (!isReadOnlyMode) { this.setState({ dragging: true }); } } handleImport(files, rejectedFiles, { isReadOnlyMode, type, refAndName }) { if (isReadOnlyMode) { return; } if (files.length > 0) { this.setState({ dragging: false }); let file = files[0]; let formData = new FormData(); formData.append('upload', file); this.refs[refAndName].value = ''; this.props.onDropMibFileToUpload(formData, type); } else if (rejectedFiles.length > 0) { this.setState({ dragging: false }); this.props.onFileUploadError(); } } } export default SoftwareProductComponentsMonitoringView;