mirror of
https://github.com/urosran/cally.git
synced 2025-07-10 15:17:17 +00:00
Implementation of fetching, adding and updating todos to db
This commit is contained in:
24
hooks/firebase/useUpdateTodo.ts
Normal file
24
hooks/firebase/useUpdateTodo.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { useMutation, useQueryClient } from "react-query";
|
||||
import firestore from "@react-native-firebase/firestore";
|
||||
import { IToDo } from "@/hooks/firebase/types/todoData";
|
||||
|
||||
export const useUpdateTodo = () => {
|
||||
const queryClients = useQueryClient()
|
||||
|
||||
return useMutation({
|
||||
mutationKey: ["updateTodo"],
|
||||
mutationFn: async (todoData: Partial<IToDo>) => {
|
||||
try {
|
||||
await firestore()
|
||||
.collection("Todos")
|
||||
.doc(todoData.id)
|
||||
.update(todoData);
|
||||
} catch (e) {
|
||||
console.error(e)
|
||||
}
|
||||
},
|
||||
onSuccess: () => {
|
||||
queryClients.invalidateQueries("todos")
|
||||
}
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user