2018-10-22 18:49:18 +00:00
|
|
|
// @flow
|
2019-03-19 15:42:25 +00:00
|
|
|
|
2018-10-22 18:49:18 +00:00
|
|
|
import React from 'react';
|
2019-03-19 15:42:25 +00:00
|
|
|
import type { Dispatch } from 'redux';
|
2018-10-22 18:49:18 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2019-03-19 15:42:25 +00:00
|
|
|
dispatch: Dispatch<any>,
|
2018-10-22 18:49:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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));
|
|
|
|
}
|
|
|
|
}
|