Skip to content

Commit

Permalink
Changes prior to class
Browse files Browse the repository at this point in the history
  • Loading branch information
fdodino committed Oct 30, 2024
1 parent 0c0fdab commit 2dcef59
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,20 @@ export const MailsSummary = ({ mails }: { mails: Mail[]}) => {
... armamos los badges ...
```
Para calcular las cantidades, recibimos como _props_ únicamente los mails, por eso utilizamos la sintaxis de deconstrucción de objetos:
Un detalle que no tiene tanto que ver con React sino con css es que para visualizar los badges cerca de nuestros íconos utilizamos el `position: absolute` y un margen negativo, además de utilizar un z-index negativo (para ubicarse por debajo de cada ícono y evitar así taparlo):
```css
margin: -0.9rem;
position: absolute;
width: 1.65rem;
height: 1.65rem;
padding: 0.2rem;
z-index: -1;
```
## MailsGrid
Este componente funcional muestra la lista de mails con una tabla. Para obtener los _props_ utilizamos la sintaxis de deconstrucción de objetos:
```js
const ave = { nombre: 'pepita', edad: 20 }
Expand All @@ -68,9 +81,7 @@ nombre // 'pepita'
edad // 20
```
## MailsGrid
Este componente funcional muestra la lista de mails con un DataTable:
Ahora sí, veamos nuestro componente:
```tsx
export const MailsGrid = ({ mails, alLeerMail }: { mails: Mail[], alLeerMail: (mail: Mail) => void}) => {
Expand Down
4 changes: 2 additions & 2 deletions src/components/MailsSummary.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
}

.badge-numero {
background-color: rgb(189, 241, 178);
background-color: rgb(184, 252, 204);
border-radius: 20px;
font-weight: bold;
margin: -1rem;
margin: -0.9rem;
position: absolute;
width: 1.65rem;
height: 1.65rem;
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default defineConfig({
environment: 'jsdom',
coverage: {
reporter: ['lcov', 'json', 'html', 'json-summary'],
exclude: [ './src/main.tsx', '**/*.cjs', '**/*.d.ts', 'vite.config.ts' ],
},
}
})

0 comments on commit 2dcef59

Please sign in to comment.