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
|
import * as React from 'react';
import ReactDOM from 'react-dom';
import { Component, Styles, Text, View } from 'reactxp';
import { colors } from '../../config.json';
import { Scheduler } from '../../shared/scheduler';
import ImageView from './ImageView';
const MODAL_CONTAINER_ID = 'modalContainer';
const styles = {
modalAlertBackground: Styles.createViewStyle({
flex: 1,
justifyContent: 'center',
paddingHorizontal: 14,
paddingTop: 26,
paddingBottom: 14,
}),
modalAlert: Styles.createViewStyle({
backgroundColor: colors.darkBlue,
borderRadius: 11,
padding: 16,
}),
modalAlertIcon: Styles.createViewStyle({
alignItems: 'center',
marginTop: 8,
}),
modalAlertMessage: Styles.createTextStyle({
fontFamily: 'Open Sans',
fontSize: 14,
fontWeight: '500',
lineHeight: 20,
color: colors.white80,
marginTop: 16,
}),
modalAlertButtonContainer: Styles.createViewStyle({
marginTop: 16,
}),
};
interface IModalContentProps {
children?: React.ReactNode;
}
export const ModalContent: React.FC = (props: IModalContentProps) => {
return (
<div
style={{
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
}}>
{props.children}
</div>
);
};
interface IModalBackgroundProps {
children?: React.ReactNode;
}
const ModalBackground: React.FC = (props: IModalBackgroundProps) => {
return (
<div
style={{
backgroundColor: 'rgba(0,0,0,0.5)',
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
}}>
{props.children}
</div>
);
};
interface IModalContainerProps {
children?: React.ReactNode;
}
export const ModalContainer: React.FC = (props: IModalContainerProps) => {
return (
<div id={MODAL_CONTAINER_ID} style={{ position: 'relative', flex: 1 }}>
<ModalContent>{props.children}</ModalContent>
</div>
);
};
export enum ModalAlertType {
Info = 1,
Warning,
}
interface IModalAlertProps {
type?: ModalAlertType;
message?: string;
buttons: React.ReactNode[];
children?: React.ReactNode;
}
export class ModalAlert extends Component<IModalAlertProps> {
private element = document.createElement('div');
private modalContainer?: Element;
private appendScheduler = new Scheduler();
public componentDidMount() {
const modalContainer = document.getElementById(MODAL_CONTAINER_ID);
if (modalContainer) {
this.modalContainer = 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);
});
} else {
throw Error('Modal container not found when mounting modal');
}
}
public componentWillUnmount() {
this.appendScheduler.cancel();
if (this.modalContainer) {
this.modalContainer.removeChild(this.element);
}
}
public render() {
return ReactDOM.createPortal(this.renderModal(), this.element);
}
private renderModal() {
return (
<ModalBackground>
<View style={styles.modalAlertBackground}>
<View style={styles.modalAlert}>
{this.props.type && (
<View style={styles.modalAlertIcon}>{this.renderTypeIcon(this.props.type)}</View>
)}
{this.props.message && <ModalMessage>{this.props.message}</ModalMessage>}
{this.props.children}
{this.props.buttons.map((button, index) => (
<View key={index} style={styles.modalAlertButtonContainer}>
{button}
</View>
))}
</View>
</View>
</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={color} />;
}
}
interface IModalMessageProps {
children?: string;
}
export function ModalMessage(props: IModalMessageProps) {
return <Text style={styles.modalAlertMessage}>{props.children}</Text>;
}
|