61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
|
import { debounce } from 'lodash';
|
||
|
import React from 'react';
|
||
|
import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
|
||
|
import { useDispatch } from 'react-redux';
|
||
|
|
||
|
import { fetchFollowRequests, expandFollowRequests } from 'soapbox/actions/accounts';
|
||
|
import ScrollableList from 'soapbox/components/scrollable_list';
|
||
|
import { Spinner } from 'soapbox/components/ui';
|
||
|
import { useAppSelector } from 'soapbox/hooks';
|
||
|
|
||
|
import Column from '../ui/components/column';
|
||
|
|
||
|
import AccountAuthorize from './components/account_authorize';
|
||
|
|
||
|
const messages = defineMessages({
|
||
|
heading: { id: 'column.follow_requests', defaultMessage: 'Follow requests' },
|
||
|
});
|
||
|
|
||
|
const handleLoadMore = debounce((dispatch) => {
|
||
|
dispatch(expandFollowRequests());
|
||
|
}, 300, { leading: true });
|
||
|
|
||
|
const FollowRequests: React.FC = () => {
|
||
|
const dispatch = useDispatch();
|
||
|
const intl = useIntl();
|
||
|
|
||
|
const accountIds = useAppSelector<string[]>((state) => state.user_lists.getIn(['follow_requests', 'items']));
|
||
|
const hasMore = useAppSelector((state) => !!state.user_lists.getIn(['follow_requests', 'next']));
|
||
|
|
||
|
React.useEffect(() => {
|
||
|
dispatch(fetchFollowRequests());
|
||
|
}, []);
|
||
|
|
||
|
if (!accountIds) {
|
||
|
return (
|
||
|
<Column>
|
||
|
<Spinner />
|
||
|
</Column>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const emptyMessage = <FormattedMessage id='empty_column.follow_requests' defaultMessage="You don't have any follow requests yet. When you receive one, it will show up here." />;
|
||
|
|
||
|
return (
|
||
|
<Column icon='user-plus' label={intl.formatMessage(messages.heading)}>
|
||
|
<ScrollableList
|
||
|
scrollKey='follow_requests'
|
||
|
onLoadMore={() => handleLoadMore(dispatch)}
|
||
|
hasMore={hasMore}
|
||
|
emptyMessage={emptyMessage}
|
||
|
>
|
||
|
{accountIds.map(id =>
|
||
|
<AccountAuthorize key={id} id={id} />,
|
||
|
)}
|
||
|
</ScrollableList>
|
||
|
</Column>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default FollowRequests;
|