| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 | // @flow
import React from 'react';
import type { Dispatch } from 'redux';
import {
    createRecentClickedEvent,
    createRecentSelectedEvent,
    sendAnalytics
} from '../../analytics';
import { appNavigate } from '../../app';
import {
    AbstractPage,
    Container,
    Text
} from '../../base/react';
import styles from './styles';
/**
 * The type of the React {@code Component} props of {@link AbstractRecentList}
 */
type Props = {
    /**
     * The redux store's {@code dispatch} function.
     */
    dispatch: Dispatch<any>,
    /**
     * The translate function.
     */
    t: Function
};
/**
 * An abstract component for the recent list.
 *
 */
export default class AbstractRecentList<P: Props> extends AbstractPage<P> {
    /**
     * Initializes a new {@code RecentList} instance.
     *
     * @inheritdoc
     */
    constructor(props: P) {
        super(props);
        this._onPress = this._onPress.bind(this);
    }
    /**
     * Implements React's {@link Component#componentDidMount()}. Invoked
     * immediately after this component is mounted.
     *
     * @inheritdoc
     * @returns {void}
     */
    componentDidMount() {
        sendAnalytics(createRecentSelectedEvent());
    }
    _getRenderListEmptyComponent: () => React$Node;
    /**
     * Returns a list empty component if a custom one has to be rendered instead
     * of the default one in the {@link NavigateSectionList}.
     *
     * @private
     * @returns {React$Component}
     */
    _getRenderListEmptyComponent() {
        const { t } = this.props;
        return (
            <Container
                className = 'meetings-list-empty'
                style = { styles.emptyListContainer }>
                <Text
                    className = 'description'
                    style = { styles.emptyListText }>
                    { t('welcomepage.recentListEmpty') }
                </Text>
            </Container>
        );
    }
    _onPress: string => {};
    /**
     * Handles the list's navigate action.
     *
     * @private
     * @param {string} url - The url string to navigate to.
     * @returns {void}
     */
    _onPress(url) {
        const { dispatch } = this.props;
        sendAnalytics(createRecentClickedEvent('recent.meeting.tile'));
        dispatch(appNavigate(url));
    }
}
 |