51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { openDialog } from '../../base/dialog';
|
|
import { translate } from '../../base/i18n';
|
|
|
|
import EmbedMeetingDialog from './EmbedMeetingDialog';
|
|
|
|
type Props = {
|
|
|
|
/**
|
|
* Open the embed meeting dialog
|
|
*/
|
|
openEmbedDialog: Function,
|
|
|
|
/**
|
|
* Invoked to obtain translated strings.
|
|
*/
|
|
t: Function,
|
|
};
|
|
|
|
/**
|
|
* Component meant to trigger showing the EmbedMeetingDialog.
|
|
*
|
|
* @returns {React$Element<any>}
|
|
*/
|
|
function EmbedMeetingTrigger({ t, openEmbedDialog }: Props) {
|
|
/**
|
|
* Handles opeming the embed dialog.
|
|
*
|
|
* @returns {void}
|
|
*/
|
|
function onClick() {
|
|
openEmbedDialog(EmbedMeetingDialog);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className = 'embed-meeting-trigger'
|
|
onClick = { onClick }>
|
|
{t('embedMeeting.title')}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = { openEmbedDialog: openDialog };
|
|
|
|
export default translate(connect(null, mapDispatchToProps)(EmbedMeetingTrigger));
|