2c82c2be6c64129ce87116bb8ea9d03648aa1075
[sdc.git] / openecomp-ui / src / nfvo-components / vnfMarketPlace / VnfRepositorySearchBox.jsx
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 import React, { Component } from 'react';
18 import DraggableUploadFileBox from 'nfvo-components/fileupload/DraggableUploadFileBox.jsx';
19 import Configuration from 'sdc-app/config/Configuration.js';
20 import i18n from 'nfvo-utils/i18n/i18n.js';
21 import { SVGIcon } from 'onap-ui-react';
22
23 function VNFBrowse({ onBrowseVNF, isReadOnlyMode }) {
24     if (!Configuration.get('showBrowseVNF')) {
25         return <div />;
26     } else {
27         return (
28             <div
29                 className={`${'vnfRepo'}${isReadOnlyMode ? ' disabled' : ''}`}
30                 onClick={onBrowseVNF}>
31                 <div className={`${'searchRepo-text'}`}>
32                     {i18n('Search in Repository')}
33                 </div>
34                 <SVGIcon
35                     name="search"
36                     color="positive"
37                     iconClassName="searchIcon"
38                 />
39             </div>
40         );
41     }
42 }
43
44 class VnfRepositorySearchBox extends Component {
45     render() {
46         let {
47             className,
48             onClick,
49             onBrowseVNF,
50             dataTestId,
51             isReadOnlyMode
52         } = this.props;
53         let showVNF = Configuration.get('showBrowseVNF');
54         return (
55             <div className={`${className}${isReadOnlyMode ? ' disabled' : ''}`}>
56                 <DraggableUploadFileBox
57                     dataTestId={dataTestId}
58                     isReadOnlyMode={isReadOnlyMode}
59                     className={'upload'}
60                     onClick={onClick}
61                 />
62
63                 <div className={`${'verticalLine'}${showVNF ? '' : ' hide'}`} />
64
65                 <VNFBrowse
66                     onBrowseVNF={onBrowseVNF}
67                     isReadOnlyMode={isReadOnlyMode}
68                 />
69             </div>
70         );
71     }
72 }
73 export default VnfRepositorySearchBox;