mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 23:27:47 +00:00
Only display Picture-in-Picture button when feature is available Moved conference timer before title Created new always-on container for labels Moved recording labels to always-on Updated expanded label to support new always-on labels Added raised hands counter label Added speaker - earpiece toggle button Lifted state up
27 lines
679 B
JavaScript
27 lines
679 B
JavaScript
// @flow
|
|
|
|
import { translate } from '../../../base/i18n';
|
|
import { ExpandedLabel, type Props as AbstractProps } from '../../../base/label';
|
|
|
|
type Props = AbstractProps & {
|
|
t: Function
|
|
}
|
|
|
|
/**
|
|
* A react {@code Component} that implements an expanded label as tooltip-like
|
|
* component to explain the meaning of the {@code RaisedHandsCountExpandedLabel}.
|
|
*/
|
|
class RaisedHandsCountExpandedLabel extends ExpandedLabel<Props> {
|
|
|
|
/**
|
|
* Returns the label specific text of this {@code ExpandedLabel}.
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
_getLabel() {
|
|
return this.props.t('raisedHandsLabel');
|
|
}
|
|
}
|
|
|
|
export default translate(RaisedHandsCountExpandedLabel);
|