Fix Null Pointer Issue
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / onboard / CatalogModal.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 import React from 'react';
17 import {
18     modalMapper,
19     catalogItemTypes,
20     catalogItemTypeClasses
21 } from './onboardingCatalog/OnboardingCatalogConstants.js';
22 import i18n from 'nfvo-utils/i18n/i18n.js';
23 import Modal from 'nfvo-components/modal/Modal.jsx';
24 import LicenseModelCreation from '../licenseModel/creation/LicenseModelCreation.js';
25 import SoftwareProductCreation from '../softwareProduct/creation/SoftwareProductCreation.js';
26
27 class CatalogModal extends React.Component {
28     getModalDetails() {
29         const { modalToShow } = this.props;
30         switch (modalToShow) {
31             case catalogItemTypes.LICENSE_MODEL:
32                 return {
33                     title: i18n('New License Model'),
34                     element: <LicenseModelCreation />
35                 };
36             case catalogItemTypes.SOFTWARE_PRODUCT:
37                 return {
38                     title: i18n('New Software Product'),
39                     element: <SoftwareProductCreation />
40                 };
41         }
42     }
43
44     render() {
45         const { modalToShow } = this.props;
46         const modalDetails = this.getModalDetails(modalToShow);
47
48         return (
49             <Modal
50                 show={Boolean(modalDetails)}
51                 className={`${
52                     catalogItemTypeClasses[modalMapper[modalToShow]]
53                 }-modal`}>
54                 <Modal.Header>
55                     <Modal.Title>
56                         {modalDetails && modalDetails.title}
57                     </Modal.Title>
58                 </Modal.Header>
59                 <Modal.Body>{modalDetails && modalDetails.element}</Modal.Body>
60             </Modal>
61         );
62     }
63 }
64
65 export default CatalogModal;