Introducing Goals Vine ๐Ÿฅณ ๐ŸŽŠ - Tracks your goals, and reminds you to convert them into reality

Introducing Goals Vine ๐Ÿฅณ ๐ŸŽŠ - Tracks your goals, and reminds you to convert them into reality

ยท

6 min read

Hello everyone ๐Ÿ‘‹,

This is the second hackathon I'm participating in hashnode & I thank hashnode for pushing me to do many things that I keep postpone doing it.

I am happy to introduce my new app Goals Vine to you all.

Are you one of them who sets a New Year resolution (or) any goals at the beginning of the year but you don't follow it after?

Then this is the app for you.

Idea behind Goals Vine

People set goals to achieve things. But, we tend to lose focus of most of the goals for some reason. So, I did a mini-survey with some close people to understand other's perspectives on why people lose focus after setting goals & how we can solve them.

Problems

These are key problems identified from the survey:

  1. Forgetting the goals due to busy life.
  2. No Motivation to continue.
  3. No way to Measure our goals.

Solutions

These are the suggestion received from the survey to solve those problems:

  1. Send a reminder mail every month to remember their goals.
  2. Send Motivational quotes & images in reminder mail to continue their progress.
  3. Offer statistics to show their growth.
  4. Categorize the goals to know how much one is achieving or lagging in a specific category.
  5. Shows Leader board to compete with others.

This made to create Goals Vine.

Introducing Goals Vine ๐Ÿฅณ ๐ŸŽŠ

Goals Vine tracks your goals, motivates them, and reminds you to convert them into reality.

Tech Stack ๐Ÿ’ป

Clerk - User Management

HarperDB - Database

Angular 12 - Frontend Development

Netlify - Application Hosting

Netlify function - Backend API & Hosting

Nodemailer - Send email to user.

Angular PWA - Web App can be installed as a normal app in Mobile/Desktop.

UI/UX ๐Ÿ–Œ๏ธ

Utilized Material Design throughout the application to follow the industry standards.

Code Quality ๐Ÿ‘ฎโ€โ™‚๏ธ

Used Prettier, ESlint & TypeScript to improve the code quality. Followed best coding standards set by Angular. Used RxJS for reactive programming!

In a team, each developer uses a different coding environment. Some might use VS Code, others might use Vim. VSCode offers Prettier, ESLint extensions which helps them to fix the issues while coding itself.

But, what if a new member joined a team and committed the code in a different coding environment with the files are not formatted or not followed ESLint rules?

To avoid those, I've introduced a pre-commit hook with husky + lint-staged + prettier + eslint.

What it does is, whenever you commit the code with git commit or any tool, it will automatically format it based on prettier configuration & runs the eslint only on the committed files. This helps the team to be aligned in the same coding formats.

You can see the below image. I committed files for designing the home page. It runs prettier to format the code & after that it runs ESLint to ensure Code Quality.

linter.png

Lint-staged - Run linters against staged git files and don't let ๐Ÿ’ฉ slip into your codebase!

Husky - Husky improves your commits and more ๐Ÿถ woof!

How to use App? ๐Ÿ“™

Navigate to the Goals Vine App.

Screenshot 2021-07-30 at 8.09.53 PM.png

If you are a new user, click Register or Login with your credentials. Below is the login screen.

Screenshot_2021-07-30 Goals Vine.png

Once you logged in, you will be landed on the dashboard screen. The dashboard page shows you the status of the Not Started/In Progress/Completed goals.

Screenshot_2021-07-30 Goals Vine(1).png

If you scroll down, you can also see the graph for goals set by month and category. You can see below Pie chart that I've added more goals under the Health category & I targetted more goals on Septemeber month.

Screenshot_2021-07-30 Goals Vine(3).png

Navigate to the Goals page from the left navigation to add, view, and update the Goal. In the below screenshot, you can see that there are 2 goals is in Not Started, 1 goal is in progress & 1 goal is completed.

Screenshot_2021-07-30 Goals Vine(5).png

Before you add a goal, you should add Category. Goals are grouped by Category to show more stats. Let's create a new category as Article Writing by clicking + icon at the bottom of the page.

Screenshot_2021-07-30 Goals Vine(6).png

Screenshot_2021-07-30 Goals Vine(8).png

Once you added, you can able to see the Article Writing Category in the list.

Screenshot_2021-07-30 Goals Vine(9).png

Now navigate to the Goals page to add a new goal. Give a name for the goal, choose the category, status & target date for this goal.

chrome-capture.gif

You can update the goal Progress by Drag-drop from Not started -> In Progress -> Completed. Also, you can update the goal by clicking it & a dialog will open with the existing value. In the screenshot below, you can see I changed 100 articles to 50 articles.

chrome-capture (1).gif

If you would like to delete a goal, you can delete it by clicking the respective goal & press Delete option.

Screenshot_2021-07-30 Goals Vine(10).png

Navigate to the account page to see your account details & update it (if required).

Screenshot_2021-07-30 Goals Vine(11).png

Alternatively, you can go to the account section by clicking the User profile image at the header.

Screenshot_2021-07-30 Goals Vine(12).png

Navigate to the Leaderboard section to see the user who completed most goals. This will motivate others to compete with other users.

Screenshot_2021-07-30 Goals Vine(13).png

Killer feature

One killer feature in the app is, even if you are away from the App, you will get an email from Goals Vine to remind you about your goals. It will have motivational quotes & Images.

This email will be triggered to every user each month with their goal stats.

Screenshot 2021-07-30 at 6.17.48 PM.png


Application Details ๐Ÿ“–

URL: goals-vine.netlify.app

Github Repo: github.com/yuvgeek/goals-vine

DEMO ๐Ÿฆ„

Please check the application DEMO in the URL. I've shown the workflow starting from login, creating the Category & Goal, Updating the goal from Not Started -> In Progress -> Completed, statistics & graph in the dashboard & Leader board.

Challenges Faced ๐Ÿคผ

Problem: There is no npm package to integrate Clerk with the Angular framework. It has direct support only for React. Managing the Clerk with Angular is a tedious task. It took ~20% of the development effort.

Solution: I completed the Clerk Integration with the help of Matej Boลกnjak & the Clerk team in the discord channel. Thanks to them.


Problem: Since I'm using the Netlify function for interacting with my HarperDB, I must return the API response within 10 seconds due to the time limit set by Netlify. Otherwise, my API will fail.

Solution: Considering the time-limit problem, I had to write my API & query in an optimized way to solve it.


Problem: To calculate the Leader board, I need to pull all the users from the Clerk database and simultaneously I need to query the goals with my HarperDB. Until today, I wasn't sure if there was a way to pull other user details from the Clerk.

Solution: With the help of the Clerk discord channel, I got the Postman collection for Clerk Backend API to interact with the database.

Conclusion

I really enjoyed working on this App. Thanks to Clerk & Hashnode for pushing us to do many innovative apps. I created Cover Pic within 5 minutes in the Slickr app. Thanks to Savio Martin.

I hope you enjoyed this article or found it helpful.

You can connect with me on Twitter & Github ๐Ÿ™‚

Support ๐Ÿ™Œ

You can support me by buying me a coffee with the below link ๐Ÿ‘‡

Did you find this article valuable?

Support Yuvaraj by becoming a sponsor. Any amount is appreciated!

ย