chore: reduce window size for global tab to 1min

This commit is contained in:
2023-02-03 16:48:51 +00:00
parent 2858deb462
commit eb002e065c
3 changed files with 9 additions and 6 deletions

View File

@ -9,7 +9,8 @@ import { RootState } from "State/Store";
import { UserPreferences } from "State/Login";
export interface TimelineFeedOptions {
method: "TIME_RANGE" | "LIMIT_UNTIL"
method: "TIME_RANGE" | "LIMIT_UNTIL",
window?: number
}
export interface TimelineSubject {
@ -20,7 +21,7 @@ export interface TimelineSubject {
export default function useTimelineFeed(subject: TimelineSubject, options: TimelineFeedOptions) {
const now = unixNow();
const [window] = useState<number>(60 * 60);
const [window] = useState<number>(options.window ?? 60 * 60);
const [until, setUntil] = useState<number>(now);
const [since, setSince] = useState<number>(now - window);
const [trackingEvents, setTrackingEvent] = useState<u256[]>([]);