| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | // @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 { Icon, IconAdd } from '../../base/icons';
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 }>
                    <Icon src = { IconAdd } />
                </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));
 |