2019-11-19 07:30:42 +03:00
|
|
|
import React from "react";
|
|
|
|
import { createPortal } from "react-dom";
|
|
|
|
import { withRouter } from 'react-router-dom';
|
2023-03-27 16:51:31 +03:00
|
|
|
import { shouldIgnoreKeypress } from '../../keybinding'
|
2019-11-19 07:30:42 +03:00
|
|
|
|
2021-08-13 11:00:42 +03:00
|
|
|
// This corresponds to the 'md' breakpoint on TailwindCSS.
|
|
|
|
const MD_WIDTH = 768;
|
|
|
|
// We assume that the dashboard is by default opened on a desktop. This is also a fall-back for when, for any reason, the width is not ascertained.
|
|
|
|
const DEFAULT_WIDTH = 1080;
|
|
|
|
|
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
class Modal extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
2021-08-13 11:00:42 +03:00
|
|
|
this.state = {
|
|
|
|
viewport: DEFAULT_WIDTH,
|
|
|
|
}
|
2019-11-19 07:30:42 +03:00
|
|
|
this.node = React.createRef()
|
|
|
|
this.handleClickOutside = this.handleClickOutside.bind(this)
|
|
|
|
this.handleKeyup = this.handleKeyup.bind(this)
|
2021-08-13 11:00:42 +03:00
|
|
|
this.handleResize = this.handleResize.bind(this)
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
document.body.style.height = '100vh';
|
|
|
|
document.addEventListener("mousedown", this.handleClickOutside);
|
|
|
|
document.addEventListener("keyup", this.handleKeyup);
|
2021-08-13 11:00:42 +03:00
|
|
|
window.addEventListener('resize', this.handleResize, false);
|
|
|
|
this.handleResize();
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2021-08-13 11:00:42 +03:00
|
|
|
window.removeEventListener('resize', this.handleResize, false);
|
2019-11-19 07:30:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
handleClickOutside(e) {
|
|
|
|
if (this.node.current.contains(e.target)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyup(e) {
|
2023-03-27 16:51:31 +03:00
|
|
|
if (!shouldIgnoreKeypress(e) && e.code === 'Escape') {
|
2019-11-19 07:30:42 +03:00
|
|
|
this.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-13 11:00:42 +03:00
|
|
|
handleResize() {
|
|
|
|
this.setState({ viewport: window.innerWidth });
|
|
|
|
}
|
|
|
|
|
2019-11-19 07:30:42 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-13 11:00:42 +03:00
|
|
|
/**
|
|
|
|
* @description
|
|
|
|
* Decide whether to set max-width, and if so, to what.
|
|
|
|
* If no max-width is available, set width instead to min-content such that we can rely on widths set on th.
|
|
|
|
* On >md, we use the same behaviour as before: set width to 800 pixels.
|
|
|
|
* Note that When a max-width comes from the parent component, we rely on that *always*.
|
|
|
|
*/
|
|
|
|
getStyle() {
|
|
|
|
const { maxWidth } = this.props;
|
|
|
|
const { viewport } = this.state;
|
|
|
|
const styleObject = {};
|
|
|
|
if (maxWidth) {
|
|
|
|
styleObject.maxWidth = maxWidth;
|
|
|
|
} else {
|
|
|
|
styleObject.width = viewport <= MD_WIDTH ? "min-content" : "860px";
|
|
|
|
}
|
|
|
|
return styleObject;
|
|
|
|
}
|
|
|
|
|
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-08-13 11:00:42 +03:00
|
|
|
<div
|
|
|
|
ref={this.node}
|
|
|
|
className="modal__container dark:bg-gray-800"
|
|
|
|
style={this.getStyle()}
|
|
|
|
>
|
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)
|