svishnev | 3b0bea5 | 2018-05-08 16:15:21 +0300 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright © 2016-2018 European Support Limited |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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 |
svishnev | 3b0bea5 | 2018-05-08 16:15:21 +0300 | [diff] [blame^] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
svishnev | 3b0bea5 | 2018-05-08 16:15:21 +0300 | [diff] [blame^] | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import React from 'react'; |
| 17 | import ReactDOM from 'react-dom'; |
| 18 | import BootstrapModal from 'react-bootstrap/lib/Modal.js'; |
svishnev | 3b0bea5 | 2018-05-08 16:15:21 +0300 | [diff] [blame^] | 19 | import { isEqual } from 'lodash'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 20 | let nextModalId = 0; |
| 21 | |
| 22 | export default class Modal extends React.Component { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 23 | static Header = BootstrapModal.Header; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 24 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 25 | static Title = BootstrapModal.Title; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 26 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 27 | static Footer = BootstrapModal.Footer; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 28 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 29 | 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 Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 36 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 37 | 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 | } |
svishnev | 3b0bea5 | 2018-05-08 16:15:21 +0300 | [diff] [blame^] | 50 | |
| 51 | componentWillUnmount() { |
| 52 | let element = ReactDOM.findDOMNode(this); |
| 53 | |
| 54 | ['wheel', 'mousewheel', 'DOMMouseScroll', 'click'].forEach( |
| 55 | eventType => element.removeEventListener(eventType) |
| 56 | ); |
| 57 | } |
| 58 | |
| 59 | shouldComponentUpdate(nextProps) { |
| 60 | return !isEqual(this.props, nextProps); |
| 61 | } |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 62 | }; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 63 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 64 | componentWillMount() { |
| 65 | this.modalId = `dox-ui-modal-${nextModalId++}`; |
| 66 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 67 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 68 | componentDidMount() { |
| 69 | this.ensureRootClass(); |
| 70 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 71 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 72 | componentDidUpdate() { |
| 73 | this.ensureRootClass(); |
| 74 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 75 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 76 | ensureRootClass() { |
| 77 | let element = document.getElementById(this.modalId); |
| 78 | while (element && !element.hasAttribute('data-reactroot')) { |
| 79 | element = element.parentElement; |
| 80 | } |
| 81 | if (element && !element.classList.contains('dox-ui')) { |
| 82 | element.classList.add('dox-ui'); |
| 83 | } |
| 84 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 85 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 86 | render() { |
| 87 | let { children, ...props } = this.props; |
| 88 | return ( |
| 89 | <BootstrapModal {...props} id={this.modalId}> |
| 90 | {children} |
| 91 | </BootstrapModal> |
| 92 | ); |
| 93 | } |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 94 | } |