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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
import React, { useContext, useEffect, useMemo, useRef, useState } from 'react';
import ReactDOM from 'react-dom';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { Scheduler } from '../../shared/scheduler';
import ImageView from './ImageView';
const ModalContent = styled.div({
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
});
const ModalBackground = styled.div({
backgroundColor: 'rgba(0,0,0,0.5)',
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
});
export const StyledModalContainer = styled.div({
position: 'relative',
flex: 1,
});
interface IModalContainerProps {
children?: React.ReactNode;
}
interface IModalContext {
activeModal: boolean;
setActiveModal: (value: boolean) => void;
modalContainerRef: React.RefObject<HTMLDivElement>;
previousActiveElement: React.MutableRefObject<HTMLElement | undefined>;
}
const noActiveModalContextError = new Error('ActiveModalContext.Provider missing');
const ActiveModalContext = React.createContext<IModalContext>({
get activeModal(): boolean {
throw noActiveModalContextError;
},
setActiveModal(_value) {
throw noActiveModalContextError;
},
get modalContainerRef(): React.RefObject<HTMLDivElement> {
throw noActiveModalContextError;
},
get previousActiveElement(): React.MutableRefObject<HTMLElement | undefined> {
throw noActiveModalContextError;
},
});
export function ModalContainer(props: IModalContainerProps) {
const [activeModal, setActiveModal] = useState(false);
const previousActiveElement = useRef<HTMLElement>();
const modalContainerRef = useRef() as React.RefObject<HTMLDivElement>;
const contextValue = useMemo(
() => ({
activeModal,
setActiveModal,
modalContainerRef,
previousActiveElement,
}),
[activeModal],
);
useEffect(() => {
if (!activeModal) {
previousActiveElement.current?.focus();
}
}, [activeModal]);
return (
<ActiveModalContext.Provider value={contextValue}>
<StyledModalContainer ref={modalContainerRef}>
<ModalContent aria-hidden={activeModal}>{props.children}</ModalContent>
</StyledModalContainer>
</ActiveModalContext.Provider>
);
}
export enum ModalAlertType {
info = 1,
warning,
}
const ModalAlertContainer = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
justifyContent: 'center',
padding: '26px 14px 14px',
});
const StyledModalAlert = styled.div({
display: 'flex',
flexDirection: 'column',
backgroundColor: colors.darkBlue,
borderRadius: '11px',
padding: '16px',
});
const ModalAlertIcon = styled.div({
display: 'flex',
justifyContent: 'center',
marginTop: '8px',
});
const ModalAlertButtonContainer = styled.div({
display: 'flex',
flexDirection: 'column',
marginTop: '18px',
});
interface IModalAlertProps {
type?: ModalAlertType;
iconColor?: string;
message?: string;
buttons: React.ReactNode[];
children?: React.ReactNode;
close?: () => void;
}
export function ModalAlert(props: IModalAlertProps) {
const activeModalContext = useContext(ActiveModalContext);
return <ModalAlertWithContext {...activeModalContext} {...props} />;
}
class ModalAlertWithContext extends React.Component<IModalAlertProps & IModalContext> {
private element = document.createElement('div');
private modalRef = React.createRef<HTMLDivElement>();
private appendScheduler = new Scheduler();
constructor(props: IModalAlertProps & IModalContext) {
super(props);
if (document.activeElement) {
props.previousActiveElement.current = document.activeElement as HTMLElement;
}
}
public componentDidMount() {
this.props.setActiveModal(true);
// The `true` argument specifies that the event should be dispatched in the capture phase. This
// makes sure that this component catches the event before the escape hatch.
document.addEventListener('keydown', this.handleKeyPress, true);
const modalContainer = this.props.modalContainerRef.current;
if (modalContainer) {
// Mounting the container element immediately results in a graphical issue with the dialog
// first rendering with the wrong proportions and then changing to the correct proportions.
// Postponing it to the next event cycle solves this issue.
this.appendScheduler.schedule(() => {
modalContainer.appendChild(this.element);
this.modalRef.current?.focus();
});
} else {
throw Error('Modal container not found when mounting modal');
}
}
public componentWillUnmount() {
this.props.setActiveModal(false);
document.removeEventListener('keydown', this.handleKeyPress, true);
this.appendScheduler.cancel();
this.props.modalContainerRef.current?.removeChild(this.element);
}
public render() {
return ReactDOM.createPortal(this.renderModal(), this.element);
}
private renderModal() {
return (
<ModalBackground>
<ModalAlertContainer>
<StyledModalAlert ref={this.modalRef} tabIndex={-1} role="dialog" aria-modal>
{this.props.type && (
<ModalAlertIcon>{this.renderTypeIcon(this.props.type)}</ModalAlertIcon>
)}
{this.props.message && <ModalMessage>{this.props.message}</ModalMessage>}
{this.props.children}
{this.props.buttons.map((button, index) => (
<ModalAlertButtonContainer key={index}>{button}</ModalAlertButtonContainer>
))}
</StyledModalAlert>
</ModalAlertContainer>
</ModalBackground>
);
}
private renderTypeIcon(type: ModalAlertType) {
let source = '';
let color = '';
switch (type) {
case ModalAlertType.info:
source = 'icon-alert';
color = colors.white;
break;
case ModalAlertType.warning:
source = 'icon-alert';
color = colors.red;
break;
}
return (
<ImageView height={44} width={44} source={source} tintColor={this.props.iconColor ?? color} />
);
}
private handleKeyPress = (event: KeyboardEvent) => {
if (event.key === 'Escape') {
event.stopPropagation();
this.props.close?.();
}
};
}
export const ModalMessage = styled.span({
fontFamily: 'Open Sans',
fontSize: '13px',
fontWeight: 500,
lineHeight: '20px',
color: colors.white80,
marginTop: '16px',
});
|