mirror of
https://github.com/tooot-app/app
synced 2025-04-02 20:51:28 +02:00
116 lines
3.6 KiB
TypeScript
116 lines
3.6 KiB
TypeScript
import AttachmentVideo from '@components/Timeline/Shared/Attachment/Video'
|
|
import { StyleConstants } from '@utils/styles/constants'
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
|
import React, { useContext, useMemo, useRef } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { ScrollView, StyleSheet, Text, TextInput, View } from 'react-native'
|
|
import ComposeContext from '../utils/createContext'
|
|
import ComposeEditAttachmentImage from './Image'
|
|
|
|
export interface Props {
|
|
index: number
|
|
}
|
|
|
|
const ComposeEditAttachmentRoot: React.FC<Props> = ({ index }) => {
|
|
const { t } = useTranslation('sharedCompose')
|
|
const { mode, theme } = useTheme()
|
|
const { composeState, composeDispatch } = useContext(ComposeContext)
|
|
const theAttachment = composeState.attachments.uploads[index].remote!
|
|
|
|
const mediaDisplay = useMemo(() => {
|
|
if (theAttachment) {
|
|
switch (theAttachment.type) {
|
|
case 'image':
|
|
return <ComposeEditAttachmentImage index={index} />
|
|
case 'video':
|
|
case 'gifv':
|
|
const video = composeState.attachments.uploads[index]
|
|
return (
|
|
<AttachmentVideo
|
|
total={1}
|
|
index={0}
|
|
sensitiveShown={false}
|
|
video={
|
|
video.local
|
|
? ({
|
|
url: video.local.uri,
|
|
preview_url: video.local.local_thumbnail,
|
|
blurhash: video.remote?.blurhash
|
|
} as Mastodon.AttachmentVideo)
|
|
: (video.remote as Mastodon.AttachmentVideo)
|
|
}
|
|
/>
|
|
)
|
|
}
|
|
}
|
|
return null
|
|
}, [])
|
|
|
|
const onChangeText = (e: any) =>
|
|
composeDispatch({
|
|
type: 'attachment/edit',
|
|
payload: {
|
|
...theAttachment,
|
|
description: e
|
|
}
|
|
})
|
|
|
|
const scrollViewRef = useRef<ScrollView>(null)
|
|
|
|
return (
|
|
<ScrollView ref={scrollViewRef}>
|
|
{mediaDisplay}
|
|
<View style={styles.altTextContainer}>
|
|
<Text style={[styles.altTextInputHeading, { color: theme.primaryDefault }]}>
|
|
{t('content.editAttachment.content.altText.heading')}
|
|
</Text>
|
|
<TextInput
|
|
style={[
|
|
styles.altTextInput,
|
|
{ borderColor: theme.border, color: theme.primaryDefault }
|
|
]}
|
|
onFocus={() => scrollViewRef.current?.scrollToEnd()}
|
|
autoCapitalize='none'
|
|
autoCorrect={false}
|
|
maxLength={1500}
|
|
multiline
|
|
onChangeText={onChangeText}
|
|
placeholder={t('content.editAttachment.content.altText.placeholder')}
|
|
placeholderTextColor={theme.secondary}
|
|
scrollEnabled
|
|
value={theAttachment.description}
|
|
keyboardAppearance={mode}
|
|
/>
|
|
<Text style={[styles.altTextLength, { color: theme.secondary }]}>
|
|
{theAttachment.description?.length || 0} / 1500
|
|
</Text>
|
|
</View>
|
|
</ScrollView>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
altTextContainer: { padding: StyleConstants.Spacing.Global.PagePadding },
|
|
altTextInputHeading: {
|
|
...StyleConstants.FontStyle.M,
|
|
fontWeight: StyleConstants.Font.Weight.Bold
|
|
},
|
|
altTextInput: {
|
|
height: 200,
|
|
...StyleConstants.FontStyle.M,
|
|
marginTop: StyleConstants.Spacing.M,
|
|
marginBottom: StyleConstants.Spacing.S,
|
|
padding: StyleConstants.Spacing.Global.PagePadding,
|
|
paddingTop: StyleConstants.Spacing.S * 1.5,
|
|
borderWidth: StyleSheet.hairlineWidth
|
|
},
|
|
altTextLength: {
|
|
textAlign: 'right',
|
|
marginRight: StyleConstants.Spacing.S,
|
|
...StyleConstants.FontStyle.S,
|
|
marginBottom: StyleConstants.Spacing.M
|
|
}
|
|
})
|
|
|
|
export default ComposeEditAttachmentRoot
|