mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 20:44:28 +03:00
a130743d4c
Everything need to be instance-aware!
31 lines
786 B
JavaScript
31 lines
786 B
JavaScript
import { useRef } from 'preact/hooks';
|
|
|
|
import Timeline from '../components/timeline';
|
|
import { api } from '../utils/api';
|
|
import useTitle from '../utils/useTitle';
|
|
|
|
const LIMIT = 20;
|
|
|
|
function Bookmarks() {
|
|
useTitle('Bookmarks', '/b');
|
|
const { masto } = api();
|
|
const bookmarksIterator = useRef();
|
|
async function fetchBookmarks(firstLoad) {
|
|
if (firstLoad || !bookmarksIterator.current) {
|
|
bookmarksIterator.current = masto.v1.bookmarks.list({ limit: LIMIT });
|
|
}
|
|
return await bookmarksIterator.current.next();
|
|
}
|
|
|
|
return (
|
|
<Timeline
|
|
title="Bookmarks"
|
|
id="bookmarks"
|
|
emptyText="No bookmarks yet. Go bookmark something!"
|
|
errorText="Unable to load bookmarks"
|
|
fetchItems={fetchBookmarks}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default Bookmarks;
|