jiti-meet/react/features/recent-list/components/RecentList.native.js

128 lines
2.9 KiB
JavaScript
Raw Normal View History

2018-08-01 16:41:54 +00:00
// @flow
2018-09-25 12:48:03 +00:00
import React from 'react';
2018-08-01 16:41:54 +00:00
import { connect } from 'react-redux';
import { getDefaultURL } from '../../app';
2018-08-01 16:41:54 +00:00
import { translate } from '../../base/i18n';
import { NavigateSectionList } from '../../base/react';
import type { Section } from '../../base/react';
2018-08-01 16:41:54 +00:00
2018-09-25 12:48:03 +00:00
import { deleteRecentListEntry } from '../actions';
import { isRecentListEnabled, toDisplayableList } from '../functions';
import AbstractRecentList from './AbstractRecentList';
2018-08-01 16:41:54 +00:00
/**
* 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.
2018-08-01 16:41:54 +00:00
*
*/
class RecentList extends AbstractRecentList<Props> {
_getRenderListEmptyComponent: () => React$Node;
_onPress: string => {};
2018-08-01 16:41:54 +00:00
/**
* Initializes a new {@code RecentList} instance.
*
* @inheritdoc
*/
constructor(props: Props) {
super(props);
2018-09-25 12:48:03 +00:00
this._onDelete = this._onDelete.bind(this);
}
2018-08-01 16:41:54 +00:00
/**
* Implements the React Components's render method.
*
* @inheritdoc
*/
render() {
if (!isRecentListEnabled()) {
return null;
}
const {
disabled,
t,
_defaultServerURL,
_recentList
} = this.props;
2018-08-01 16:41:54 +00:00
const recentList = toDisplayableList(_recentList, t, _defaultServerURL);
2018-09-25 12:48:03 +00:00
const slideActions = [ {
backgroundColor: 'red',
onPress: this._onDelete,
text: t('welcomepage.recentListDelete')
} ];
2018-08-01 16:41:54 +00:00
return (
<NavigateSectionList
disabled = { disabled }
onPress = { this._onPress }
renderListEmptyComponent
= { this._getRenderListEmptyComponent() }
2018-09-25 12:48:03 +00:00
sections = { recentList }
slideActions = { slideActions } />
2018-08-01 16:41:54 +00:00
);
}
2018-09-25 12:48:03 +00:00
_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));
}
2018-08-01 16:41:54 +00:00
}
/**
* 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));