react-player-controls
This is a minimal set of modular, tested and hopefully useful React components for composing media player interfaces. It is designed for you to compose media player controls yourself using a small and easy-to-learn API.
From a library point of view, creating and providing components like
Installation
Usage
API
<Button />
<Button />
is basically a simple HTML button
.
Prop name | Default value | Description |
---|---|---|
onClick |
- | Required. A callback function that is invoked when the button is clicked. |
isEnabled |
true |
Whether the button is enabled. Setting this to false will set the disabled attribute on the button element to true . |
className |
null |
A string to set as the HTML class attribute |
style |
{} |
Styles to set on the button element. |
children |
null |
Child elements. |
Direction
An enum describing a slider's active axis.
Key | Value |
---|---|
HORIZONTAL |
"HORIZONTAL" |
VERTICAL |
"VERTICAL" |
<FormattedTime />
<FormattedTime />
translates a number of seconds into the player-friendly format of m:ss
, or h:mm:ss
if the total time is one hour or higher.
Prop name | Default value | Description |
---|---|---|
numSeconds |
0 |
A number of seconds, positive or negative |
className |
null |
A string to set as the HTML class attribute |
style |
{} |
Styles to set on the wrapping span element. |
<PlayerIcon />
<PlayerIcon />
is not really a component in itself, but a container of a number of icon components.
Any props passed to a <PlayerIcon.* />
component will be passed onto the underlying svg
element.
<Slider />
The <Slider />
helps you build things like volume controls and progress bars. Slightly counterintuitively, it does not take a value
prop, but expects you to keep track of this yourself and render whatever you want inside it.
What this component actually does is that it renders an element inside itself, on top of its children, which listens to mouse events and invokes change and intent callbacks with relative, normalised values based on those events.
Prop name | Default value | Description |
---|---|---|
direction |
Direction.HORIZONTAL |
The slider's direction |
isEnabled |
true |
Whether the slider is interactable |
onIntent |
() => {} |
A function that is invoked with the relative, normalised value at which the user is hovering. |
onChange |
() => {} |
A function that is invoked with the latest relative, normalised value that the user has set by either clicking or dragging. |
onChangeStart |
() => {} |
A function that is invoked with the relative, normalised value at which the user started changing the slider's value. |
onChangeEnd |
() => {} |
A function that is invoked with the relative, normalised value at which the user stopped changing the slider's value. When the component unmounts, this function will be invoked with a value of null . |
children |
null |
Child elements. |
className |
null |
A string to set as the HTML class attribute. |
style |
{} |
Styles to set on the wrapping div element. |
overlayZIndex |
10 | The z-index of the invisible overlay that captures mouse events |