afvr94 / react-excel-table-example

React table that simulated excel like functions.

Home Page:https://main.d2084za5rxrscu.amplifyapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About project

This is project that you can create table like excel. Its a React application created by create-react-app with typescript which includes everything needed. The application is using funcions and hooks for components. The frontend is styled using styled-components as our base for css. For state management the project is using React's useReducer and useContext and for immutability in the reducer is using immer

Setup

We are using npm for package management, so make sure you have node installed.

To run the frontend to use the backend in local development use the following commands:

$> cd path/to/new-table
$> npm install
$> npm start

Tests

The following command runs all unit tests for the project

$> cd path/to/new-table
$> npm test

The following command runs all e2e integration tests for the project

$> cd path/to/new-table
$> npm run cypres:run

The following command runs cypress util to run e2e integration tests for the project

$> cd path/to/new-table
$> npm run cypres:open

If you are debugging test you can use:

$> cd path/to/new-table
$> npm run test:debug

You can find more information at: https://create-react-app.dev/docs/debugging-tests/

If you want to see code coverage you can use:

$> cd path/to/new-table
$> npm run test:coverage

The test for components use mirage to simulate real time data and for the reducers we create fixtures.

Project Structure

Top-level directory layout

- .husky                  # Husky is used for linting and formation in the commit phase
- public                  # Public files such as index.html, manifest.json, etc
- src                     # Source files
- .eslintrc.js            # Eslint config file
- .prettierrc             # Prettier config file
- package.json            # List of dependencies
- tsconfig.json           # Typescript configuration
- README.md

Source-level directory layout

- App.tsx                 # Main app components
- components              # Every feature/page container will be divided by folder
- constants.ts            # Constants used throughout the app
- types.ts                # Types used throughout the app
- data.ts                 # Default data used for table
- reducer.ts              # Business logic for app
- index.tsx               # Main react file
- index.css               # Main css file
- setupTest.ts            # Setup jest test
- hooks.ts                # Hooks for feature

Useful scripts

Its recommended to use prettier and eslint plugin in your text editor/IDE, so it can auto fix code. See the recommended VS Code extensions below. If you don't want to you can always use the following commands that will do the same:

   $> npm run format
   $> npm run format:check
   $> npm run lint
   $> npm run lint:check

format = Will format the code with prettier.

format:check = Will check the code with prettier.

lint = Will eslint the code for you.

lint:check = Will check the code with eslint.

We are using husky to check if the code passes lint and prettier standards.

Recommended Visual Studio Code extensions:

If you use Visual Studio Code as your text editor/IDE, you will find the following extensions useful for working on this project:

  • ESLint - Integrates ESLint for automatic code fixing.
  • Prettier - Opinionated code formatter.

Learn new stuff

About

React table that simulated excel like functions.

https://main.d2084za5rxrscu.amplifyapp.com/


Languages

Language:TypeScript 86.1%Language:HTML 6.3%Language:JavaScript 6.1%Language:CSS 1.3%Language:Shell 0.2%