You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.2 KiB
106 lines
3.2 KiB
import { FC, useEffect, useState } from 'react'; |
|
import { Col, Pagination, Row, Skeleton } from 'antd'; |
|
import { ErrorBoundary } from 'react-error-boundary'; |
|
import { Follower } from '../../../../interfaces/follower'; |
|
import { SingleFollower } from '../SingleFollower/SingleFollower'; |
|
import styles from './FollowerCollection.module.scss'; |
|
import { FollowButton } from '../../../action-buttons/FollowButton'; |
|
import { ComponentError } from '../../ComponentError/ComponentError'; |
|
|
|
export type FollowerCollectionProps = { |
|
name: string; |
|
onFollowButtonClick: () => void; |
|
}; |
|
|
|
export const FollowerCollection: FC<FollowerCollectionProps> = ({ name, onFollowButtonClick }) => { |
|
const ENDPOINT = '/api/followers'; |
|
const ITEMS_PER_PAGE = 24; |
|
|
|
const [followers, setFollowers] = useState<Follower[]>([]); |
|
const [total, setTotal] = useState(0); |
|
const [page, setPage] = useState(1); |
|
const [loading, setLoading] = useState(true); |
|
|
|
const getFollowers = async () => { |
|
try { |
|
const response = await fetch(`${ENDPOINT}?page=${page}&limit=${ITEMS_PER_PAGE}`); |
|
|
|
const data = await response.json(); |
|
const { results, total: totalResults } = data; |
|
|
|
setFollowers(results); |
|
setTotal(totalResults); |
|
|
|
setLoading(false); |
|
} catch (error) { |
|
console.error(error); |
|
} |
|
}; |
|
|
|
useEffect(() => { |
|
getFollowers(); |
|
}, [page]); |
|
|
|
const noFollowers = ( |
|
<div className={styles.noFollowers} id="followers-collection"> |
|
<h2>Be the first follower!</h2> |
|
<p> |
|
{name !== 'Owncast' ? name : 'This server'} is a part of the{' '} |
|
<a href="https://owncast.online/join-fediverse">Fediverse</a>, an interconnected network of |
|
independent users and servers. |
|
</p> |
|
<p> |
|
By following {name !== 'Owncast' ? name : 'this server'} you'll be able to get updates |
|
from the stream, share it with others, and show your appreciation when it goes live, all |
|
from your own Fediverse account. |
|
</p> |
|
<FollowButton onClick={onFollowButtonClick} /> |
|
</div> |
|
); |
|
|
|
const loadingSkeleton = <Skeleton active paragraph={{ rows: 3 }} />; |
|
|
|
if (loading) { |
|
return loadingSkeleton; |
|
} |
|
|
|
if (!followers?.length) { |
|
return noFollowers; |
|
} |
|
|
|
return ( |
|
<ErrorBoundary |
|
// eslint-disable-next-line react/no-unstable-nested-components |
|
fallbackRender={({ error, resetErrorBoundary }) => ( |
|
<ComponentError |
|
componentName="FollowerCollection" |
|
message={error.message} |
|
retryFunction={resetErrorBoundary} |
|
/> |
|
)} |
|
> |
|
<div className={styles.followers} id="followers-collection"> |
|
<Row wrap gutter={[10, 10]} className={styles.followerRow}> |
|
{followers.map(follower => ( |
|
<Col key={follower.link}> |
|
<SingleFollower key={follower.link} follower={follower} /> |
|
</Col> |
|
))} |
|
</Row> |
|
|
|
<Pagination |
|
className={styles.pagination} |
|
current={page} |
|
pageSize={ITEMS_PER_PAGE} |
|
defaultPageSize={ITEMS_PER_PAGE} |
|
total={total} |
|
showSizeChanger={false} |
|
onChange={p => { |
|
setPage(p); |
|
}} |
|
hideOnSinglePage |
|
/> |
|
</div> |
|
</ErrorBoundary> |
|
); |
|
};
|
|
|