mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 17:11:36 +03:00
e8f20e67cc
* Load dashboard with react * Rename stast2 to dashboard * Save timeframe on the frontend * Implement current visitors * Implement comparisons * React to route changes * Add modals * Show number of visitors on hover * Show 'Today' for today * Add 30 days * Show referrer drilldown * Arrow keys to go back and forward * Improve comparisons UI * Fix dropdown when clicking on it * Verify API access in a memoized fashion * Test API access * Test stats through controller * Move map formatting from stats controller to stats * Remove unused code * Remove dead code from query * Remove dead code from stats templates * Add stats view test back in * Render modal inside the modal component * Implement google search terms * Add explanation for screen sizes * Separate dashboard JS from the app js
62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
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() {
|
|
document.body.style.overflow = 'unset';
|
|
document.body.style.height = 'unset';
|
|
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() {
|
|
this.props.history.push(`/${this.props.site.domain}${this.props.location.search}`)
|
|
}
|
|
|
|
render() {
|
|
return createPortal(
|
|
<div className="modal is-open" onClick={this.props.onClick}>
|
|
<div className="modal__overlay">
|
|
<button className="modal__close"></button>
|
|
<div ref={this.node} className="modal__container">
|
|
{this.props.children}
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
document.getElementById("modal_root"),
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
export default withRouter(Modal)
|