-
Notifications
You must be signed in to change notification settings - Fork 0
/
Prompt.tsx
188 lines (178 loc) · 4.95 KB
/
Prompt.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
import React from 'react';
import {
Keyboard,
Platform,
Text,
TextInput as RNTextInput,
useWindowDimensions,
View,
} from 'react-native';
import { useHeaderContext } from '../contexts/HeaderContext';
import { useThemeContext } from '../contexts/ThemeContext';
import createStyleSheet from '../styles/createStyleSheet';
import Button from './Button';
import DialogBox from './DialogBox';
import Modal from './Modal';
import TextInput from './TextInput';
export type PromptItem = {
title: string;
placeholder?: string | undefined;
defaultValue?: string | undefined;
onSubmit?: (text: string) => void | undefined;
submitLabel?: string | undefined;
onCancel?: () => void | undefined;
cancelLabel?: string | undefined;
};
type PromptProps = {
visible: boolean;
onHide: () => void;
onDismiss?: () => void;
autoFocus?: boolean;
} & PromptItem;
export default function Prompt({
onDismiss,
visible,
onHide,
autoFocus,
title,
defaultValue = '',
placeholder = 'Enter',
onSubmit,
onCancel,
submitLabel = 'Submit',
cancelLabel = 'Cancel',
}: PromptProps): JSX.Element {
const { defaultStatusBarTranslucent } = useHeaderContext();
const { fonts } = useThemeContext();
const inputRef = React.useRef<RNTextInput>(null);
const { width, height } = useWindowDimensions();
const { colors } = useThemeContext();
const buttons = [
{ text: cancelLabel, onPress: () => onCancel?.() },
{ text: submitLabel, onPress: () => onSubmit?.(text) },
];
const [text, setText] = React.useState(defaultValue);
const clearButtonMode = 'while-editing';
const transparent = true;
// FIXME: autoFocus trick with modal
// Android
// - InputProps.autoFocus is not trigger keyboard appearing.
// - InputRef.focus() is trigger keyboard appearing, but position of keyboard selection is always the start of text.
// iOS
// - InputProps.autoFocus is trigger weird UI behavior on landscape mode.
React.useEffect(() => {
if (autoFocus && visible) {
setTimeout(() => {
if (Platform.OS === 'android') inputRef.current?.blur();
inputRef.current?.focus();
}, 250);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [autoFocus, visible, `${width}-${height}`]);
return (
<Modal
enableKeyboardAvoid
disableBackgroundClose
onRequestClose={onHide}
onDismiss={() => {
setText('');
onDismiss?.();
}}
statusBarTranslucent={defaultStatusBarTranslucent}
visible={visible}
backgroundStyle={{ alignItems: 'center', justifyContent: 'center' }}
backdropColor={colors.backdrop}
transparent={transparent}
>
<DialogBox style={styles.container}>
{Boolean(title) && (
<View style={styles.titleContainer}>
<Text numberOfLines={1} style={[{ color: 'black' }, fonts.title]}>
{title}
</Text>
</View>
)}
<View style={styles.inputContainer}>
<TextInput
autoFocus={autoFocus}
ref={inputRef}
placeholder={placeholder}
value={text}
onChangeText={setText}
clearButtonMode={clearButtonMode}
style={styles.input}
/>
</View>
<View style={styles.buttonContainer}>
{buttons.map(({ text, onPress }, index) => {
return (
<Button
key={text + index.toString()}
style={[styles.button, {}]}
color={
index === 0
? {
enabled: {
content: 'black',
background: 'rgba(242, 242, 242, 1)',
},
pressed: {
content: 'black',
background: 'rgba(242, 242, 242, 1)',
},
}
: undefined
}
onPress={() => {
Keyboard.dismiss();
try {
onPress?.();
} finally {
onHide();
}
}}
>
{text}
</Button>
);
})}
</View>
</DialogBox>
</Modal>
);
}
const styles = createStyleSheet({
container: {
paddingTop: 8,
},
titleContainer: {
// backgroundColor: 'red',
width: '100%',
marginBottom: 12,
paddingVertical: 12,
paddingHorizontal: 24,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
inputContainer: {
paddingHorizontal: 24,
marginBottom: 12,
},
input: {
paddingHorizontal: 15,
paddingVertical: 10,
borderRadius: 20,
},
buttonContainer: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-evenly',
padding: 12,
},
button: {
borderRadius: 18,
paddingHorizontal: 20,
height: 36,
},
});