blob: e05c2ac616189852900106762b775c01792e9036 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +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
17import React from 'react';
18import {connect} from 'react-redux';
19
20import Modal from 'nfvo-components/modal/Modal.jsx';
Avi Zivb8e2faf2017-07-18 19:45:38 +030021import Button from 'sdc-ui/lib/react/Button.js';
AviZi280f8012017-06-09 02:39:56 +030022import i18n from 'nfvo-utils/i18n/i18n.js';
23import {modalContentComponents} from 'sdc-app/common/modal/ModalContentMapper.js';
24import {actionTypes, typeEnum} from './GlobalModalConstants.js';
25
26
27const typeClass = {
Avi Zivb8e2faf2017-07-18 19:45:38 +030028 'default': 'default',
29 error: 'negative',
AviZi280f8012017-06-09 02:39:56 +030030 warning: 'warning',
Avi Zivb8e2faf2017-07-18 19:45:38 +030031 success: 'positive'
AviZi280f8012017-06-09 02:39:56 +030032};
33
az2497644017c2017-08-10 17:49:40 +030034const type2HeaderColor = {
35 'default': 'primary',
36 error: 'danger',
37 warning: 'warning',
38 success: 'success'
39};
AviZi280f8012017-06-09 02:39:56 +030040
az2497644017c2017-08-10 17:49:40 +030041
42const ModalFooter = ({type, onConfirmed, onDeclined, onClose, confirmationButtonText, cancelButtonText}) => {
43 let myPropsForNoConfirmed = {};
44 if (onConfirmed) {
45 myPropsForNoConfirmed.btnType = 'outline';
46 }
47 return (
AviZi280f8012017-06-09 02:39:56 +030048 <Modal.Footer>
Avi Zivb8e2faf2017-07-18 19:45:38 +030049 <div className='sdc-modal-footer'>
50 {onConfirmed && <Button color={typeClass[type]} onClick={() => {
51 onConfirmed();
52 onClose();
53 }}>{confirmationButtonText}</Button>}
az2497644017c2017-08-10 17:49:40 +030054 <Button {...myPropsForNoConfirmed} color={typeClass[type]} onClick={onDeclined ? () => {
Avi Zivb8e2faf2017-07-18 19:45:38 +030055 onDeclined();
56 onClose();} : () => onClose()}>
57 {cancelButtonText}
AviZi280f8012017-06-09 02:39:56 +030058 </Button>
Avi Zivb8e2faf2017-07-18 19:45:38 +030059 </div>
az2497644017c2017-08-10 17:49:40 +030060 </Modal.Footer>
61 );
62};
AviZi280f8012017-06-09 02:39:56 +030063
64ModalFooter.defaultProps = {
65 type: 'default',
66 confirmationButtonText: i18n('OK'),
67 cancelButtonText: i18n('Cancel')
68};
69
70export const mapStateToProps = ({modal}) => {
71 const show = !!modal;
72 return {
73 show,
74 ...modal
75 };
76};
77
78export const mapActionToProps = (dispatch) => {
79 return {
80 onClose: () => dispatch({type: actionTypes.GLOBAL_MODAL_CLOSE})
81 };
82};
83
84
85export class GlobalModalView extends React.Component {
86
87 static propTypes = {
88 show: React.PropTypes.bool,
89 type: React.PropTypes.oneOf(['default', 'error', 'warning', 'success']),
90 title: React.PropTypes.string,
91 modalComponentProps: React.PropTypes.object,
92 modalComponentName: React.PropTypes.string,
93 onConfirmed: React.PropTypes.func,
94 onDeclined: React.PropTypes.func,
95 confirmationButtonText: React.PropTypes.string,
96 cancelButtonText: React.PropTypes.string
97 };
98
99 static defaultProps = {
100 show: false,
101 type: 'default',
102 title: ''
103 };
104
105 render() {
Avi Zivb8e2faf2017-07-18 19:45:38 +0300106 let {title, type, show, modalComponentName, modalComponentProps,
AviZi280f8012017-06-09 02:39:56 +0300107 modalClassName, msg, onConfirmed, onDeclined, confirmationButtonText, cancelButtonText, onClose} = this.props;
108 const ComponentToRender = modalContentComponents[modalComponentName];
109 return (
az2497644017c2017-08-10 17:49:40 +0300110 <Modal show={show} bsSize={modalComponentProps && modalComponentProps.size} className={`onborading-modal ${modalClassName || ''} ${type2HeaderColor[type]}`}>
AviZi280f8012017-06-09 02:39:56 +0300111 <Modal.Header>
112 <Modal.Title>{title}</Modal.Title>
113 </Modal.Header>
114 <Modal.Body>
Avi Zivb8e2faf2017-07-18 19:45:38 +0300115 {ComponentToRender ? <ComponentToRender {...modalComponentProps}/> : msg}
AviZi280f8012017-06-09 02:39:56 +0300116 </Modal.Body>
117 {(onConfirmed || onDeclined || type !== typeEnum.DEFAULT) &&
118 <ModalFooter
119 type={type}
120 onConfirmed={onConfirmed}
121 onDeclined={onDeclined}
122 onClose={onClose}
123 confirmationButtonText={confirmationButtonText}
124 cancelButtonText={cancelButtonText}/>}
125 </Modal>
126 );
127 }
128
129 componentDidUpdate() {
130 if (this.props.timeout) {
131 setTimeout(this.props.onClose, this.props.timeout);
132 }
Avi Zivb8e2faf2017-07-18 19:45:38 +0300133 }
AviZi280f8012017-06-09 02:39:56 +0300134};
135
136export default connect(mapStateToProps, mapActionToProps, null, {withRef: true})(GlobalModalView);