Obtain and control VSP package upload status
[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         const showVNF = Configuration.get('showBrowseVNF');
54         return (
55             <div
56                 className={`${className}${isReadOnlyMode ? ' disabled' : ''}${
57                     showVNF ? ' showVnf' : ''
58                 }`}>
59                 <DraggableUploadFileBox
60                     dataTestId={dataTestId}
61                     isReadOnlyMode={isReadOnlyMode}
62                     className={'upload'}
63                     onClick={onClick}
64                 />
65                 {showVNF && (
66                     <div className={`verticalLine${showVNF ? '' : ' hide'}`} />
67                 )}
68                 {showVNF && (
69                     <VNFBrowse
70                         onBrowseVNF={onBrowseVNF}
71                         isReadOnlyMode={isReadOnlyMode}
72                     />
73                 )}
74             </div>
75         );
76     }
77 }
78 export default VnfRepositorySearchBox;