mirror of
https://github.com/tooot-app/app
synced 2025-04-16 03:07:32 +02:00
153 lines
4.4 KiB
TypeScript
153 lines
4.4 KiB
TypeScript
import analytics from '@components/analytics'
|
|
import Button from '@components/Button'
|
|
import GracefullyImage from '@components/GracefullyImage'
|
|
import { Slider } from '@sharcoux/slider'
|
|
import { StyleConstants } from '@utils/styles/constants'
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
|
import { Audio } from 'expo-av'
|
|
import React, { useCallback, useState } from 'react'
|
|
import { StyleSheet, View } from 'react-native'
|
|
import { Blurhash } from 'react-native-blurhash'
|
|
import attachmentAspectRatio from './aspectRatio'
|
|
|
|
export interface Props {
|
|
total: number
|
|
index: number
|
|
sensitiveShown: boolean
|
|
audio: Mastodon.AttachmentAudio
|
|
}
|
|
|
|
const AttachmentAudio: React.FC<Props> = ({
|
|
total,
|
|
index,
|
|
sensitiveShown,
|
|
audio
|
|
}) => {
|
|
const { theme } = useTheme()
|
|
|
|
const [audioPlayer, setAudioPlayer] = useState<Audio.Sound>()
|
|
const [audioPlaying, setAudioPlaying] = useState(false)
|
|
const [audioPosition, setAudioPosition] = useState(0)
|
|
const playAudio = useCallback(async () => {
|
|
analytics('timeline_shared_attachment_audio_play_press', { id: audio.id })
|
|
if (!audioPlayer) {
|
|
const { sound } = await Audio.Sound.createAsync(
|
|
{ uri: audio.url },
|
|
{},
|
|
// @ts-ignore
|
|
props => setAudioPosition(props.positionMillis)
|
|
)
|
|
setAudioPlayer(sound)
|
|
} else {
|
|
await audioPlayer.setPositionAsync(audioPosition)
|
|
audioPlayer.playAsync()
|
|
setAudioPlaying(true)
|
|
}
|
|
}, [audioPlayer, audioPosition])
|
|
const pauseAudio = useCallback(async () => {
|
|
analytics('timeline_shared_attachment_audio_pause_press', { id: audio.id })
|
|
audioPlayer!.pauseAsync()
|
|
setAudioPlaying(false)
|
|
}, [audioPlayer])
|
|
|
|
return (
|
|
<View
|
|
accessibilityLabel={audio.description}
|
|
style={[
|
|
styles.base,
|
|
{
|
|
backgroundColor: theme.disabled,
|
|
aspectRatio: attachmentAspectRatio({ total, index })
|
|
}
|
|
]}
|
|
>
|
|
<View style={styles.overlay}>
|
|
{sensitiveShown ? (
|
|
audio.blurhash ? (
|
|
<Blurhash
|
|
blurhash={audio.blurhash}
|
|
style={{
|
|
width: '100%',
|
|
height: '100%'
|
|
}}
|
|
/>
|
|
) : null
|
|
) : (
|
|
<>
|
|
{audio.preview_url && (
|
|
<GracefullyImage
|
|
uri={{
|
|
original: audio.preview_url,
|
|
remote: audio.preview_remote_url
|
|
}}
|
|
style={styles.background}
|
|
/>
|
|
)}
|
|
<Button
|
|
type='icon'
|
|
content={audioPlaying ? 'PauseCircle' : 'PlayCircle'}
|
|
size='L'
|
|
round
|
|
overlay
|
|
{...(audioPlaying
|
|
? { onPress: pauseAudio }
|
|
: { onPress: playAudio })}
|
|
/>
|
|
</>
|
|
)}
|
|
</View>
|
|
{audio.meta.original.duration ? (
|
|
<View
|
|
style={{
|
|
alignSelf: 'flex-end',
|
|
width: '100%',
|
|
height: StyleConstants.Spacing.M + StyleConstants.Spacing.S * 2,
|
|
backgroundColor: theme.backgroundOverlayInvert,
|
|
paddingHorizontal: StyleConstants.Spacing.Global.PagePadding,
|
|
borderRadius: 100,
|
|
opacity: sensitiveShown ? 0.35 : undefined
|
|
}}
|
|
>
|
|
<Slider
|
|
minimumValue={0}
|
|
maximumValue={audio.meta.original.duration * 1000}
|
|
value={audioPosition}
|
|
minimumTrackTintColor={theme.secondary}
|
|
maximumTrackTintColor={theme.disabled}
|
|
// onSlidingStart={() => {
|
|
// audioPlayer?.pauseAsync()
|
|
// setAudioPlaying(false)
|
|
// }}
|
|
// onSlidingComplete={value => {
|
|
// setAudioPosition(value)
|
|
// }}
|
|
enabled={false} // Bug in above sliding actions
|
|
thumbSize={StyleConstants.Spacing.M}
|
|
thumbTintColor={theme.primaryOverlay}
|
|
/>
|
|
</View>
|
|
) : null}
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
flex: 1,
|
|
flexBasis: '50%',
|
|
padding: StyleConstants.Spacing.XS / 2,
|
|
flexDirection: 'row'
|
|
},
|
|
background: { position: 'absolute', width: '100%', height: '100%' },
|
|
overlay: {
|
|
position: 'absolute',
|
|
width: '100%',
|
|
height: '100%',
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center'
|
|
}
|
|
})
|
|
|
|
export default AttachmentAudio
|