az2497 | 644017c | 2017-08-10 17:49:40 +0300 | [diff] [blame] | 1 | /*! |
| 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 | */ |
| 29 | import React, {Component} from 'react'; |
| 30 | import i18n from 'nfvo-utils/i18n/i18n.js'; |
| 31 | import Button from 'sdc-ui/lib/react/Button.js'; |
| 32 | |
| 33 | class DraggableUploadFileBox extends Component { |
| 34 | render() { |
| 35 | let {className, onClick, dataTestId, isReadOnlyMode} = this.props; |
| 36 | return ( |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 37 | <div className={`file-upload-box ${className} ${isReadOnlyMode ? 'disabled' : ''}`}> |
| 38 | <div className={`drag-text ${isReadOnlyMode ? 'disabled' : ''}`}>{i18n('Drag & drop for upload')}</div> |
az2497 | 644017c | 2017-08-10 17:49:40 +0300 | [diff] [blame] | 39 | <div className='or-text'>{i18n('or')}</div> |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 40 | <Button type='button' data-test-id={dataTestId} btnType='outline' onClick={onClick} disabled={isReadOnlyMode}>{i18n('Select File')}</Button> |
az2497 | 644017c | 2017-08-10 17:49:40 +0300 | [diff] [blame] | 41 | </div> |
| 42 | ); |
| 43 | } |
| 44 | } |
| 45 | export default DraggableUploadFileBox; |