From d3707f30e30bb717e95b27cc83a1121815b475b5 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 10 Nov 2022 16:30:14 -0600 Subject: Implement scene invitation and membership controls --- src/view/com/modals/Confirm.tsx | 95 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 src/view/com/modals/Confirm.tsx (limited to 'src/view/com/modals/Confirm.tsx') diff --git a/src/view/com/modals/Confirm.tsx b/src/view/com/modals/Confirm.tsx new file mode 100644 index 000000000..5afe7c087 --- /dev/null +++ b/src/view/com/modals/Confirm.tsx @@ -0,0 +1,95 @@ +import React, {useState} from 'react' +import { + ActivityIndicator, + StyleSheet, + Text, + TouchableOpacity, + View, +} from 'react-native' +import LinearGradient from 'react-native-linear-gradient' +import {useStores} from '../../../state' +import {s, colors, gradients} from '../../lib/styles' +import {ErrorMessage} from '../util/ErrorMessage' + +export const snapPoints = ['50%'] + +export function Component({ + title, + message, + onPressConfirm, +}: { + title: string + message: string | (() => JSX.Element) + onPressConfirm: () => void | Promise +}) { + const store = useStores() + const [isProcessing, setIsProcessing] = useState(false) + const [error, setError] = useState('') + const onPress = async () => { + setError('') + setIsProcessing(true) + try { + await onPressConfirm() + store.shell.closeModal() + return + } catch (e: any) { + setError(e.toString()) + setIsProcessing(false) + } + } + return ( + + {title} + {typeof message === 'string' ? ( + {message} + ) : ( + message() + )} + {error ? ( + + + + ) : undefined} + {isProcessing ? ( + + + + ) : ( + + + Confirm + + + )} + + ) +} + +const styles = StyleSheet.create({ + title: { + textAlign: 'center', + fontWeight: 'bold', + fontSize: 24, + marginBottom: 12, + }, + description: { + textAlign: 'center', + fontSize: 17, + paddingHorizontal: 22, + color: colors.gray5, + marginBottom: 10, + }, + btn: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + width: '100%', + borderRadius: 32, + padding: 14, + backgroundColor: colors.gray1, + }, +}) -- cgit 1.4.1