I was working Ant Design pro. But i can't understand the model of the login code. Here they use
effects: {
*login({ payload }, { call, put }) {}
}
if you wanted to see the full code goto this link Ant Design Pro login model js file
Here you will find the full code. Now I don't understand what that code means.
Thanks
A function name with a star means a generator. A generator is a
function
whose running process can be paused using theyield
keyword. yield is a two-way communication between the generator and its caller. With that knowledge, let's see the function itself:The
function
expects two objects as input and reduces them to parameters. You need to pass the first parameter as an object like{payload: 'something'}
and thepayload
attribute of this object will be mapped into a parameter of thefunction
. Similarly, the second object you pass will need a call and a put attribute, which are functions.First it executes call, passing fakeAccountLogin and payload and yields the function, that is, the function pauses and sends the result of call to the outer scope. When the login function is resumed using the
.next()
function
of the iterator of the generator, whatever is passed to it will be assigned to response. After this,put
is called, passingchangeLoginStatus
astype
andresponse
aspayload
and the result if yielded to the caller of thisfunction
.When the
.next()
of the iterator of this generator is called, response.status is checked against 'ok' and if there is a match, thenreloadAuthorized
is called,urlParams
is initialized as well asparams
. After thisredirect
will be initialized withparams.redirect
and it this is truey,redirectUrlParams
are initialized and some further URL operations will happen. Anyways, if there is a redirect, then a function ends.If
response.status
was'ok'
, but there was no redirect, thenput
is called and the result is yielded out of thefunction
end when the next.next()
call is issued, thefunction
will end. Ifresponse.status
was not'ok'
, then thefunction
ended much earlier, namely when the outer if was evaluated to be false.You will need to take a look into reducing objects and arrays in Javascript as well as iterators and generator functions. You will have a difficult time until you allocate time for this, so the sooner you do it, the better. I recommend Chapter 2 and Chapter 5 of this book: https://github.com/getify/You-Dont-Know-JS/tree/master/es6%20%26%20beyond