123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- // @flow
- import React from 'react';
- import { connect } from 'react-redux';
-
- import { getDefaultURL } from '../../app';
- import { translate } from '../../base/i18n';
- import { NavigateSectionList } from '../../base/react';
- import type { Section } from '../../base/react';
-
- import { deleteRecentListEntry } from '../actions';
- import { isRecentListEnabled, toDisplayableList } from '../functions';
- import AbstractRecentList from './AbstractRecentList';
-
- /**
- * The type of the React {@code Component} props of {@link RecentList}
- */
- type Props = {
-
- /**
- * Renders the list disabled.
- */
- disabled: boolean,
-
- /**
- * The redux store's {@code dispatch} function.
- */
- dispatch: Dispatch<*>,
-
- /**
- * The translate function.
- */
- t: Function,
-
- /**
- * The default server URL.
- */
- _defaultServerURL: string,
-
- /**
- * The recent list from the Redux store.
- */
- _recentList: Array<Section>
- };
-
- /**
- * A class that renders the list of the recently joined rooms.
- *
- */
- class RecentList extends AbstractRecentList<Props> {
- _getRenderListEmptyComponent: () => React$Node;
- _onPress: string => {};
-
- /**
- * Initializes a new {@code RecentList} instance.
- *
- * @inheritdoc
- */
- constructor(props: Props) {
- super(props);
-
- this._onDelete = this._onDelete.bind(this);
- }
-
- /**
- * Implements the React Components's render method.
- *
- * @inheritdoc
- */
- render() {
- if (!isRecentListEnabled()) {
- return null;
- }
- const {
- disabled,
- t,
- _defaultServerURL,
- _recentList
- } = this.props;
- const recentList = toDisplayableList(_recentList, t, _defaultServerURL);
- const slideActions = [ {
- backgroundColor: 'red',
- onPress: this._onDelete,
- text: t('welcomepage.recentListDelete')
- } ];
-
- return (
- <NavigateSectionList
- disabled = { disabled }
- onPress = { this._onPress }
- renderListEmptyComponent
- = { this._getRenderListEmptyComponent() }
- sections = { recentList }
- slideActions = { slideActions } />
- );
- }
-
- _onDelete: Object => void
-
- /**
- * Callback for the delete action of the list.
- *
- * @param {Object} itemId - The ID of the entry thats deletion is
- * requested.
- * @returns {void}
- */
- _onDelete(itemId) {
- this.props.dispatch(deleteRecentListEntry(itemId));
- }
- }
-
- /**
- * Maps redux state to component props.
- *
- * @param {Object} state - The redux state.
- * @returns {{
- * _defaultServerURL: string,
- * _recentList: Array
- * }}
- */
- export function _mapStateToProps(state: Object) {
- return {
- _defaultServerURL: getDefaultURL(state),
- _recentList: state['features/recent-list']
- };
- }
-
- export default translate(connect(_mapStateToProps)(RecentList));
|