| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 | // @flow
import Tooltip from '@atlaskit/tooltip';
import React, { Component } from 'react';
import type { Dispatch } from 'redux';
import {
    createCalendarClickedEvent,
    sendAnalytics
} from '../../analytics';
import { translate } from '../../base/i18n';
import { connect } from '../../base/redux';
import { updateCalendarEvent } from '../actions';
/**
 * The type of the React {@code Component} props of {@link AddMeetingUrlButton}.
 */
type Props = {
    /**
     * The calendar ID associated with the calendar event.
     */
    calendarId: string,
    /**
     * Invoked to add a meeting URL to a calendar event.
     */
    dispatch: Dispatch<any>,
    /**
     * The ID of the calendar event that will have a meeting URL added on click.
     */
    eventId: string,
    /**
     * Invoked to obtain translated strings.
     */
    t: Function
};
/**
 * A React Component for adding a meeting URL to an existing calendar event.
 *
 * @extends Component
 */
class AddMeetingUrlButton extends Component<Props> {
    /**
     * Initializes a new {@code AddMeetingUrlButton} instance.
     *
     * @inheritdoc
     */
    constructor(props: Props) {
        super(props);
        // Bind event handler so it is only bound once for every instance.
        this._onClick = this._onClick.bind(this);
    }
    /**
     * Implements React's {@link Component#render}.
     *
     * @inheritdoc
     */
    render() {
        return (
            <Tooltip content = { this.props.t('calendarSync.addMeetingURL') }>
                <div
                    className = 'button add-button'
                    onClick = { this._onClick }>
                    <i className = { 'icon-add' } />
                </div>
            </Tooltip>
        );
    }
    _onClick: () => void;
    /**
     * Dispatches an action to adding a meeting URL to a calendar event.
     *
     * @returns {void}
     */
    _onClick() {
        const { calendarId, dispatch, eventId } = this.props;
        sendAnalytics(createCalendarClickedEvent('calendar.add.url'));
        dispatch(updateCalendarEvent(eventId, calendarId));
    }
}
export default translate(connect()(AddMeetingUrlButton));
 |