mirror of
https://github.com/urosran/cally.git
synced 2025-07-10 15:17:17 +00:00
26 lines
842 B
TypeScript
26 lines
842 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 {
|
|
await firestore()
|
|
.collection("Events")
|
|
.doc(eventData.id)
|
|
.update(eventData);
|
|
} catch (e) {
|
|
console.error(e)
|
|
}
|
|
},
|
|
onSuccess: () => {
|
|
queryClients.invalidateQueries("events")
|
|
}
|
|
})
|
|
} |