12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import React, { Component } from 'react';
-
- import AudioMuteButton from './AudioMuteButton';
- import HangupButton from './HangupButton';
- import VideoMuteButton from './VideoMuteButton';
-
- /**
- * The type of the React {@code Component} props of {@link Toolbar}.
- */
- interface IProps {
-
- /**
- * Additional CSS class names to add to the root of the toolbar.
- */
- className: string;
-
- /**
- * Callback invoked when no longer moused over the toolbar.
- */
- onMouseOut: (e?: React.MouseEvent) => void;
-
- /**
- * Callback invoked when the mouse has moved over the toolbar.
- */
- onMouseOver: (e?: React.MouseEvent) => void;
- }
-
- /**
- * Represents the toolbar in the Always On Top window.
- *
- * @augments Component
- */
- export default class Toolbar extends Component<IProps> {
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const {
- className = '',
- onMouseOut,
- onMouseOver
- } = this.props;
-
- return (
- <div
- className = { `toolbox-content-items always-on-top-toolbox ${className}` }
- onMouseOut = { onMouseOut }
- onMouseOver = { onMouseOver }>
- <AudioMuteButton />
- <VideoMuteButton />
- <HangupButton customClass = 'hangup-button' />
- </div>
- );
- }
- }
|