web: fetch less data when just listing events and news articles on home page

This commit is contained in:
2026-05-19 23:47:30 +02:00
parent 80b9cdbc33
commit e4c0558527
10 changed files with 120 additions and 52 deletions
+6 -1
View File
@@ -6,6 +6,7 @@ import { Image } from "@/components/general/Image";
import {
SingularEvent,
EventFragment,
EventListItemFragment,
getFutureOccurrences,
} from "@/lib/event";
import {
@@ -22,7 +23,11 @@ export const EventItem = ({
size,
imageLoading,
}: {
event: SingularEvent | EventFragment;
event:
| SingularEvent
| SingularEvent<EventListItemFragment>
| EventFragment
| EventListItemFragment;
mode: "list" | "calendar" | "singular-time-only";
size?: "small" | "medium" | "large";
imageLoading?: "eager" | "lazy";