2019-04-02 13:16:52 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import type { Dispatch } from 'redux';
|
|
|
|
|
|
|
|
import { translate } from '../../../../base/i18n';
|
2019-08-30 16:39:06 +00:00
|
|
|
import { IconAddPeople } from '../../../../base/icons';
|
2019-04-02 13:16:52 +00:00
|
|
|
import { connect } from '../../../../base/redux';
|
|
|
|
import { AbstractButton } from '../../../../base/toolbox';
|
|
|
|
import type { AbstractButtonProps } from '../../../../base/toolbox';
|
|
|
|
|
2020-03-24 12:37:24 +00:00
|
|
|
import { doInvitePeople } from '../../../actions.native';
|
2019-04-02 13:16:52 +00:00
|
|
|
|
|
|
|
type Props = AbstractButtonProps & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Redux dispatch function.
|
|
|
|
*/
|
|
|
|
dispatch: Dispatch<any>
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements an {@link AbstractButton} to enter add/invite people to the
|
|
|
|
* current call/conference/meeting.
|
|
|
|
*/
|
|
|
|
class InviteButton extends AbstractButton<Props, *> {
|
|
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.shareRoom';
|
2019-08-30 16:39:06 +00:00
|
|
|
icon = IconAddPeople;
|
2019-04-02 13:16:52 +00:00
|
|
|
label = 'toolbar.shareRoom';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles clicking / pressing the button, and opens the appropriate dialog.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_handleClick() {
|
2020-03-24 12:37:24 +00:00
|
|
|
this.props.dispatch(doInvitePeople());
|
2019-04-02 13:16:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-24 12:37:24 +00:00
|
|
|
export default translate(connect()(InviteButton));
|