mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 00:51:36 +03:00
dd20fc8a17
* chore(docker): improve repeat contributions workflow * This change adds two new commands to gracefully stop and remove the Postgres and Clickhouse docker containers. To do so, it also gives them a recognizable name. * Additionally, the Postgres container is updated to use a named volume for its data. This lower friction for repeat contributions where one would otherwise sign up and activate their accounts again and again each time. * Format countries modal * Remove unused imports * Run ESLint and make related fixes * ESlint formatting for entry pages modal * WIP: proof of concept for scrollable modals on mobile * Fix modals being too wide on desktop * Make modals truly responsive This fixes the desktop behaviour completely now. * Update changelog with modals responsiveness * Update desktop modal width to 860px It was an oversight to set it at 800px in the first place. Co-authored-by: Uku Taht <Uku.taht@gmail.com>
103 lines
2.9 KiB
JavaScript
103 lines
2.9 KiB
JavaScript
import React from "react";
|
|
import { createPortal } from "react-dom";
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
// 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;
|
|
|
|
|
|
class Modal extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {
|
|
viewport: DEFAULT_WIDTH,
|
|
}
|
|
this.node = React.createRef()
|
|
this.handleClickOutside = this.handleClickOutside.bind(this)
|
|
this.handleKeyup = this.handleKeyup.bind(this)
|
|
this.handleResize = this.handleResize.bind(this)
|
|
}
|
|
|
|
componentDidMount() {
|
|
document.body.style.overflow = 'hidden';
|
|
document.body.style.height = '100vh';
|
|
document.addEventListener("mousedown", this.handleClickOutside);
|
|
document.addEventListener("keyup", this.handleKeyup);
|
|
window.addEventListener('resize', this.handleResize, false);
|
|
this.handleResize();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
document.body.style.overflow = null;
|
|
document.body.style.height = null;
|
|
document.removeEventListener("mousedown", this.handleClickOutside);
|
|
document.removeEventListener("keyup", this.handleKeyup);
|
|
window.removeEventListener('resize', this.handleResize, false);
|
|
}
|
|
|
|
handleClickOutside(e) {
|
|
if (this.node.current.contains(e.target)) {
|
|
return;
|
|
}
|
|
|
|
this.close()
|
|
}
|
|
|
|
handleKeyup(e) {
|
|
if (e.code === 'Escape') {
|
|
this.close()
|
|
}
|
|
}
|
|
|
|
handleResize() {
|
|
this.setState({ viewport: window.innerWidth });
|
|
}
|
|
|
|
close() {
|
|
this.props.history.push(`/${encodeURIComponent(this.props.site.domain)}${this.props.location.search}`)
|
|
}
|
|
|
|
/**
|
|
* @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;
|
|
}
|
|
|
|
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 dark:bg-gray-800"
|
|
style={this.getStyle()}
|
|
>
|
|
{this.props.children}
|
|
</div>
|
|
|
|
</div>
|
|
</div>,
|
|
document.getElementById("modal_root"),
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
export default withRouter(Modal)
|