Skip to content
FrameworkStyle

StatusIndicator

Display temporary visual feedback for keyboard and gesture actions

Import

import { StatusIndicator } from '@videojs/react';

Anatomy

<StatusIndicator.Root>
  <StatusIndicator.Value />
</StatusIndicator.Root>

Behavior

StatusIndicator displays feedback for actions emitted by a Hotkey or Gesture in the same player Container. It does not react to buttons, direct player-store changes, or media state changes on their own.

The input event arrives before its action is resolved. The indicator uses the media snapshot from that moment to predict the next visual status:

Action data-status Value
togglePaused "play" or "pause" Translated playing or paused label
toggleMuted "volume-off", "volume-low", or "volume-high" Predicted volume percentage
volumeStep "volume-off", "volume-low", or "volume-high" Predicted volume percentage
toggleSubtitles "captions-on" or "captions-off" Translated captions label
toggleFullscreen "fullscreen" or "exit-fullscreen" Translated fullscreen label
togglePictureInPicture "pip" or "exit-pip" Translated picture-in-picture label

toggleSubtitles is ignored when the player reports that no captions or subtitles are available. Seek actions, toggleControls, playback-rate actions, and custom actions do not open this indicator.

Use actions to allow only some of the supported actions. Omitting it allows all supported actions.

Pass a readonly array of action names:

<StatusIndicator.Root actions={["togglePaused", "toggleMuted"]}>
  <StatusIndicator.Value />
</StatusIndicator.Root>

The indicator closes after closeDelay, which defaults to 800 milliseconds. A repeated handled action updates the current value and restarts that close timer without replaying the entry transition. React stops rendering the Root after its close transition. The HTML custom element remains in the document with hidden until the next handled action.

Styling

Attribute Values Description
data-open Present / absent Present while the indicator is open
data-status "play", "pause", "volume-off", "volume-low", "volume-high", "captions-on", "captions-off", "fullscreen", "exit-fullscreen", "pip", or "exit-pip" Predicted status for the handled action
data-starting-style Present / absent Present during the open transition
data-ending-style Present / absent Present during the close transition

Use data-status to select an icon or other visual treatment, and use the transition attributes for entry and exit styles.

React renders standard DOM elements. Add a className to the Root:

.status-indicator[data-status="play"] {
  color: green;
}

.status-indicator[data-starting-style],
.status-indicator[data-ending-style] {
  opacity: 0;
}

Accessibility

StatusIndicator is visual feedback and does not create a live region. Keep every action available through keyboard-operable controls, and pair the player with StatusAnnouncer when state changes should be announced to screen readers. Do not make StatusIndicator.Value a live region.

Examples

Basic Usage

Focus the player, then press K to play or pause, M to mute, F for fullscreen, C for captions, or I for picture-in-picture.

Focus the player · K: play/pause · M: mute · F: fullscreen · C: captions · I: picture-in-picture

import { Container, createPlayer, Hotkey, StatusIndicator } from '@videojs/react';
import { Video, videoFeatures } from '@videojs/react/video';

import './BasicUsage.css';

const { Player } = createPlayer({ features: videoFeatures });

const statusActions = [
  'togglePaused',
  'toggleMuted',
  'toggleSubtitles',
  'toggleFullscreen',
  'togglePictureInPicture',
] as const;

export default function BasicUsage() {
  return (
    <Player>
      <Container className="react-status-indicator-basic" tabIndex={0}>
        <Video src="https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM/highest.mp4" autoPlay muted playsInline loop>
          <track kind="captions" src="/docs/demos/captions-button/captions.vtt" srcLang="en" label="English" />
        </Video>
        <p className="react-status-indicator-basic__instructions">
          Focus the player · K: play/pause · M: mute · F: fullscreen · C: captions · I: picture-in-picture
        </p>
        <StatusIndicator.Root
          className="react-status-indicator-basic__indicator"
          actions={statusActions}
          aria-hidden="true"
        >
          <StatusIndicator.Value className="react-status-indicator-basic__value" />
        </StatusIndicator.Root>
        <Hotkey keys="k" action="togglePaused" />
        <Hotkey keys="m" action="toggleMuted" />
        <Hotkey keys="f" action="toggleFullscreen" />
        <Hotkey keys="c" action="toggleSubtitles" />
        <Hotkey keys="i" action="togglePictureInPicture" />
      </Container>
    </Player>
  );
}

API Reference

Root

Props

PropTypeDefaultDetails
actionsreadonly InputAction[]
closeDelaynumber
labelsPartial<InputIndicatorLabels>

State

State is accessible via the render, className, and style props.

PropertyTypeDetails
transitionStartingboolean
transitionEndingboolean
openboolean
generationnumber
statusReturnType<typeof deriveStatus> exten...
labelstring | null
valuestring | null

Data attributes

AttributeTypeDetails
data-open
data-statusReturnType<typeof deriveStatus> exten...
data-starting-style
data-ending-style

Value

Props

PropTypeDefaultDetails
classNamestring | ((state: StatusIndicatorCore.State) => string | undefined)
renderReactElement | ((props: HTMLProps, state: StatusIndicatorCore.State) => ReactElement | null)
styleCSSProperties | ((state: StatusIndicatorCore.State) => CSSProperties | undefined)