Skip to content

jordisan/report-dashboard-nextjs

Repository files navigation

Reports Dashboard with Next.js

Deployed to https://report-dashboard-nextjs.vercel.app/

Example project of a dashboard showing different reports, using Next.js / TypeScript / Redux

Technical details

  • Next.JS with TypeScript
  • Redux toolkit for state
  • Mantine UI library (for example)

Assumptions

  • We would need to make some user research: requirements, profile of users, context of use, ...

  • User profile (let's say):

    • technical (somehow)
    • more interested in data than in aesthetics (but graphics are important)
  • if coming from an existing app => study and define strong points and problems in it

Mockup

Balsamiq mockup

ToDo

  • Improve visuals
  • Tests (unit / e2e)
  • Errors handling
  • Persistence


Based on...

TypeScript Next.js example

This is a really simple project that shows the usage of Next.js with TypeScript.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use it?

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-typescript with-typescript-app
# or
yarn create next-app --example with-typescript with-typescript-app
# or
pnpm create next-app -- --example with-typescript with-typescript-app

Deploy it to the cloud with Vercel (Documentation).

Notes

This example shows how to integrate the TypeScript type system into Next.js. Since TypeScript is supported out of the box with Next.js, all we have to do is to install TypeScript.

npm install --save-dev typescript

To enable TypeScript's features, we install the type declarations for React and Node.

npm install --save-dev @types/react @types/react-dom @types/node

When we run next dev the next time, Next.js will start looking for any .ts or .tsx files in our project and builds it. It even automatically creates a tsconfig.json file for our project with the recommended settings.

Next.js has built-in TypeScript declarations, so we'll get autocompletion for Next.js' modules straight away.

A type-check script is also added to package.json, which runs TypeScript's tsc CLI in noEmit mode to run type-checking separately. You can then include this, for example, in your test scripts.

About

Example of a dashboard of reports implemented using Next.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published