2022-07-20 06:19:59 +00:00
|
|
|
/* eslint-disable lines-around-comment */
|
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import { useDispatch } from 'react-redux';
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
import { createToolbarEvent, sendAnalytics } from '../../../analytics';
|
|
|
|
import { IconInviteMore } from '../../../base/icons/svg/index';
|
2022-07-27 08:40:34 +00:00
|
|
|
import Button from '../../../base/ui/components/web/Button';
|
|
|
|
import { BUTTON_TYPES } from '../../../base/ui/constants';
|
2022-07-20 06:19:59 +00:00
|
|
|
// @ts-ignore
|
|
|
|
import { beginAddPeople } from '../../../invite';
|
|
|
|
|
|
|
|
export const InviteButton = () => {
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
const onInvite = useCallback(() => {
|
|
|
|
sendAnalytics(createToolbarEvent('invite'));
|
|
|
|
dispatch(beginAddPeople());
|
|
|
|
}, [ dispatch ]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Button
|
|
|
|
accessibilityLabel = { t('participantsPane.actions.invite') }
|
|
|
|
fullWidth = { true }
|
|
|
|
icon = { IconInviteMore }
|
2022-08-22 09:40:59 +00:00
|
|
|
labelKey = { 'participantsPane.actions.invite' }
|
2022-07-20 06:19:59 +00:00
|
|
|
onClick = { onInvite }
|
|
|
|
type = { BUTTON_TYPES.PRIMARY } />
|
|
|
|
);
|
|
|
|
};
|