bitmovin-player-ui
Version:
Bitmovin Player UI Framework
41 lines (35 loc) • 1.14 kB
text/typescript
import { Container, ContainerConfig } from '../Container';
import { HugePlaybackToggleButton } from '../buttons/HugePlaybackToggleButton';
/**
* @category Configs
*/
export interface PlaybackToggleOverlayConfig extends ContainerConfig {
/**
* Specify whether the player should be set to enter fullscreen by clicking on the playback toggle button
* when initiating the initial playback.
* Default is false.
*/
enterFullscreenOnInitialPlayback?: boolean;
}
/**
* Overlays the player and displays error messages.
*
* @category Components
*/
export class PlaybackToggleOverlay extends Container<PlaybackToggleOverlayConfig> {
private playbackToggleButton: HugePlaybackToggleButton;
constructor(config: PlaybackToggleOverlayConfig = {}) {
super(config);
this.playbackToggleButton = new HugePlaybackToggleButton({
enterFullscreenOnInitialPlayback: Boolean(config.enterFullscreenOnInitialPlayback),
});
this.config = this.mergeConfig(
config,
{
cssClass: 'ui-playbacktoggle-overlay',
components: [this.playbackToggleButton],
},
this.config,
);
}
}