Answer the question
In order to leave comments, you need to log in
How does this AC work with async/await?
Hi everyone I
have this code:
export const addComponent = data => async dispatch => {
let comps = await fire.database().ref("components");
comps.push({
name: data.component,
comp: data.component_name
});
};
export const addComponent = data => {
async function dispatch() {
let comps = await fire.database().ref("components");
comps.push({
name: data.component,
comp: data.component_name
});
};
}
Answer the question
In order to leave comments, you need to log in
No. In the first case, you return a function from AC with the dispatch argument .
In the second case, you return nothing and removed the dispatch argument , replacing it with the name. And the dispatch
function itself , which is passed to the argument, is just synchronous.
Add a return and it will be similar to the first option:
export const addComponent = data => {
return async function(dispatch) { // тут добавлен return и аргумент
let comps = await fire.database().ref("components");
comps.push({
name: data.component,
comp: data.component_name
});
//так же в любое время вы можете вызвать dispatch
dispatch({ type: 'someAction', payload: 'someValue' });
};
}
const foo = x => {
return y => {
return x + y;
}
};
const foo = x => y => x + y;
const a = x(5);
const b = a(6);
console.log(b);
// => 11
export const addComponent = data => async dispatch => {
let comps = await fire.database().ref("components");
// функция продолжит выполнение только когда вернется значение присвамваемое comps
comps.push({
name: data.component,
comp: data.component_name
});
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question