movie-web/src/components/player
2024-04-01 00:43:00 +03:00
..
atoms feat: add autoplay configurability with VITE_ALLOW_AUTOPLAY and custom proxy 2024-04-01 00:43:00 +03:00
base Go back to using percentages instead of pixels 2024-03-10 23:10:25 +01:00
display Also route hls audio tracks through extension 2024-03-31 20:20:10 +02:00
hooks Move filterDuplicateCaptionCues to a different file 2024-03-14 20:34:32 +01:00
internals fix: add check for setPositionState to avoid TypeError 2024-03-15 17:30:37 +02:00
utils Move filterDuplicateCaptionCues to a different file 2024-03-14 20:34:32 +01:00
index.tsx move video to old and setup new video structure 2023-07-23 15:00:08 +02:00
Player.tsx caption rendering is back! 2023-10-18 14:30:52 +02:00
README.md Fix typo in player/README.md 2023-12-28 01:09:03 +09:00

Video player component

Video player is quite a complex component, so here is a rundown of all the parts

Composable parts

These parts can be used to build any shape of a video player.

  • /atoms- any ui element that controls the player. (Seekbar, Pause button, quality selection, etc)
  • /base - base components that are used to build a player. Like the main container

internal parts

These parts are internally used, they aren't exported. Do not use them outside of player internals.

/display

The display interface, abstraction on how to actually play the content (e.g Video element, chrome casting, etc)

  • It must be completely separate from any react code
  • It must not interact with state, pass async data back with events

/internals

Internal components that are always rendered on every player.

  • Only components that are always present on the player instance, they must never unmount

/utils

miscellaneous logic, put anything that is unique to the video player internals.

/hooks

Hooks only used for video player.

  • only exception is usePlayer, as its used outside of the player to control the player

~/src/stores/player

State for the video player.

  • Only parts related to the video player may utilize the state