blob: 5b4e0a8bee66f471abcc2977d5aeb8bd7b870f9b [file] [log] [blame]
az2497644017c2017-08-10 17:49:40 +03001/*!
2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
16/**
17 * The HTML structure here is aligned with bootstrap HTML structure for form elements.
18 * In this way we have proper styling and it is aligned with other form elements on screen.
19 *
20 * Select and MultiSelect options:
21 *
22 * label - the label to be shown which paired with the input
23 *
24 * all other "react-select" props - as documented on
25 * http://jedwatson.github.io/react-select/
26 * or
27 * https://github.com/JedWatson/react-select
28 */
29import React, {Component} from 'react';
30import i18n from 'nfvo-utils/i18n/i18n.js';
31import Button from 'sdc-ui/lib/react/Button.js';
32
33class DraggableUploadFileBox extends Component {
34 render() {
35 let {className, onClick, dataTestId, isReadOnlyMode} = this.props;
36 return (
talig8e9c0652017-12-20 14:30:43 +020037 <div className={`file-upload-box ${className} ${isReadOnlyMode ? 'disabled' : ''}`}>
38 <div className={`drag-text ${isReadOnlyMode ? 'disabled' : ''}`}>{i18n('Drag & drop for upload')}</div>
az2497644017c2017-08-10 17:49:40 +030039 <div className='or-text'>{i18n('or')}</div>
talig8e9c0652017-12-20 14:30:43 +020040 <Button type='button' data-test-id={dataTestId} btnType='outline' onClick={onClick} disabled={isReadOnlyMode}>{i18n('Select File')}</Button>
az2497644017c2017-08-10 17:49:40 +030041 </div>
42 );
43 }
44}
45export default DraggableUploadFileBox;