mirror of
https://github.com/urosran/cally.git
synced 2025-07-15 09:45:20 +00:00
Colors, fix family view, updated version
This commit is contained in:
@ -1,31 +1,43 @@
|
||||
import {useQuery} from "react-query";
|
||||
import firestore from "@react-native-firebase/firestore";
|
||||
import {ReactElement} from "react";
|
||||
import {useAuthContext} from "@/contexts/AuthContext";
|
||||
import {ICalendarEventBase} from "react-native-big-calendar";
|
||||
import {colorMap} from "@/contexts/SettingsContext";
|
||||
|
||||
export const useGetEvents = () => {
|
||||
const {user} = useAuthContext()
|
||||
export const useGetEvents = (isFamilyView: boolean) => {
|
||||
const { user, profileData } = useAuthContext();
|
||||
|
||||
return useQuery({
|
||||
queryKey: ["events", user?.uid],
|
||||
queryKey: ["events", user?.uid, isFamilyView],
|
||||
queryFn: async () => {
|
||||
const snapshot = await firestore()
|
||||
const eventsQuery = firestore()
|
||||
.collection("Events")
|
||||
.where("creatorId", "==", user?.uid)
|
||||
.get();
|
||||
.where("creatorId", "==", user?.uid);
|
||||
|
||||
const events: ICalendarEventBase[] = snapshot.docs.map((doc) => {
|
||||
if (isFamilyView) {
|
||||
eventsQuery.where("familyID", "==", profileData?.familyId);
|
||||
}
|
||||
|
||||
const snapshot = await eventsQuery.get();
|
||||
|
||||
return await Promise.all(snapshot.docs.map(async (doc) => {
|
||||
const data = doc.data();
|
||||
|
||||
const profileSnapshot = await firestore()
|
||||
.collection("Profiles")
|
||||
.doc(data.creatorId)
|
||||
.get();
|
||||
|
||||
const profileData = profileSnapshot.data();
|
||||
const eventColor: string = profileData?.eventColor || colorMap.pink // Default color if not found
|
||||
|
||||
return {
|
||||
title: data.title,
|
||||
start: new Date(data.startDate.seconds * 1000),
|
||||
end: new Date(data.endDate.seconds * 1000),
|
||||
hideHours: data.allDay,
|
||||
eventColor: eventColor,
|
||||
};
|
||||
});
|
||||
|
||||
return events;
|
||||
}
|
||||
})
|
||||
}
|
||||
}));
|
||||
},
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user