chore: load only 200 latest posts on profile

This commit is contained in:
2023-04-18 14:09:19 +01:00
parent 6d8416f88e
commit 82d2b19e36
3 changed files with 11 additions and 7 deletions

View File

@ -24,6 +24,7 @@ export interface TimelineProps {
window?: number;
relay?: string;
now?: number;
loadMore?: boolean;
}
/**
@ -137,11 +138,13 @@ const Timeline = (props: TimelineProps) => {
</>
)}
{mainFeed.map(eventElement)}
<LoadMore onLoadMore={feed.loadMore} shouldLoadMore={!feed.loading}>
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
</LoadMore>
{(props.loadMore === undefined || props.loadMore === true) && (
<LoadMore onLoadMore={feed.loadMore} shouldLoadMore={!feed.loading}>
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
<Skeleton width="100%" height="120px" margin="0 0 16px 0" />
</LoadMore>
)}
</div>
);
};