227 lines
5.3 KiB
JavaScript
227 lines
5.3 KiB
JavaScript
// @flow
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { getCurrentConferenceUrl } from '../../../connection';
|
|
import { translate } from '../../../i18n';
|
|
import { Icon, IconCopy, IconCheck } from '../../../icons';
|
|
import { connect } from '../../../redux';
|
|
import { copyText, getDecodedURI } from '../../../util';
|
|
|
|
type Props = {
|
|
|
|
/**
|
|
* The meeting url.
|
|
*/
|
|
url: string,
|
|
|
|
/**
|
|
* Used for translation.
|
|
*/
|
|
t: Function,
|
|
|
|
/**
|
|
* Used to determine if invitation link should be automatically copied
|
|
* after creating a meeting.
|
|
*/
|
|
_enableAutomaticUrlCopy: boolean,
|
|
};
|
|
|
|
type State = {
|
|
|
|
/**
|
|
* If true it shows the 'copy link' message.
|
|
*/
|
|
showCopyLink: boolean,
|
|
|
|
/**
|
|
* If true it shows the 'link copied' message.
|
|
*/
|
|
showLinkCopied: boolean,
|
|
};
|
|
|
|
const COPY_TIMEOUT = 2000;
|
|
|
|
/**
|
|
* Component used to copy meeting url on prejoin page.
|
|
*/
|
|
class CopyMeetingUrl extends Component<Props, State> {
|
|
|
|
/**
|
|
* Initializes a new {@code Prejoin} instance.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
showCopyLink: false,
|
|
showLinkCopied: false
|
|
};
|
|
this._copyUrl = this._copyUrl.bind(this);
|
|
this._hideCopyLink = this._hideCopyLink.bind(this);
|
|
this._hideLinkCopied = this._hideLinkCopied.bind(this);
|
|
this._showCopyLink = this._showCopyLink.bind(this);
|
|
this._showLinkCopied = this._showLinkCopied.bind(this);
|
|
this._copyUrlAutomatically = this._copyUrlAutomatically.bind(this);
|
|
}
|
|
|
|
_copyUrl: () => void;
|
|
|
|
/**
|
|
* Callback invoked to copy the url to clipboard.
|
|
*
|
|
* @returns {void}
|
|
*/
|
|
_copyUrl() {
|
|
const success = copyText(this.props.url);
|
|
|
|
if (success) {
|
|
this._showLinkCopied();
|
|
window.setTimeout(this._hideLinkCopied, COPY_TIMEOUT);
|
|
}
|
|
}
|
|
|
|
_hideLinkCopied: () => void;
|
|
|
|
/**
|
|
* Hides the 'Link copied' message.
|
|
*
|
|
* @private
|
|
* @returns {void}
|
|
*/
|
|
_hideLinkCopied() {
|
|
this.setState({
|
|
showLinkCopied: false
|
|
});
|
|
}
|
|
|
|
_hideCopyLink: () => void;
|
|
|
|
/**
|
|
* Hides the 'Copy link' text.
|
|
*
|
|
* @private
|
|
* @returns {void}
|
|
*/
|
|
_hideCopyLink() {
|
|
this.setState({
|
|
showCopyLink: false,
|
|
showLinkCopied: false
|
|
});
|
|
}
|
|
|
|
_showCopyLink: () => void;
|
|
|
|
/**
|
|
* Shows the dark 'Copy link' text on hover.
|
|
*
|
|
* @private
|
|
* @returns {void}
|
|
*/
|
|
_showCopyLink() {
|
|
this.setState({
|
|
showCopyLink: true,
|
|
showLinkCopied: false
|
|
});
|
|
}
|
|
|
|
_showLinkCopied: () => void;
|
|
|
|
/**
|
|
* Shows the green 'Link copied' message.
|
|
*
|
|
* @private
|
|
* @returns {void}
|
|
*/
|
|
_showLinkCopied() {
|
|
this.setState({
|
|
showLinkCopied: true,
|
|
showCopyLink: false
|
|
});
|
|
}
|
|
|
|
_copyUrlAutomatically: () => void;
|
|
|
|
/**
|
|
* Attempts to automatically copy invitation URL.
|
|
* Document has to be focused in order for this to work.
|
|
*
|
|
* @private
|
|
* @returns {void}
|
|
*/
|
|
_copyUrlAutomatically() {
|
|
navigator.clipboard.writeText(this.props.url)
|
|
.then(() => {
|
|
this._showLinkCopied();
|
|
window.setTimeout(this._hideLinkCopied, COPY_TIMEOUT);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Implements React's {@link Component#componentDidMount()}. Invoked
|
|
* immediately before mounting occurs.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
componentDidMount() {
|
|
const { _enableAutomaticUrlCopy } = this.props;
|
|
|
|
if (_enableAutomaticUrlCopy) {
|
|
setTimeout(this._copyUrlAutomatically, 2000);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
const { showCopyLink, showLinkCopied } = this.state;
|
|
const { url, t } = this.props;
|
|
const { _copyUrl, _showCopyLink, _hideCopyLink } = this;
|
|
const src = showLinkCopied ? IconCheck : IconCopy;
|
|
|
|
return (
|
|
<div
|
|
className = 'copy-meeting'
|
|
onMouseEnter = { _showCopyLink }
|
|
onMouseLeave = { _hideCopyLink }>
|
|
<div
|
|
className = { `url ${showLinkCopied ? 'done' : ''}` }
|
|
onClick = { _copyUrl } >
|
|
<div className = 'copy-meeting-text'>
|
|
{ !showCopyLink && !showLinkCopied && getDecodedURI(url) }
|
|
{ showCopyLink && t('prejoin.copyAndShare') }
|
|
{ showLinkCopied && t('prejoin.linkCopied') }
|
|
</div>
|
|
<Icon
|
|
onClick = { _copyUrl }
|
|
size = { 24 }
|
|
src = { src } />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Maps (parts of) the redux state to the React {@code Component} props.
|
|
*
|
|
* @param {Object} state - The redux state.
|
|
* @returns {Object}
|
|
*/
|
|
function mapStateToProps(state) {
|
|
const { enableAutomaticUrlCopy } = state['features/base/config'];
|
|
|
|
return {
|
|
url: getCurrentConferenceUrl(state),
|
|
_enableAutomaticUrlCopy: enableAutomaticUrlCopy || false
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(translate(CopyMeetingUrl));
|