Funcionalidades:

  • 1. Adicionar novos pratos de comida: ​Em sua página Dashboard você deve abrir um modal ao clicar no botão Novo Prato no Header. Esse modal deve ser responsável por cadastrar uma nova food passando os campos image, name, description, value.
  • 2. Remover pratos de comida: Em sua página Dashboard você deve remover um prato de comida ao clicar no botão com ícone de lixeira no componente Food.
  • 3. Alterar disponibilidade dos pratos de comida: ​Em sua página Dashboard você deve alterar a disponibilidade de um prato de comida ao clicar no switch que é controlado pelo valor de available.
  • 4. Listar os pratos de comida: Sua página Dashboard deve ser capaz de exibir uma listagem, com o campo title, value, e description e available de todos os pratos de comida que estão cadastrados.
  • 5. Editar pratos de comida: ​Em sua página Dashboard você deve abrir um modal ao clicar no botão Editar Prato. Esse modal deve ser responsável por editar uma food passando os campos image, name, description, value.

Solução:

  • Utilizar React, você pode iniciar utilizando Creat React App
  • Utilizar um gerenciador de estado como o Context API
  • Escrever testes de unidade e qualquer outro teste que você considere importante
  • Usar features ES6+
  • Utilizar HTML com boa semântica
  • Fazer uso de hooks
  • Utilizar Material-ui na construção do layout

Bônus:

  • Utilizar alguma solução CSS moderna, como Styled-components
  • Incluir a versão mobile do layout proposto
  • Cuidados com acessibilidade

Pré-requisitos

  • Git
  • Node.js
  • Yarn

Como executar

  • Clone o repositório git clone git@github.com:rodamaral/react-restaurante-app.git
  • Entre no diretório cd react-restaurante-app
  • Execute yarn para instalar as dependências
  • Execute yarn global add json-server para instalar o json-server globalmente em sua máquina, caso já não esteja
  • Execute yarn start para rodar a aplicação
  • Em outro shell e no mesmo diretório, execute json-server server.json -p 3334 --delay 150 para iniciar o servidor pras APIs. OBS: Use a mesma porta que está registrada no arquivo .env

O website deverá ser executado automaticamente em http://localhost:3000

Available Scripts

In the project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

yarn eject

Note: this is a one-way operation. Once you eject, you can’t go back!

If you aren’t satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.