// EXPERIMENTAL: This is a work in progress and may not work as expected. import { useRef } from 'preact/hooks'; import { useParams } from 'react-router-dom'; import Timeline from '../components/timeline'; import { api } from '../utils/api'; import useTitle from '../utils/useTitle'; const LIMIT = 20; function Public({ local }) { const isLocal = !!local; const params = useParams(); const { masto, instance } = api({ instance: params.instance }); const title = `${instance} (${isLocal ? 'local' : 'federated'})`; useTitle(title, `:instance?/p/l?`); const latestItem = useRef(); const publicIterator = useRef(); async function fetchPublic(firstLoad) { if (firstLoad || !publicIterator.current) { publicIterator.current = masto.v1.timelines.listPublic({ limit: LIMIT, local: isLocal, }); } const results = await publicIterator.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 .listPublic({ limit: 1, local: isLocal, since_id: latestItem.current, }) .next(); const { value } = results; if (value?.length) { return true; } return false; } catch (e) { return false; } } return ( {instance}
{isLocal ? 'local' : 'federated'}
} id="public" instance={instance} emptyText="No one has posted anything yet." errorText="Unable to load posts" fetchItems={fetchPublic} checkForUpdates={checkForUpdates} /> ); } export default Public;