Building Ionic 4 Login Sample App. Part 2

Introduction

In this sample app, we will demonstrate how to define the Login form in an Ionic 4 project so that it can validate user credentials stored in the Appery.io database.

In this part, we will connect our app with the database and implement login and logout app logic. The steps for the first part of the tutorial can be found here: Building Ionic 4 Login App Tutorial. Part 1.

Downloads and Resources

You can also try it yourself by creating from the backup:

  1. Download the app backup file.
  2. Click Create new app.
  3. Click From backup and select the project backup file on your drive.
  4. Type in the app name.
  5. Click Create:
1047

Creating from backup

🚧

Defining DB credentials

Note, that if you decide to create from backup but would like to use your database, you will need to modify the default usersDB service in your app.
To do it, in the Project view, unfold the Services > usersDB > usersDB_settings folder and replace the default database_id value with your database ID (can be found in the browser search field or in YOUR DB > Settings > API keys.

But if you are interested in the detailed tutorial, please follow the tutorial steps below.

Creating Database

In the first part of the tutorial, we've created the app named Ionic4Login. And now let's proceed with creating a database to store the user's data.

  1. From the Appery.io dashboard, go to the Databases tab and click Create new database. Enter a name for the database, for example, usersDB, and confirm the database creation:
1063

As you can see here, Appery.io database has a predefined Users collection:

1236
  1. Let's add a couple of users to this collection. The _id , acl , _createdAt and _updatedAt fields are auto-generated, so please fill in only the values in the username and password columns:
887

Now we have a database that contains user data. Let's go back to our app and import the database services so that we can interact with the database.

Importing Database Services

  1. From the app dashboard, click Create new > Database Service:
336
  1. In the Database dropdown, select the name of the created database (usersDB). We will need the Login and Logout database services in our app, so mark them as checked. Click Import selected services:
595

The required database services should appear on the list of app services:

488

Now, we need to use the imported services in our app.

  1. So, unfold the Pages folder and navigate to the loginPage. Then click its DATA panel . Here, add the usersDB_login_service as a datasource. Change the service's generated local name to loginService:
1535
  1. Then, we need to modify the service's mappings. Click the Mapping button next to the Before send and create the following mapping:
1535

Then, we need to process the result of the service call. In case of successful login, we want to navigate to the welcome page.

  1. Click the Add button next to Success, and select Navigate to page from the list that appears:
1524
  1. At the bottom, in the EVENTS tab, select welcome for the Route name and click Save:
1534
  1. One more thing we need to do is to handle possible errors. Click the Add button next to Error and select Present alert for the action:
983
  1. You can modify some alert settings in the EVENTS tab. Set its Header to Error and its Message to Incorrect username or password. Then, save the changes:
1535
  1. Accessing the database can take some time, so let's add a loader to show that the loading is in progress. Click the Add button next to Before send event and select Present loading for the action:
990
  1. Again, review the EVENTS tab: there are some settings for the loader that we can change. For the Spinner select crescent style, and for the Message type Please wait.... Also, enable Show Backdrop. Don't forget to save your work:
1531
  1. Then, we need to define when to hide the loader. Click the Add button next to Success event and select Dismiss loading. Save the changes:
1528
  1. Reorder events so that the Dismiss loading event invokes immediately after the service successfully returns a response:
679
  1. Also, add the similarly positioned Dismiss loading event for Error. As a result, the datasource should look like this:
1226
  1. The next step is to process the login service request. Click the Mapping next to the Success event:
1517

As you can see here, in case of success the service returns the user _id and sessionToken:

1322

Let's cancel editing the mapping for now. We will need the session token later, to get the access to the secured database collections and invoke secured services. So, we need to keep this session token somewhere to be able to use it later.

  1. Unfold the Project folder from the left and go to the Model and storage tab. Here, select the Storage tab. Create a new storage variable with the sessionToken name of String type:
1328
  1. Then, let's return to the login service's Success mapping. Here we need to put the session token into the storage. Edit the mapping as shown below and save the changes:
1325

Updating loginPage

Finally, the login service is configured, and we need to update the loginPage.

  1. Navigate to its DESIGN panel and unfold the EVENTS tab from the bottom. Here we have a Form submit event. It always navigates the user to the welcome page after submitting the form:
1490
  1. Let's modify this behavior. Click the small red cross icon next to the Form submit event to delete it:
1248
  1. Then, create a new Form submit event for the Form1 component. Select Invoke service for the Action and loginService for the Datasource. Save the changes:
1492

Now, the login service will be invoked on form submit and the user will be navigated to the welcome page only if the login is successful.

Updating welcome page

Let's modify the second app page, welcome.

  1. Open its CODE panel and create a new variable for storing user information. It should have email name and String type:
970

We can get the user email from the storage, but let's try another approach. We will use routing to pass the user email from one page to another.

  1. Go to Project > Routing:
1482
  1. Here, apply the following changes:
  • for the loginPage rename the Route name and the Path to loginPage,
  • and for the welcome page add a routing parameter to pass the username. Just change its Path to welcome/:id:
1489
  1. Save the changes and go to the DATA panel of the loginPage. Here, we will need to modify the Success events of the loginService. Click Navigate to page:
1483
  1. Let's add some route parameters in the EVENTS tab. Type this.email in the Route params field and click Save:
1487
  1. Then, switch to the DESIGN panel of the welcome page and unfold the EVENTS tab from the bottom.

  2. For the Page component, add a Before page showing event, and for the Action select Set variable. Then, let's provide some details. Select email for the Variable name, check the Read from routing parameter box and type id as the value of the Parameter name. Then save the changes:

1510
  1. Now, we can display the email address of the logged user in the toolbar. For the ToolbarTitle1 component change the Text property value to Welcome, {{email}}:
1519

And another thing we need to do in our app is to implement the logout functionality.

  1. Let's navigate to the DATA panel of the welcome page and add a new datasource, the usersDB_logout_service. Then, change its local name to logoutService:
1820
  1. We need to pass the session token to invoke the logout service, to let it know, which user should be logged out. So let's edit the Before send mapping a bit, passing the session token from the storage to the service request header. Don't forget to click Save & replace button after editing:
1519
  1. In case of successful logout, we need to return the user to the login page. Click Add next to the Success event and select Navigate to page. Select loginPage as the Route name and save the changes:
1519
  1. Also, we can delete the Success mapping, because it is not used for anything. Here is how it should look like:
1217
  1. And finally, we need to handle logout button clicks. Go to the DESIGN panel of the welcome page and unfold the EVENTS tab from the bottom. Here, for the Button2 component create a Click event. Select Invoke service for the action and logoutService as ts Datasource:
1510

Save all the app changes. And that's it, we are ready to test the app.

App Testing

Now, you can test how your app works using the credentials from the usersDB database: enter [email protected] for the user email, and 111 for the password:

1399

App testing

If you provide an incorrect email address or/and password (not existing in the connected database), you will see a warning:

535

Error alert

📘

Want to know more?

We also have 2 advanced tutorials on how to build Login and Signup forms.