Ionic Logo

Awesome Check-In

The Awesome Check In mobile application is used by Awesome Inc to check in their guests and alert the appropriate team members

Brendan Thompson

Tags: projects Ionic

GitHub



Awesome Check-In

[Update 02/01/18: After this post was written the Awesome Check-In application received a huge update. Take a look at the Awesome Check-In v2 project page to see the all new interface and upgraded timer.]

The first time that I ever entered Awesome Inc I was unsure where to go and therefore talked with someone right inside the door. They generously got up and found the correct person while I waited nervously. For quite some time just about every new guest to the facility would initiate this same process. The problem is that the person being interrupted was often not an actual team member of Awesome Inc because it is a co-working space. Now, with Awesome Check-In, guests are directed to an iPad where they select the program that they are interested in; supply their name, email, and reason for coming; and then select the team members that are expecting them. Once the user confirms their information the app sends a Slack message to the designated Awesome Inc employee(s). Thanks to Awesome Check-In that person working hard right inside the door of Awesome Inc can stay focused on pursuing their definition of awesome.

The Ionic Framework

The app itself was created using the open source Ionic 3 hybrid mobile app development framework. I wrote a detailed description of the framework in a recent blog post. Basically, Ionic leverages the power of a multitude of web technologies and compiles it into native code that can run on both ios and android phones. The web to native wrapper utilizes the open source technology Cordova while the code itself is managed by Angular 2, Bootstrap, Node.js, and more.

Major Functions

Forms

There are two main forms that the user fills out while checking in. The first one asks which team members the user is intending to meet with. They are provided with a check-box list of team members and are allowed to select multiple. If they are just walking in and do not have a meeting, they can select the "Nobody: Set up a Meeting" option. At the end, the messages are sent via slack to the appropriate people or else to the general "Check In" channel. There is a validator which ensures that one of the check boxes has been selected.

The second form asks for some basic information from the user. They are giving three text boxes to fill out: name, email, and reason. All of the formControls are mandatory in order to proceed.

Once properly filled out the form data is passed to each consecutive page until the user is presented with a Confirm page. They have the ability to look over the info they provided as well as the selected team members. Upon clicking submit, the information is sent as a slack message to the corresponding people.

User Info Form
Confirm Page
Slack Messaging

One of the key functions of the app is that it sends messages to the appropriate Awesome Inc team members via Slack. The Slack API was super easy to use and allows for incredibly customizable messages. They even created a powerful Message Builder that allows for live testing of different messages with attachments, buttons, and more.

I created an in depth blog postabout the process of sending a message from the Awesome Check-In app into Slack. It basically revolves around creating a JSON object in the format specified by the API and sending it in an HTTP POST request. The JSON object includes the intended recipient as well as all of the text, images, links, and attachments for the message. The only other part is setting up Slack itself to accept Incoming Webhooks as a Custom Integration.

Idle Timer

The most recent addition to the Awesome Check In app was the implementation of an Idle Timer that recognizes when it has been idling on the same page for 60 seconds. It then gives the user 10 seconds to choose to continue working on the forms before it automatically returns to the home page.

A detailed blog post about implementing the timer has not yet been created as this feature is still under development. [Update 02/01/18: Check out Awesome Check-In v2 for the latest information on the Idle Timer.] Getting it all working properly has been quite a process. Basically, the timer is an injectable provider called timer where a new instance gets instantiated for every page and started/stopped/restarted when navigating between pages. The provider itself was based off the countdown timer by Dave Shirman. The hardest part has been managing the different instances, and it still currently has a bug that does not cause any real issues and for the most part goes unnoticed. Pressing the back button does not stop the last timer, and I am still testing two options for fixing the issue. One solution is to only create one instance of the timer and pass it between all of the pages while another fix is to manipulate the back-button functionality to also call a function on the page that pauses the timer.

Idle Timer

Awesome Check-In

The app has been checking in guests to Awesome Inc for over a month now. However, it feels like there are always things that can be done to it. The next steps are to get the timer working perfect, get with the designer to make it look sharp, and possibly add the ability for the user to take and send a selfie within the message.

Overall the app has been a lot of fun to build, and I have learned so much about web development. My biggest complaint is that the app runs pretty slow, which is a major drawback of using Ionic and its web-to-native hybrid mobile development technology. I look forward to developing in native code or, better yet, a future where all mobile manufacturers accept some of the same programming languages.