export const updateMatch = payload => {
return (dispatch, getState, { getFirebase, getFirestore }) => {
const firestore = getFirestore();
const currentMatch = getState().firestore.ordered.matches;
const match = currentMatch[0];
firestore
.collection("matches")
.doc(match.id)
.set({
...payload,
updatedAt: new Date(),
deleted:false
})
.then(() => {
// dispatch({ type: "CREATE_MATCH", match });
console.log(payload);
console.log("match updated...");
})
.catch(err => console.log(err));
};
};
Это функция в моем магазине приставок, я хочу изменить удаленное с ложного на истинное, когда я нажимаю кнопку в другом компоненте, как это сделать?