diff options
Diffstat (limited to 'src/view/com/modals/Modal.web.tsx')
-rw-r--r-- | src/view/com/modals/Modal.web.tsx | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx new file mode 100644 index 000000000..25493312d --- /dev/null +++ b/src/view/com/modals/Modal.web.tsx @@ -0,0 +1,85 @@ +import React from 'react' +import {TouchableWithoutFeedback, StyleSheet, View} from 'react-native' +import {observer} from 'mobx-react-lite' +import {useStores} from '../../../state' +import {usePalette} from '../../lib/hooks/usePalette' + +import * as models from '../../../state/models/shell-ui' + +import * as ConfirmModal from './Confirm' +import * as EditProfileModal from './EditProfile' +import * as ServerInputModal from './ServerInput' +import * as ReportPostModal from './ReportPost' +import * as ReportAccountModal from './ReportAccount' + +export const Modal = observer(function Modal() { + const store = useStores() + const pal = usePalette('default') + + if (!store.shell.isModalActive) { + return null + } + + const onClose = () => { + store.shell.closeModal() + } + const onInnerPress = () => { + // do nothing, we just want to stop it from bubbling + } + + let element + if (store.shell.activeModal?.name === 'confirm') { + element = ( + <ConfirmModal.Component + {...(store.shell.activeModal as models.ConfirmModal)} + /> + ) + } else if (store.shell.activeModal?.name === 'edit-profile') { + element = ( + <EditProfileModal.Component + {...(store.shell.activeModal as models.EditProfileModal)} + /> + ) + } else if (store.shell.activeModal?.name === 'server-input') { + element = ( + <ServerInputModal.Component + {...(store.shell.activeModal as models.ServerInputModal)} + /> + ) + } else if (store.shell.activeModal?.name === 'report-post') { + element = <ReportPostModal.Component /> + } else if (store.shell.activeModal?.name === 'report-account') { + element = <ReportAccountModal.Component /> + } else { + return null + } + + return ( + <TouchableWithoutFeedback onPress={onClose}> + <View style={styles.mask}> + <TouchableWithoutFeedback onPress={onInnerPress}> + <View style={[styles.container, pal.view]}>{element}</View> + </TouchableWithoutFeedback> + </View> + </TouchableWithoutFeedback> + ) +}) + +const styles = StyleSheet.create({ + mask: { + position: 'absolute', + top: 0, + left: 0, + width: '100%', + height: '100%', + backgroundColor: '#000c', + alignItems: 'center', + justifyContent: 'center', + }, + container: { + width: 500, + paddingVertical: 20, + paddingHorizontal: 24, + borderRadius: 8, + }, +}) |