123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // @flow
-
- import React from 'react';
- import { connect } from 'react-redux';
-
- import CopyButton from '../../base/buttons/CopyButton';
- import { getInviteURL } from '../../base/connection';
- import { Dialog } from '../../base/dialog';
- import { translate } from '../../base/i18n';
-
- type Props = {
-
- /**
- * Invoked to obtain translated strings.
- */
- t: Function,
-
- /**
- * The URL of the conference.
- */
- url: string
- };
-
- /**
- * Allow users to embed a jitsi meeting in an iframe.
- *
- * @returns {React$Element<any>}
- */
- function EmbedMeeting({ t, url }: Props) {
- /**
- * Get the embed code for a jitsi meeting.
- *
- * @returns {string} The iframe embed code.
- */
- const getEmbedCode = () =>
- `<iframe allow="camera; microphone; fullscreen; display-capture; autoplay" src="${url}"`
- + ' style="height: 100%; width: 100%; border: 0px;"></iframe>';
-
- return (
- <Dialog
- hideCancelButton = { true }
- submitDisabled = { true }
- titleKey = { 'embedMeeting.title' }
- width = 'small'>
- <div className = 'embed-meeting-dialog'>
- <textarea
- aria-label = { t('dialog.embedMeeting') }
- className = 'embed-meeting-code'
- readOnly = { true }
- value = { getEmbedCode() } />
- <CopyButton
- aria-label = { t('addPeople.copyLink') }
- className = 'embed-meeting-copy'
- displayedText = { t('dialog.copy') }
- textOnCopySuccess = { t('dialog.copied') }
- textOnHover = { t('dialog.copy') }
- textToCopy = { getEmbedCode() } />
- </div>
- </Dialog>
- );
- }
-
- const mapStateToProps = state => {
- return {
- url: getInviteURL(state)
- };
- };
-
- export default translate(connect(mapStateToProps)(EmbedMeeting));
|