1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
import * as React from 'react';
import "./MainViewModal.scss";
import { Opt } from '../../fields/Doc';
import { Lambda, reaction } from 'mobx';
import { observer } from 'mobx-react';
export interface MainViewOverlayProps {
isDisplayed: boolean;
interactive: boolean;
contents: string | JSX.Element | null;
dialogueBoxStyle?: React.CSSProperties;
overlayStyle?: React.CSSProperties;
dialogueBoxDisplayedOpacity?: number;
overlayDisplayedOpacity?: number;
closeOnExternalClick?: () => void;
}
@observer
export default class MainViewModal extends React.Component<MainViewOverlayProps> {
private ref: React.RefObject<HTMLDivElement> = React.createRef();
private displayedListenerDisposer: Opt<Lambda>;
componentDidMount() {
document.removeEventListener("pointerdown", this.close);
this.displayedListenerDisposer = reaction(() => this.props.isDisplayed, (isDisplayed) => {
if (isDisplayed) document.addEventListener("pointerdown", this.close);
else document.removeEventListener("pointerdown", this.close);
});
}
componentWillUnmount() {
this.displayedListenerDisposer?.();
document.removeEventListener("pointerdown", this.close);
}
close = (e: PointerEvent) => {
const { left, right, top, bottom } = this.ref.current!.getBoundingClientRect();
if (e.clientX === 0 && e.clientY === 0) return; // why does this happen?
if (e.clientX < left || e.clientX > right || e.clientY > bottom || e.clientY < top) {
this.props.closeOnExternalClick?.();
}
}
render() {
const p = this.props;
const dialogueOpacity = p.dialogueBoxDisplayedOpacity || 1;
const overlayOpacity = p.overlayDisplayedOpacity || 0.4;
return !p.isDisplayed ? (null) : (
<div style={{ pointerEvents: p.isDisplayed ? p.interactive ? "all" : "none" : "none" }}>
<div
className={"dialogue-box"}
style={{
borderColor: "black",
...(p.dialogueBoxStyle || {}),
opacity: p.isDisplayed ? dialogueOpacity : 0
}}
ref={this.ref}
>{p.contents}</div>
<div
className={"overlay"}
style={{
backgroundColor: "gainsboro",
...(p.overlayStyle || {}),
opacity: p.isDisplayed ? overlayOpacity : 0
}}
/>
</div>
);
}
}
|