blob: cfd757501f442b5facaa779715936669e07e080b [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 */
Michael Landoefa037d2017-02-19 12:57:33 +020016import React from 'react';
17import ReactDOM from 'react-dom';
18import BootstrapModal from 'react-bootstrap/lib/Modal.js';
19
20let nextModalId = 0;
21
22export default class Modal extends React.Component {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020023 static Header = BootstrapModal.Header;
Michael Landoefa037d2017-02-19 12:57:33 +020024
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020025 static Title = BootstrapModal.Title;
Michael Landoefa037d2017-02-19 12:57:33 +020026
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020027 static Footer = BootstrapModal.Footer;
Michael Landoefa037d2017-02-19 12:57:33 +020028
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020029 static Body = class ModalBody extends React.Component {
30 render() {
31 let { children, ...props } = this.props;
32 return (
33 <BootstrapModal.Body {...props}>{children}</BootstrapModal.Body>
34 );
35 }
Michael Landoefa037d2017-02-19 12:57:33 +020036
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020037 componentDidMount() {
38 let element = ReactDOM.findDOMNode(this);
39 element.addEventListener('click', event => {
40 if (event.target.tagName === 'A') {
41 event.preventDefault();
42 }
43 });
44 ['wheel', 'mousewheel', 'DOMMouseScroll'].forEach(eventType =>
45 element.addEventListener(eventType, event =>
46 event.stopPropagation()
47 )
48 );
49 }
50 };
Michael Landoefa037d2017-02-19 12:57:33 +020051
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020052 componentWillMount() {
53 this.modalId = `dox-ui-modal-${nextModalId++}`;
54 }
Michael Landoefa037d2017-02-19 12:57:33 +020055
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020056 componentDidMount() {
57 this.ensureRootClass();
58 }
Michael Landoefa037d2017-02-19 12:57:33 +020059
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020060 componentDidUpdate() {
61 this.ensureRootClass();
62 }
Michael Landoefa037d2017-02-19 12:57:33 +020063
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020064 ensureRootClass() {
65 let element = document.getElementById(this.modalId);
66 while (element && !element.hasAttribute('data-reactroot')) {
67 element = element.parentElement;
68 }
69 if (element && !element.classList.contains('dox-ui')) {
70 element.classList.add('dox-ui');
71 }
72 }
Michael Landoefa037d2017-02-19 12:57:33 +020073
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020074 render() {
75 let { children, ...props } = this.props;
76 return (
77 <BootstrapModal {...props} id={this.modalId}>
78 {children}
79 </BootstrapModal>
80 );
81 }
Michael Landoefa037d2017-02-19 12:57:33 +020082}