blob: 629b9449a2aa285b0b01b14910615abe9b178ac9 [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 (
37 <div
38 className={`${className}${isReadOnlyMode ? ' disabled' : ''}`}>
39 <div className={`${'drag-text'}${isReadOnlyMode ? ' disabled' : ''}`}>{i18n('Drag & drop for upload')}</div>
40 <div className='or-text'>{i18n('or')}</div>
41 <Button type='button' data-test-id={dataTestId} btnType='outline' onClick={onClick} disabled={isReadOnlyMode === true}>{i18n('Select File')}</Button>
42 </div>
43 );
44 }
45}
46export default DraggableUploadFileBox;