mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 10:57:49 +00:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { translate } from '../../../base/i18n/functions';
|
|
import { IconUserDeleted } from '../../../base/icons/svg';
|
|
import ContextMenuItem from '../../../base/ui/components/web/ContextMenuItem';
|
|
import AbstractKickButton, { IProps } from '../AbstractKickButton';
|
|
|
|
/**
|
|
* Implements a React {@link Component} which displays a button for kicking out
|
|
* a participant from the conference.
|
|
*
|
|
* NOTE: At the time of writing this is a button that doesn't use the
|
|
* {@code AbstractButton} base component, but is inherited from the same
|
|
* super class ({@code AbstractKickButton} that extends {@code AbstractButton})
|
|
* for the sake of code sharing between web and mobile. Once web uses the
|
|
* {@code AbstractButton} base component, this can be fully removed.
|
|
*/
|
|
class KickButton extends AbstractKickButton {
|
|
/**
|
|
* Instantiates a new {@code Component}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
constructor(props: IProps) {
|
|
super(props);
|
|
|
|
this._handleClick = this._handleClick.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
const { participantID, t } = this.props;
|
|
|
|
return (
|
|
<ContextMenuItem
|
|
accessibilityLabel = { t('videothumbnail.kick') }
|
|
className = 'kicklink'
|
|
icon = { IconUserDeleted }
|
|
id = { `ejectlink_${participantID}` }
|
|
// eslint-disable-next-line react/jsx-handler-names
|
|
onClick = { this._handleClick }
|
|
text = { t('videothumbnail.kick') } />
|
|
);
|
|
}
|
|
|
|
_handleClick: () => void;
|
|
}
|
|
export default translate(connect()(KickButton));
|