about summary refs log tree commit diff
path: root/src/view/com/util/post-embeds/VideoPlayerContext.tsx
blob: 95511099e4df8bf4e1f564735c35f1fe49459f3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import React, {useContext} from 'react'
import type {VideoPlayer} from 'expo-video'
import {useVideoPlayer as useExpoVideoPlayer} from 'expo-video'

import {logger} from '#/logger'
import {
  AudioCategory,
  PlatformInfo,
} from '../../../../../modules/expo-bluesky-swiss-army'

const VideoPlayerContext = React.createContext<VideoPlayer | null>(null)

export function VideoPlayerProvider({
  source,
  children,
}: {
  source: string
  children: React.ReactNode
}) {
  // eslint-disable-next-line @typescript-eslint/no-shadow
  const player = useExpoVideoPlayer(source, player => {
    try {
      PlatformInfo.setAudioCategory(AudioCategory.Ambient)
      PlatformInfo.setAudioActive(false)

      player.loop = true
      player.muted = true
      player.play()
    } catch (err) {
      logger.error('Failed to init video player', {safeMessage: err})
    }
  })

  return (
    <VideoPlayerContext.Provider value={player}>
      {children}
    </VideoPlayerContext.Provider>
  )
}

export function useVideoPlayer() {
  const context = useContext(VideoPlayerContext)
  if (!context) {
    throw new Error('useVideoPlayer must be used within a VideoPlayerProvider')
  }
  return context
}