import React, {useState} from 'react' import {ImageStyle, Keyboard, LayoutChangeEvent} from 'react-native' import {GalleryModel} from 'state/models/media/gallery' import {observer} from 'mobx-react-lite' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {s, colors} from 'lib/styles' import {StyleSheet, TouchableOpacity, View} from 'react-native' import {Image} from 'expo-image' import {Text} from 'view/com/util/text/Text' import {Dimensions} from 'lib/media/types' import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {Trans, msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useModalControls} from '#/state/modals' import {isNative} from 'platform/detection' const IMAGE_GAP = 8 interface GalleryProps { gallery: GalleryModel } export const Gallery = (props: GalleryProps) => { const [containerInfo, setContainerInfo] = useState() const onLayout = (evt: LayoutChangeEvent) => { const {width, height} = evt.nativeEvent.layout setContainerInfo({ width, height, }) } return ( {containerInfo ? ( ) : undefined} ) } interface GalleryInnerProps extends GalleryProps { containerInfo: Dimensions } const GalleryInner = observer(function GalleryImpl({ gallery, containerInfo, }: GalleryInnerProps) { const pal = usePalette('default') const {_} = useLingui() const {isMobile} = useWebMediaQueries() const {openModal} = useModalControls() let side: number if (gallery.size === 1) { side = 250 } else { side = (containerInfo.width - IMAGE_GAP * (gallery.size - 1)) / gallery.size } const imageStyle = { height: side, width: side, } const isOverflow = isMobile && gallery.size > 2 const altTextControlStyle = isOverflow ? { left: 4, bottom: 4, } : !isMobile && gallery.size < 3 ? { left: 8, top: 8, } : { left: 4, top: 4, } const imageControlsStyle = { display: 'flex' as const, flexDirection: 'row' as const, position: 'absolute' as const, ...(isOverflow ? { top: 4, right: 4, gap: 4, } : !isMobile && gallery.size < 3 ? { top: 8, right: 8, gap: 8, } : { top: 4, right: 4, gap: 4, }), zIndex: 1, } return !gallery.isEmpty ? ( <> {gallery.images.map(image => ( { Keyboard.dismiss() openModal({ name: 'alt-text-image', image, }) }} style={[styles.altTextControl, altTextControlStyle]}> ALT {image.altText.length > 0 ? ( ) : undefined} { if (isNative) { gallery.crop(image) } else { openModal({ name: 'edit-image', image, gallery, }) } }} style={styles.imageControl}> gallery.remove(image)} style={styles.imageControl}> { Keyboard.dismiss() openModal({ name: 'alt-text-image', image, }) }} style={styles.altTextHiddenRegion} /> ))} Alt text describes images for blind and low-vision users, and helps give context to everyone. ) : null }) const styles = StyleSheet.create({ gallery: { flex: 1, flexDirection: 'row', gap: IMAGE_GAP, marginTop: 16, }, image: { resizeMode: 'cover', borderRadius: 8, }, imageControl: { width: 24, height: 24, borderRadius: 12, backgroundColor: 'rgba(0, 0, 0, 0.75)', alignItems: 'center', justifyContent: 'center', }, altTextControl: { position: 'absolute', zIndex: 1, borderRadius: 6, backgroundColor: 'rgba(0, 0, 0, 0.75)', paddingHorizontal: 8, paddingVertical: 3, flexDirection: 'row', alignItems: 'center', }, altTextControlLabel: { color: 'white', fontSize: 12, fontWeight: 'bold', letterSpacing: 1, }, altTextHiddenRegion: { position: 'absolute', left: 4, right: 4, bottom: 4, top: 30, zIndex: 1, }, reminder: { flexDirection: 'row', alignItems: 'center', gap: 8, borderRadius: 8, paddingVertical: 14, }, infoIcon: { width: 22, height: 22, borderRadius: 12, alignItems: 'center', justifyContent: 'center', }, })