Skip to content

FarhanShares/nuxt3-email-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

302adfd · Sep 11, 2023

History

5 Commits
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023
Sep 11, 2023

Repository files navigation

Email App - Farhan Israq

A few notes

  • Dictionary (Object) data structure has been used instead of arrays to take actions in O(1) constant time.
  • Utilized DRY principle.
  • Store contains all the major actions so if in future, more mailboxes are added, it can just use the store instead of copying again.
  • All keyboard shortcut works as expected, when archived it closes the drawer if it's inbox, because it has moved.
  • When a mail is opened, it is marked as read as it implies that it has been read.
  • Completely type safe, why not!

Setup

Make sure to install the dependencies:

# npm
npm install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

Production

Build the application for production:

# npm
npm run build

Locally preview production build:

# npm
npm run preview