-
Notifications
You must be signed in to change notification settings - Fork 253
/
App.tsx
215 lines (206 loc) · 5.03 KB
/
App.tsx
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
import React, {useRef, useState} from 'react';
import {
StyleSheet,
Text,
View,
FlatList,
SafeAreaView,
TouchableOpacity,
ImageSourcePropType,
ColorValue,
} from 'react-native';
import DropdownAlert, {
DropdownAlertData,
DropdownAlertType,
DropdownAlertColor,
DropdownAlertProps,
} from 'react-native-dropdownalert';
import NotificationIOS from './NotificationIOS';
import NotificationAndroid from './NotificationAndroid';
type ListItem = {
name: string;
alertData?: DropdownAlertData;
alertProps?: DropdownAlertProps;
color: ColorValue;
};
type ListItemIndex = {
item: ListItem;
index: number;
};
function App(): React.JSX.Element {
const defaultSelected: ListItem = {
name: 'Default',
color: DropdownAlertColor.Default,
};
const [selected, setSelected] = useState(defaultSelected);
const [processing, setProcessing] = useState(false);
let alert = useRef(
(_data?: DropdownAlertData) => new Promise<DropdownAlertData>(res => res),
);
let dismiss = useRef(() => {});
const reactNativeLogoSrc: ImageSourcePropType = {
uri: 'https://reactnative.dev/docs/assets/favicon.png',
};
const items: ListItem[] = [
{
name: 'Warn',
alertData: {
type: DropdownAlertType.Warn,
title: 'Warn',
message:
'The device battery is low. It will go into low power mode in 5 minutes.',
},
color: DropdownAlertColor.Warn,
},
{
name: 'Info',
alertData: {
type: DropdownAlertType.Info,
title: 'Info',
message:
'The system goes offline from midnight to 3 AM for regular maintenance.',
},
color: DropdownAlertColor.Info,
},
{
name: 'Success',
alertData: {
type: DropdownAlertType.Success,
title: 'Success',
message: 'The order is complete and details sent to email.',
},
color: DropdownAlertColor.Success,
},
{
name: 'Error',
alertData: {
type: DropdownAlertType.Error,
title: 'Error',
message:
'Something went wrong. Please contact support if error persists.',
},
color: DropdownAlertColor.Error,
},
{
name: 'Custom',
alertData: {
type: '',
title: 'Custom',
message:
'This demonstrates the ability to customize image, interval and style.',
source: reactNativeLogoSrc,
interval: 5000,
},
alertProps: {
alertViewStyle: styles.alertView,
},
color: styles.alertView.backgroundColor,
},
{
name: 'iOS notification',
alertProps: {
updateStatusBar: false,
children: <NotificationIOS />,
},
color: 'gray',
},
{
name: 'Android notification',
alertProps: {
dismissInterval: 0,
updateStatusBar: false,
children: <NotificationAndroid />,
},
color: '#1F89C7',
},
{
name: 'Cancel',
alertData: {
type: DropdownAlertType.Info,
title: 'Info',
message:
'This demonstrates an info alert with a cancel button. Tap cancel button to dismiss.',
},
alertProps: {
dismissInterval: 0,
showCancel: true,
onDismissPressDisabled: true,
},
color: 'teal',
},
{
name: 'Bottom',
alertData: {
type: DropdownAlertType.Info,
title: 'Info',
message: 'This demonstrates an info alert with bottom alert position.',
},
alertProps: {
alertPosition: 'bottom',
infoColor: 'green',
},
color: 'green',
},
];
function _renderItem(listItemIndex: ListItemIndex): React.JSX.Element {
const {item} = listItemIndex;
return (
<TouchableOpacity
style={[styles.item, {backgroundColor: item.color}]}
onPress={() => _onSelect(item)}
disabled={processing}>
<Text style={styles.name}>{item.name}</Text>
</TouchableOpacity>
);
}
function _onSelect(item: ListItem): void {
setSelected(item);
setTimeout(async () => {
setProcessing(true);
await alert.current(item.alertData);
setProcessing(false);
}, 10);
}
return (
<View style={styles.view}>
<SafeAreaView>
<FlatList
keyExtractor={(_item, index) => `${index}`}
data={items}
initialNumToRender={items.length}
renderItem={_renderItem}
/>
</SafeAreaView>
<DropdownAlert
alert={func => (alert.current = func)}
dismiss={func => (dismiss.current = func)}
{...selected.alertProps}
/>
</View>
);
}
const styles = StyleSheet.create({
view: {
flex: 1,
justifyContent: 'center',
backgroundColor: '#F4F3E9',
},
item: {
padding: 12,
margin: 4,
borderRadius: 8,
borderColor: 'black',
borderWidth: StyleSheet.hairlineWidth,
},
name: {
fontSize: 18,
fontWeight: 'bold',
textAlign: 'center',
color: 'whitesmoke',
},
alertView: {
padding: 8,
backgroundColor: '#6441A4',
},
});
export default App;