Implement modals for web

This commit is contained in:
Paul Frazee 2023-01-26 22:25:38 -06:00
parent 24559599f3
commit 4b33cdb7ec
6 changed files with 102 additions and 9 deletions

View file

@ -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,
},
})