2019-11-19 07:30:42 +03:00
|
|
|
import React from "react";
|
|
|
|
import { createPortal } from "react-dom";
|
|
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
|
|
|
|
class Modal extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.node = React.createRef()
|
|
|
|
this.handleClickOutside = this.handleClickOutside.bind(this)
|
|
|
|
this.handleKeyup = this.handleKeyup.bind(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
document.body.style.height = '100vh';
|
|
|
|
document.addEventListener("mousedown", this.handleClickOutside);
|
|
|
|
document.addEventListener("keyup", this.handleKeyup);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
document.body.style.overflow = null;
|
|
|
|
document.body.style.height = null;
|
2019-11-19 07:30:42 +03:00
|
|
|
document.removeEventListener("mousedown", this.handleClickOutside);
|
|
|
|
document.removeEventListener("keyup", this.handleKeyup);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClickOutside(e) {
|
|
|
|
if (this.node.current.contains(e.target)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyup(e) {
|
|
|
|
if (e.code === 'Escape') {
|
|
|
|
this.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
2020-02-04 16:44:13 +03:00
|
|
|
this.props.history.push(`/${encodeURIComponent(this.props.site.domain)}${this.props.location.search}`)
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return createPortal(
|
|
|
|
<div className="modal is-open" onClick={this.props.onClick}>
|
|
|
|
<div className="modal__overlay">
|
|
|
|
<button className="modal__close"></button>
|
2021-06-21 14:42:16 +03:00
|
|
|
<div ref={this.node} className="modal__container dark:bg-gray-800" style={{maxWidth: this.props.maxWidth || '860px'}}>
|
2020-03-03 17:18:02 +03:00
|
|
|
{this.props.children}
|
|
|
|
</div>
|
2020-03-03 12:13:08 +03:00
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
</div>
|
|
|
|
</div>,
|
|
|
|
document.getElementById("modal_root"),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default withRouter(Modal)
|