| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 | import Button from '@atlaskit/button';
import { FieldTextStateless as TextField } from '@atlaskit/field-text';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { translate } from '../../base/i18n';
const logger = require('jitsi-meet-logger').getLogger(__filename);
/**
 * A React {@code Component} for displaying a value with a copy button to copy
 * the value into the clipboard.
 */
class ShareLinkForm extends Component {
    /**
     * {@code ShareLinkForm}'s property types.
     *
     * @static
     */
    static propTypes = {
        /**
         * Invoked to obtain translated strings.
         */
        t: PropTypes.func,
        /**
         * The value to be displayed and copied into the clipboard.
         */
        toCopy: PropTypes.string
    };
    /**
     * Initializes a new {@code ShareLinkForm} instance.
     *
     * @param {Object} props - The read-only properties with which the new
     * instance is to be initialized.
     */
    constructor(props) {
        super(props);
        /**
         * The internal reference to the React {@code component} for display
         * the meeting link in an input element.
         *
         * @private
         * @type {ReactComponent}
         */
        this._inputComponent = null;
        // Bind event handlers so they are only bound once for every instance.
        this._onClick = this._onClick.bind(this);
        this._onDropdownTriggerInputChange
            = this._onDropdownTriggerInputChange.bind(this);
        this._setInput = this._setInput.bind(this);
    }
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement}
     */
    render() {
        const { t } = this.props;
        const inputValue = this.props.toCopy || t('inviteUrlDefaultMsg');
        return (
            <div className = 'form-control'>
                <label className = 'form-control__label'>
                    { t('dialog.shareLink') }
                </label>
                <div className = 'form-control__container'>
                    <div className = 'form-control__input-container'>
                        <TextField
                            id = 'inviteLinkRef'
                            isLabelHidden = { true }
                            isReadOnly = { true }
                            label = 'invite link'
                            onChange = { this._onDropdownTriggerInputChange }
                            ref = { this._setInput }
                            shouldFitContainer = { true }
                            type = 'text'
                            value = { inputValue } />
                    </div>
                    <Button
                        appearance = 'default'
                        onClick = { this._onClick }
                        type = 'button'>
                        { t('dialog.copy') }
                    </Button>
                </div>
            </div>
        );
    }
    /**
     * Copies the passed in value to the clipboard.
     *
     * @private
     * @returns {void}
     */
    _onClick() {
        try {
            const { input } = this._inputComponent;
            input.select();
            document.execCommand('copy');
            input.blur();
        } catch (err) {
            logger.error('error when copying the text', err);
        }
    }
    /**
     * This is a no-op function used to stub out TextField's onChange in order
     * to prevent TextField from printing prop type validation errors. TextField
     * is used as a trigger for the dropdown in {@code ShareLinkForm} to get the
     * desired AtlasKit input look for the UI.
     *
     * @returns {void}
     */
    _onDropdownTriggerInputChange() {
        // Intentionally left empty.
    }
    /**
     * Sets the internal reference to the React Component wrapping the input
     * with id {@code inviteLinkRef}.
     *
     * @param {ReactComponent} inputComponent - React Component for displaying
     * an input for displaying the meeting link.
     * @private
     * @returns {void}
     */
    _setInput(inputComponent) {
        this._inputComponent = inputComponent;
    }
}
export default translate(ShareLinkForm);
 |