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

tesoro-literario #320

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
83 changes: 0 additions & 83 deletions pruebas/01-reading-list/README.md

This file was deleted.

63 changes: 63 additions & 0 deletions pruebas/01-reading-list/lautarolombardi/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["standard-with-typescript", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"indent": ["error", 2],
"import/order": [
"warn",
{
"groups": [
"type",
"builtin",
"object",
"external",
"internal",
"parent",
"sibling",
"index"
],
"pathGroups": [
{
"pattern": "~/**",
"group": "external",
"position": "after"
}
],
"newlines-between": "always"
}
],
"padding-line-between-statements": [
"warn",
{ "blankLine": "always", "prev": "*", "next": ["return", "export"] },
{ "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" },
{
"blankLine": "any",
"prev": ["const", "let", "var"],
"next": ["const", "let", "var"]
}
],
"@typescript-eslint/explicit-function-return-type": "off",
"no-console": "warn",
"react/prop-types": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"react/self-closing-comp": "warn",
"react/jsx-sort-props": [
"warn",
{
"callbacksLast": true,
"shorthandFirst": true,
"noSortAlphabetically": false,
"reservedFirst": true
}
]
}
}
36 changes: 36 additions & 0 deletions pruebas/01-reading-list/lautarolombardi/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# 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?
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
42 changes: 42 additions & 0 deletions pruebas/01-reading-list/lautarolombardi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Tesoro Literario

## Descripción

Esta aplicación web de Lista de Lectura, construida con React y Vite, está diseñada para proporcionarte una experiencia organizada y personalizada. Con un enfoque en la eficiencia, la aplicación incluye las siguientes funcionalidades destacadas:

## Funcionalidades

### 1. Filtrar por Género
Explora tus libros de manera eficiente filtrando por género. Esta función te permite personalizar tu lista de lectura según tus preferencias, facilitando la búsqueda de libros que se ajusten a tus intereses específicos.

### 2. Filtrar por Cantidad de Páginas
Optimiza tu experiencia de lectura al filtrar los libros según la cantidad de páginas. Ya sea que prefieras lecturas cortas o novelas extensas, esta función te ayuda a encontrar libros que se adapten a la cantidad de tiempo que deseas dedicar.

### 3. Agregar Libros a la Lista de Lectura
Elige tus libros favoritos y agrégalos a tu lista de lectura para leerlos cuando prefieras.

## Tecnologías

- React + Vite
- Tailwind CSS
- Zustand
- React icons

## Instalación

1. git clone https://github.com/lautarolombardi/tesoro-literario.git
2. cd tesoro-literario/pruebas/01-reading-list/lautarolombardi
3. npm install

## Uso

- npm run dev

## Capturas de pantalla

![Screenshot_3](https://github.com/lautarolombardi/tesoro-literario/assets/79491042/4042550f-67d8-4c70-b382-011acc2e4f83)

## Contacto

Si tienes alguna pregunta o sugerencia, no dudes en contactarme a través de mi perfil de GitHub.

13 changes: 13 additions & 0 deletions pruebas/01-reading-list/lautarolombardi/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="es">
<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>Tesoro Literario</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading