Open
Description
Problem
When using the useCollection
hook, it's not possible to paginate using startAfter
or startBefore
because these query functions require "Document snapshots" (which are not accessible when using useCollection
).
Possible solution 1
A possible (quick) solution that come to mind is to: return the snapshot array as an output of useCollection
:
const [data, loading, snapshots] = useCollection(...
You can then use the snapshots array to paginate to the next page:
const [data, loading, snapshots] = useCollection(
...,
orderBy("createdAt", "desc"),
limit(10),
paginationState.startAfter
? startAfter(paginationState.startAfter)
: undefined,
);
const handlePaginateNext = () => {
const lastSnapshot = snapshots?.[data.length - 1];
setPaginationState((prev) => ({
...prev,
startAfter: lastSnapshot,
}));
};
Possible solution 2
An alternative solution could be to: add a snapshot
field to FsDocument
.
export type FsDocument<T> = Readonly<{
id: string;
data: T;
snapshot: DocumentSnapshot<T>
}>;
@0x80 what are your thoughts on this?
Metadata
Metadata
Assignees
Labels
No labels