mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 00:51:36 +03:00
425975efec
* Adds New Dark Mode Assets * Moves triangle for dropdown to a reasonable position * Majority .eex dark implementation * Fixes Logo Positioning * Adds theme flag to user schema, uses it * Uses correct variables for theme applicator script * Minor missed theme changes/fallbacks * Individual Component Support + Theme Context * Sources Tab Support This was a pain to test D: * Partial Stats Sections Support * More of stats modules supported * Modal +table support * Improves some Flatpickr in light theme, supports dark theme * Fixes missed settings tab colors * Finishes Devices module support * Fixes bar graph colors * Better colorizes maps module * Undoes colorized bars (they looked bad, on second thought) * Fixes loading indicator * Finishes conversions module * Adds changelog entry The PR number could be wrong, will double check * Fixes missed header color * Fixes naming of migration and removes static alter * Does migration correctly As I said, my Elixir is pretty weak heh * Adds support for spike notifications setting * Improves contrast and visibility for email settings * Resolves @ukutaht's comments on #467 * Fixes missing dark style * Found one more missed dark element (shared links) * Formatting fixes
63 lines
1.6 KiB
JavaScript
63 lines
1.6 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(`/${encodeURIComponent(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 dark:bg-gray-800">
|
|
{this.props.children}
|
|
</div>
|
|
|
|
</div>
|
|
</div>,
|
|
document.getElementById("modal_root"),
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
export default withRouter(Modal)
|