180 lines
5.1 KiB
TypeScript
180 lines
5.1 KiB
TypeScript
import {useMemo, useState} from 'react'
|
|
import {type ImageStyle, useWindowDimensions, View} from 'react-native'
|
|
import {Image} from 'expo-image'
|
|
import {msg} from '@lingui/core/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
import {Plural, Trans} from '@lingui/react/macro'
|
|
|
|
import {MAX_ALT_TEXT} from '#/lib/constants'
|
|
import {enforceLen} from '#/lib/strings/helpers'
|
|
import {type ComposerImage} from '#/state/gallery'
|
|
import {AltTextCounterWrapper} from '#/view/com/composer/AltTextCounterWrapper'
|
|
import {atoms as a, tokens, useTheme} from '#/alf'
|
|
import {Button, ButtonText} from '#/components/Button'
|
|
import * as Dialog from '#/components/Dialog'
|
|
import {type DialogControlProps} from '#/components/Dialog'
|
|
import * as TextField from '#/components/forms/TextField'
|
|
import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo'
|
|
import {Text} from '#/components/Typography'
|
|
import {IS_LIQUID_GLASS, IS_WEB} from '#/env'
|
|
|
|
type Props = {
|
|
control: Dialog.DialogOuterProps['control']
|
|
image: ComposerImage
|
|
onChange: (next: ComposerImage) => void
|
|
sourceViewTag?: number
|
|
}
|
|
|
|
export const ImageAltTextDialog = ({
|
|
control,
|
|
image,
|
|
onChange,
|
|
sourceViewTag,
|
|
}: Props): React.ReactNode => {
|
|
const [altText, setAltText] = useState(image.alt)
|
|
|
|
return (
|
|
<Dialog.Outer
|
|
control={control}
|
|
onClose={() => {
|
|
onChange({
|
|
...image,
|
|
alt: enforceLen(altText, MAX_ALT_TEXT, true),
|
|
})
|
|
}}
|
|
nativeOptions={{fullHeight: true, sourceViewTag}}>
|
|
<Dialog.Handle />
|
|
<ImageAltTextInner
|
|
control={control}
|
|
image={image}
|
|
altText={altText}
|
|
setAltText={setAltText}
|
|
/>
|
|
</Dialog.Outer>
|
|
)
|
|
}
|
|
|
|
const ImageAltTextInner = ({
|
|
altText,
|
|
setAltText,
|
|
control,
|
|
image,
|
|
}: {
|
|
altText: string
|
|
setAltText: (text: string) => void
|
|
control: DialogControlProps
|
|
image: Props['image']
|
|
}): React.ReactNode => {
|
|
const {_, i18n} = useLingui()
|
|
const t = useTheme()
|
|
const {width: screenWidth} = useWindowDimensions()
|
|
|
|
const imageStyle = useMemo<ImageStyle>(() => {
|
|
const maxWidth = IS_WEB
|
|
? 450
|
|
: screenWidth - // account for dialog padding
|
|
2 * (IS_LIQUID_GLASS ? tokens.space._2xl : tokens.space.xl)
|
|
const source = image.transformed ?? image.source
|
|
|
|
if (source.height > source.width) {
|
|
return {
|
|
resizeMode: 'contain',
|
|
width: '100%',
|
|
aspectRatio: 1,
|
|
borderRadius: 8,
|
|
}
|
|
}
|
|
return {
|
|
width: '100%',
|
|
height: (maxWidth / source.width) * source.height,
|
|
borderRadius: 8,
|
|
}
|
|
}, [image, screenWidth])
|
|
|
|
return (
|
|
<Dialog.ScrollableInner label={_(msg`Add alt text`)}>
|
|
<Dialog.Close />
|
|
|
|
<View>
|
|
{/* vertical space is too precious - gets scrolled out of the way anyway */}
|
|
{IS_WEB && (
|
|
<Text
|
|
style={[a.text_2xl, a.font_semi_bold, a.leading_tight, a.pb_sm]}>
|
|
<Trans>Add alt text</Trans>
|
|
</Text>
|
|
)}
|
|
|
|
<View style={[t.atoms.bg_contrast_50, a.rounded_sm, a.overflow_hidden]}>
|
|
<Image
|
|
style={imageStyle}
|
|
source={{uri: (image.transformed ?? image.source).path}}
|
|
contentFit="contain"
|
|
accessible={true}
|
|
accessibilityIgnoresInvertColors
|
|
enableLiveTextInteraction
|
|
autoplay={false}
|
|
/>
|
|
</View>
|
|
</View>
|
|
|
|
<View style={[a.mt_md, a.gap_md]}>
|
|
<View style={[a.gap_sm]}>
|
|
<View style={[a.relative, {width: '100%'}]}>
|
|
<TextField.LabelText>
|
|
<Trans>Descriptive alt text</Trans>
|
|
</TextField.LabelText>
|
|
<TextField.Root>
|
|
<Dialog.Input
|
|
label={_(msg`Alt text`)}
|
|
onChangeText={text => {
|
|
setAltText(text)
|
|
}}
|
|
defaultValue={altText}
|
|
multiline
|
|
autoFocus
|
|
/>
|
|
</TextField.Root>
|
|
</View>
|
|
|
|
{altText.length > MAX_ALT_TEXT && (
|
|
<View style={[a.pb_sm, a.flex_row, a.gap_xs]}>
|
|
<CircleInfo fill={t.palette.negative_500} />
|
|
<Text
|
|
style={[
|
|
a.italic,
|
|
a.leading_snug,
|
|
t.atoms.text_contrast_medium,
|
|
]}>
|
|
<Trans>
|
|
Alt text will be truncated.{' '}
|
|
<Plural
|
|
value={MAX_ALT_TEXT}
|
|
other={`Limit: ${i18n.number(MAX_ALT_TEXT)} characters.`}
|
|
/>
|
|
</Trans>
|
|
</Text>
|
|
</View>
|
|
)}
|
|
</View>
|
|
|
|
<AltTextCounterWrapper altText={altText}>
|
|
<Button
|
|
label={_(msg`Save`)}
|
|
disabled={altText === image.alt}
|
|
size="large"
|
|
color="primary"
|
|
variant="solid"
|
|
onPress={() => {
|
|
control.close()
|
|
}}
|
|
style={[a.flex_grow]}>
|
|
<ButtonText>
|
|
<Trans>Save</Trans>
|
|
</ButtonText>
|
|
</Button>
|
|
</AltTextCounterWrapper>
|
|
</View>
|
|
</Dialog.ScrollableInner>
|
|
)
|
|
}
|