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
|
import * as React from 'react';
import { Component, Styles, Text, View } from 'reactxp';
import { colors } from '../../config.json';
import ImageView from './ImageView';
const styles = {
modalAlertBackground: Styles.createViewStyle({
flex: 1,
justifyContent: 'center',
paddingLeft: 14,
paddingRight: 14,
}),
modalAlert: Styles.createViewStyle({
backgroundColor: colors.darkBlue,
borderRadius: 11,
padding: 16,
}),
modalAlertIcon: Styles.createViewStyle({
alignItems: 'center',
marginBottom: 12,
marginTop: 4,
}),
modalAlertMessage: Styles.createTextStyle({
fontFamily: 'Open Sans',
fontSize: 16,
fontWeight: '500',
lineHeight: 20,
color: colors.white80,
}),
modalAlertButtonContainer: Styles.createViewStyle({
marginTop: 16,
}),
};
export const ModalContent: React.FC = ({ children }) => {
return (
<div
style={{
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
}}>
{children}
</div>
);
};
const ModalBackground: React.FC = ({ children }) => {
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,
}}>
{children}
</div>
);
};
export const ModalContainer: React.FC = ({ children }) => {
return <div style={{ position: 'relative', flex: 1 }}>{children}</div>;
};
export enum ModalAlertType {
Info = 1,
Warning,
}
interface IModalAlertProps {
type?: ModalAlertType;
message: string;
buttons: React.ReactNode[];
}
export class ModalAlert extends Component<IModalAlertProps> {
public render() {
return (
<ModalBackground>
<View style={styles.modalAlertBackground}>
<View style={styles.modalAlert}>
{this.props.type && (
<View style={styles.modalAlertIcon}>{this.renderTypeIcon(this.props.type)}</View>
)}
<Text style={styles.modalAlertMessage}>{this.props.message}</Text>
{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} />;
}
}
|