jitsi-meet/react/features/base/toolbox/components/AbstractHangupButton.ts
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

33 lines
723 B
TypeScript

import { IconHangup } from '../../icons/svg';
import AbstractButton, { IProps } from './AbstractButton';
/**
* An abstract implementation of a button for disconnecting a conference.
*/
export default class AbstractHangupButton<P extends IProps, S=any>
extends AbstractButton<P, S> {
override icon = IconHangup;
/**
* Handles clicking / pressing the button, and disconnects the conference.
*
* @protected
* @returns {void}
*/
override _handleClick() {
this._doHangup();
}
/**
* Helper function to perform the actual hangup action.
*
* @protected
* @returns {void}
*/
_doHangup() {
// To be implemented by subclass.
}
}