2023-01-28 18:52:18 +08:00
|
|
|
import { useRef } from 'preact/hooks';
|
|
|
|
import { useParams } from 'react-router-dom';
|
|
|
|
|
|
|
|
import Timeline from '../components/timeline';
|
2023-02-06 00:17:19 +08:00
|
|
|
import { api } from '../utils/api';
|
2023-02-03 21:08:08 +08:00
|
|
|
import useTitle from '../utils/useTitle';
|
2023-01-28 18:52:18 +08:00
|
|
|
|
|
|
|
const LIMIT = 20;
|
|
|
|
|
2023-02-18 20:48:24 +08:00
|
|
|
function Hashtags(props) {
|
2023-02-06 16:35:03 +08:00
|
|
|
let { hashtag, ...params } = useParams();
|
2023-02-18 20:48:24 +08:00
|
|
|
if (props.hashtag) hashtag = props.hashtag;
|
2023-02-06 16:35:03 +08:00
|
|
|
const { masto, instance } = api({ instance: params.instance });
|
|
|
|
const title = instance ? `#${hashtag} on ${instance}` : `#${hashtag}`;
|
2023-02-11 16:27:40 +08:00
|
|
|
useTitle(title, `/:instance?/t/:hashtag`);
|
2023-02-11 16:28:03 +08:00
|
|
|
const latestItem = useRef();
|
|
|
|
|
2023-01-28 18:52:18 +08:00
|
|
|
const hashtagsIterator = useRef();
|
|
|
|
async function fetchHashtags(firstLoad) {
|
|
|
|
if (firstLoad || !hashtagsIterator.current) {
|
|
|
|
hashtagsIterator.current = masto.v1.timelines.listHashtag(hashtag, {
|
|
|
|
limit: LIMIT,
|
|
|
|
});
|
|
|
|
}
|
2023-02-11 16:28:03 +08:00
|
|
|
const results = await hashtagsIterator.current.next();
|
|
|
|
const { value } = results;
|
|
|
|
if (value?.length) {
|
|
|
|
if (firstLoad) {
|
|
|
|
latestItem.current = value[0].id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function checkForUpdates() {
|
|
|
|
try {
|
|
|
|
const results = await masto.v1.timelines
|
|
|
|
.listHashtag(hashtag, {
|
|
|
|
limit: 1,
|
|
|
|
since_id: latestItem.current,
|
|
|
|
})
|
|
|
|
.next();
|
|
|
|
const { value } = results;
|
|
|
|
if (value?.length) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
2023-01-28 18:52:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Timeline
|
|
|
|
key={hashtag}
|
2023-02-06 16:35:03 +08:00
|
|
|
title={title}
|
2023-02-06 00:17:19 +08:00
|
|
|
titleComponent={
|
|
|
|
!!instance && (
|
|
|
|
<h1 class="header-account">
|
|
|
|
<b>#{hashtag}</b>
|
|
|
|
<div>{instance}</div>
|
|
|
|
</h1>
|
|
|
|
)
|
|
|
|
}
|
2023-01-28 18:52:18 +08:00
|
|
|
id="hashtags"
|
2023-02-06 16:35:03 +08:00
|
|
|
instance={instance}
|
2023-01-28 18:52:18 +08:00
|
|
|
emptyText="No one has posted anything with this tag yet."
|
|
|
|
errorText="Unable to load posts with this tag"
|
|
|
|
fetchItems={fetchHashtags}
|
2023-02-11 16:28:03 +08:00
|
|
|
checkForUpdates={checkForUpdates}
|
2023-01-28 18:52:18 +08:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Hashtags;
|