In this gist I show a simple setup for helping me build the frontend of a backend functionality before programming the latter. In this case it is the login functionality.
On the login page there are three buttons to allow me to login with different credentials, so that I can see what the server would tell me in each case. That will guide me to understand how I want to program the frontend.
A couple of seconds after clicking each button I'll get a response from the server.
- the first button will cause an error response, which I show in a feedback field on the login page.
- the second and third buttons will cause an OK response, which I store in the
auth
key of the local storage system.
Notice how I avoid fields altogether at https://gist.github.com/aercolino/035e2931dba9308e375f94b8462010c1#file-login-component-html-L5-L7.
Notice how I simulate the backend behaviour right into the service at https://gist.github.com/aercolino/035e2931dba9308e375f94b8462010c1#file-session-service-ts-L12-L16. The wrapping timeout is important to have a relevant asynchronous simulation.
Notice how I take control of the login error at https://gist.github.com/aercolino/035e2931dba9308e375f94b8462010c1#file-login-component-ts-L27. The
subscribe
accepts 3 arguments. The first is for the OK path, the second for the error path, and the third for the completion.