import React, {ComponentProps, FC} from 'react' import {Pressable, StyleSheet, Text, View} from 'react-native' import {Image} from 'expo-image' import {AppBskyEmbedImages} from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {isWeb} from 'platform/detection' type EventFunction = (index: number) => void interface GalleryItemProps { images: AppBskyEmbedImages.ViewImage[] index: number onPress?: EventFunction onLongPress?: EventFunction onPressIn?: EventFunction imageStyle: ComponentProps['style'] } export const GalleryItem: FC = ({ images, index, imageStyle, onPress, onPressIn, onLongPress, }) => { const {_} = useLingui() const image = images[index] return ( onPress(index) : undefined} onPressIn={onPressIn ? () => onPressIn(index) : undefined} onLongPress={onLongPress ? () => onLongPress(index) : undefined} style={styles.fullWidth} accessibilityRole="button" accessibilityLabel={image.alt || _(msg`Image`)} accessibilityHint=""> {image.alt === '' ? null : ( ALT )} ) } const styles = StyleSheet.create({ fullWidth: { flex: 1, }, image: { flex: 1, borderRadius: 4, }, altContainer: { backgroundColor: 'rgba(0, 0, 0, 0.75)', borderRadius: 6, paddingHorizontal: 6, paddingVertical: 3, position: 'absolute', // Related to margin/gap hack. This keeps the alt label in the same position // on all platforms right: isWeb ? 8 : 5, bottom: isWeb ? 8 : 5, }, alt: { color: 'white', fontSize: 7, fontWeight: 'bold', }, })