Add playing/paused handling to tap area

This commit is contained in:
Eric Bailey
2025-01-21 10:11:04 -06:00
parent 2e8f2d58ec
commit 85b93983ca
+20 -9
View File
@@ -21,6 +21,7 @@ import {
useSafeAreaFrame, useSafeAreaFrame,
useSafeAreaInsets, useSafeAreaInsets,
} from 'react-native-safe-area-context' } from 'react-native-safe-area-context'
import {useEvent} from 'expo'
import {useEventListener} from 'expo' import {useEventListener} from 'expo'
import {Image, ImageStyle} from 'expo-image' import {Image, ImageStyle} from 'expo-image'
import {LinearGradient} from 'expo-linear-gradient' import {LinearGradient} from 'expo-linear-gradient'
@@ -140,7 +141,7 @@ export function VideoFeed({}: NativeStackScreenProps<
<View <View
style={[ style={[
a.absolute, a.absolute,
a.z_30, a.z_50,
{top: 0, left: 0, right: 0, paddingTop: top}, {top: 0, left: 0, right: 0, paddingTop: top},
]}> ]}>
<Header sourceContext={params} /> <Header sourceContext={params} />
@@ -731,11 +732,13 @@ function Overlay({
<Hider.Content> <Hider.Content>
<View style={[a.absolute, a.inset_0, a.z_20]}> <View style={[a.absolute, a.inset_0, a.z_20]}>
<View style={[a.flex_1]}> <View style={[a.flex_1]}>
<PlayPauseTapArea {player && (
player={player} <PlayPauseTapArea
post={post} player={player}
feedContext={feedContext} post={post}
/> feedContext={feedContext}
/>
)}
</View> </View>
<LinearGradient <LinearGradient
@@ -971,7 +974,7 @@ function PlayPauseTapArea({
post, post,
feedContext, feedContext,
}: { }: {
player?: VideoPlayer player: VideoPlayer
post: Shadow<AppBskyFeedDefs.PostView> post: Shadow<AppBskyFeedDefs.PostView>
feedContext: string | undefined feedContext: string | undefined
}) { }) {
@@ -980,6 +983,9 @@ function PlayPauseTapArea({
const playHaptic = useHaptics() const playHaptic = useHaptics()
const [queueLike] = usePostLikeMutationQueue(post, 'ImmersiveVideo') const [queueLike] = usePostLikeMutationQueue(post, 'ImmersiveVideo')
const {sendInteraction} = useFeedFeedbackContext() const {sendInteraction} = useFeedFeedbackContext()
const {isPlaying} = useEvent(player, 'playingChange', {
isPlaying: player.playing,
})
const togglePlayPause = () => { const togglePlayPause = () => {
if (!player) return if (!player) return
@@ -1010,10 +1016,15 @@ function PlayPauseTapArea({
return ( return (
<Button <Button
disabled={!player} disabled={!player}
label={_(`Tap to play or pause the video`)} aria-valuetext={
isPlaying ? _(msg`Video is playing`) : _(msg`Video is paused`)
}
label={_(
`Video from ${post.author.handle}. Tap to play or pause the video`,
)}
accessibilityHint={_(msg`Double tap to like`)} accessibilityHint={_(msg`Double tap to like`)}
onPress={onPress} onPress={onPress}
style={[a.absolute, a.inset_0]}> style={[a.absolute, a.inset_0, a.z_10]}>
<View /> <View />
</Button> </Button>
) )