Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Group-APP] - Julia Viana, Higo Jhon, Luiz Rosa, Mauricio Passos #2

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
dbeb085
iniciando configuracao inicial
JuliaV05 Mar 21, 2024
8290936
FEAT: Criando pagina de Home
HigoJhon Mar 21, 2024
2d0e08d
Merge pull request #1 from JuliaV05/higojhon-app
HigoJhon Mar 21, 2024
e97373a
Criando rotas e linter
MauricioPassosF Mar 21, 2024
f8ab542
Merge pull request #2 from JuliaV05/mauricio-app
MauricioPassosF Mar 21, 2024
d121a5a
criando rota de history
MauricioPassosF Mar 22, 2024
266298e
Merge pull request #3 from JuliaV05/mauricio-app
MauricioPassosF Mar 22, 2024
0f93f7b
persistence with lowdb attempt
lu1z Mar 22, 2024
d3c8f00
nova persistencia de dados
lu1z Mar 25, 2024
eaf6f4c
Merge pull request #4 from JuliaV05/feature-data-base
lu1z Mar 25, 2024
f2b03eb
Adiciona componente Header e atualiza página Home
HigoJhon Mar 26, 2024
06cbbc6
Merge branch 'APP-DEV' of github.com:JuliaV05/dev-na-pratica-01 into …
HigoJhon Mar 26, 2024
606d513
Atualizações de estilo e funcionalidade na página inicial e no cabeçalho
HigoJhon Mar 26, 2024
57a5f3c
Merge pull request #5 from JuliaV05/higojhon-app
HigoJhon Mar 26, 2024
3a14c05
Iniciando Search
MauricioPassosF Mar 27, 2024
1d5d690
Iniciando Search
MauricioPassosF Mar 27, 2024
395cc83
Merge branch 'APP-DEV' into mauricio-app
MauricioPassosF Mar 27, 2024
14d3148
Estilização inicial e filtro alterando estado
MauricioPassosF Mar 27, 2024
eb988ab
Filtro funcionando
MauricioPassosF Mar 27, 2024
9a072ab
Atualizações de estilo e correções de layout***
HigoJhon Mar 27, 2024
4fcf1cc
Merge pull request #7 from JuliaV05/higojhon-app
HigoJhon Mar 27, 2024
2a0bec2
Merge branch 'APP-DEV' into mauricio-app
MauricioPassosF Mar 27, 2024
734b4a5
Merge pull request #6 from JuliaV05/mauricio-app
MauricioPassosF Mar 27, 2024
362686c
Atualizações de estilos e adição de componente de pesquisa
HigoJhon Mar 27, 2024
8c81116
Merge branch 'APP-DEV' into higojhon-app
HigoJhon Mar 27, 2024
e7651cc
Merge pull request #8 from JuliaV05/higojhon-app
HigoJhon Mar 27, 2024
7fbf64b
Criação do destaque e modificações nos estilos da barra de filtros
MauricioPassosF Apr 1, 2024
2f7e47d
Merge branch 'APP-DEV' into mauricio-app
MauricioPassosF Apr 1, 2024
0a41560
Merge pull request #9 from JuliaV05/mauricio-app
MauricioPassosF Apr 1, 2024
be5b009
Adiciona componente Info e estilos relacionados
HigoJhon Apr 2, 2024
5e8d298
Merge branch 'higojhon-app' of github.com:JuliaV05/dev-na-pratica-01 …
HigoJhon Apr 2, 2024
316b1c2
Merge branch 'APP-DEV' into higojhon-app
HigoJhon Apr 2, 2024
7d5352a
Merge pull request #10 from JuliaV05/higojhon-app
HigoJhon Apr 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions app/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'airbnb',
'airbnb-typescript',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
parserOptions: {
project:'tsconfig.eslint.json',
tsconfigRootDir: './app',
sourceType: 'module'
},
ignorePatterns: ['dist', '.eslintrc.cjs',"**/setupTests.ts", "**/vite.config.ts"],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
24 changes: 24 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
30 changes: 30 additions & 0 deletions app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh

## Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

- Configure the top-level `parserOptions` property like this:

```js
export default {
// other rules...
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
}
```

- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
13 changes: 13 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading