mirror of
https://github.com/urosran/cally.git
synced 2025-07-10 15:17:17 +00:00

- Added new hook for updating events - Updated the selected event in db - Added document id as id to the event object when fetching events - Removed unused react-native-google sign-in library
29 lines
964 B
TypeScript
29 lines
964 B
TypeScript
import {useAuthContext} from "@/contexts/AuthContext";
|
|
import {useMutation, useQueryClient} from "react-query";
|
|
import firestore from "@react-native-firebase/firestore";
|
|
import {EventData} from "@/hooks/firebase/types/eventData";
|
|
|
|
export const useUpdateEvent = () => {
|
|
const {user: currentUser} = useAuthContext()
|
|
const queryClients = useQueryClient()
|
|
|
|
return useMutation({
|
|
mutationKey: ["updateEvent"],
|
|
mutationFn: async (eventData: Partial<EventData>) => {
|
|
try {
|
|
console.log("Update");
|
|
console.log(eventData.id);
|
|
console.log(eventData);
|
|
await firestore()
|
|
.collection("Events")
|
|
.doc(eventData.id)
|
|
.update(eventData);
|
|
} catch (e) {
|
|
console.error(e)
|
|
}
|
|
},
|
|
onSuccess: () => {
|
|
queryClients.invalidateQueries("events")
|
|
}
|
|
})
|
|
} |