import React from 'react' import {View} from 'react-native' import {observer} from 'mobx-react-lite' import ImageView from './ImageViewing' import {useStores} from '../../../state' import * as models from '../../../state/models/shell-ui' import {saveImageModal} from '../../../lib/images' export const Lightbox = observer(function Lightbox() { const store = useStores() if (!store.shell.isLightboxActive) { return null } const onClose = () => { store.shell.closeLightbox() } const onLongPress = ({uri}: {uri: string}) => { saveImageModal({uri}) } if (store.shell.activeLightbox?.name === 'profile-image') { const opts = store.shell.activeLightbox as models.ProfileImageLightbox return ( ) } else if (store.shell.activeLightbox?.name === 'images') { const opts = store.shell.activeLightbox as models.ImagesLightbox return ( ({uri}))} imageIndex={opts.index} visible onRequestClose={onClose} onLongPress={onLongPress} /> ) } else { return } })