Expense Tracker App using HTML, CSS, JavaScript & React Framework

Thumbnail

Introduction :

Expense Tracker is created using React is a comprehensive financial management tool designed to help users track and manage their expenses efficiently. The application employs a modular structure, utilizing React components for distinct functionalities.

The AddForm component serves as the gateway for users to input new expenses or edit existing ones. It includes dynamic form elements for title, category, and amount, complete with real-time error validation to ensure accurate data entry. The form’s logic seamlessly handles both addition and modification of expense records, synchronizing with the app’s state and persisting data in local storage.

The ContextMenu component enhances user interaction by providing context-specific options for each expense entry in the main table. It facilitates intuitive expense management through functionalities such as deleting and editing individual records, enhancing the user experience.

The heart of your application lies in the ExpenseTable component, where a responsive and dynamic table displays the user’s expenses. Users can effortlessly filter expenses by category, sort them based on amount in ascending or descending order, and observe the total amount dynamically updating as per the filtered results. The context menu further streamlines expense management, allowing users to perform quick actions without navigating away from the table.

Explanation :

AddForm.jsx :
  • State:
    • formData: Holds the data for the expense form.
    • error: Keeps track of form validation errors.
  • Functions:
    • validateError: Validates the form data and sets error messages if necessary.
    • submitHandler: Handles form submission, updates existing expenses, or adds new ones.
    • handleInputChange: Updates form data on input change.
  • Effect:
    • useEffect: Saves the expenses in local storage whenever there’s a change in the expense state.
  • Structure:

    • The component renders a form with input fields for title, category, and amount.
    • InputControl is a custom component rendering an input field with label and error handling.

    JavaScript Logic:

    • Validates the form data to ensure required fields are filled.
    • Modifies existing expenses or adds new ones based on user input.
    • Updates local storage with the latest expenses.

    Purpose of Functions:

    • validateError: Checks for missing fields and updates the error state accordingly.
    • submitHandler: Handles form submission, either updating existing expenses or adding new ones.
    • handleInputChange: Updates the formData state on input change.
ContextMenu.jsx
  • Functions:
    • deleteHandler: Deletes the selected expense.
    • editHandler: Populates the form with the selected expense data for editing.

Structure:

  • Renders a context menu with “Edit” and “Delete” options.

JavaScript Logic:

  • Handles the delete and edit functionalities for an expense.

Purpose of Functions:

  • deleteHandler: Deletes the selected expense.
  • editHandler: Populates the form with the selected expense data for editing.
ExpenseTable.jsx
  • State:

    • filterdata: Stores the filtered expenses based on category selection.
    • contextPosition: Keeps track of the position for displaying the context menu.
  • Functions:

    • filterByCategory: Filters expenses based on the selected category.
    • contextHandler: Handles right-click context menu display.
    • sortHandler: Sorts expenses based on the selected sorting option.
  • Effect:

    • useEffect: Updates the filtered expenses whenever there’s a change in the expense state.

Structure:

  • Renders a table with columns for title, category, amount, and a dropdown for category filtering.
  • Utilizes the ContextMenu component for right-click options.
  • Allows sorting by amount in ascending or descending order.

JavaScript Logic:

  • Filters and displays expenses based on the selected category.
  • Calculates and displays the total amount of filtered expenses.
  • Handles right-click context menu display for editing or deleting expenses.
  • Allows sorting of expenses based on the amount.

Purpose of Functions:

  • filterByCategory: Filters expenses based on the selected category.
  • contextHandler: Handles the display of the context menu on right-click.
  • sortHandler: Sorts expenses based on the selected sorting option.
 

Instructions to run this project :

Step 01 : Download the zip file of source code (given below) and extract it.

Step 02 : Navigate to the Project Directory:

  • Once the repository is cloned, navigate into the project directory using the cd command: cd <project_directory>
  • Replace <project_directory> with the name of the directory where the project was cloned.

Step 03 : Install Dependencies:

  • Inside the project directory, run the following command to install project dependencies using Yarn : yarn install
  • This command will read the package.json file and install all required dependencies listed in it.

Step 04 : Run the Project:

  • After installing dependencies, you can start the development server using the following command: yarn start
  • This command will start the development server and automatically open the project in your default web browser.
  • Once the development server is up and running, you can access the project by opening your web browser and navigating to the specified address (usually http://localhost:3000).
  • You can now explore the e-commerce app, navigate through different pages, interact with components, and experience the functionality firsthand.

SOURCE CODE :

OUTPUT :

Output
More HTML CSS JS Projects
Get Huge Discounts

Find More Projects

Jungle Dash Game Using Python with source code with pygame module Introduction: Dive into the excitement of jungle adventures with our new …

Building a Tetris Game with Python with source code Introduction: Welcome to the world of Tetris, where falling blocks meet strategic maneuvers …

Super Mario Game Using Python with source code Introduction: Remember playing Super Mario as a kid? It’s that classic game where you …

library management system using python with source code using Python GUI Tkinter (Graphical User Interface) How to Run the code: Introduction:  Imagine …

Space Shooter Game Using Python with source code Overview: A space shooter game typically involves controlling a spaceship to navigate through space …

Hotel Management System Using Python with source code Introduction: Welcome to our blog post introducing a helpful tool for hotels: the Tkinter-based …

All Coding Handwritten Notes

Browse Handwritten Notes