-
Notifications
You must be signed in to change notification settings - Fork 8
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
Create projects route and add list each project in a card #41
Conversation
@brauliorivas agregué unos cambios. Me puedes llamar por wsp para aclarar cualquier cosa. Cuando estés listo puedes poner "Ready" la PR. |
f95d53d
to
9640e41
Compare
Buen trabajo 👍 |
import Tag from "$lib/components/Tag.svelte"; | ||
import MoreButton from "$lib/components/MoreButton.svelte"; | ||
|
||
type Props = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yo prefiero usar interface en lugar de type pero no se cual sea la convención que se haya establecido (o establecerá) en el proyecto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Las interfaces son víctima de cosas raras como Declaration Merging que las hacen menos estrictas que los Types. Además los types tienen capacidades extras como poder declarar Unions. En general, Interface es más OOP y Types es más functional style.
@@ -0,0 +1,13 @@ | |||
<script lang="ts"> | |||
type Props = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mismo asunto que con el componente MoreButton
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Esta Tag se usa en otros lados, no solo en la ProjectCard.
Revisa los comentarios que dejé sobre la creación de componentes. En mi experiencia la creación de componentes que no son realmente reutilizables en muchas partes del proyecto genera problemas de mantenibilidad a largo plazo. Creo que deberíamos preocuparnos porque todo en la carpeta |
En el Figma, la ProjectCard sí es reutilizable porque se usa en /projects y en /events, por lo tanto si justifica dejarla en la carpeta components. El botón de "ver más" sí debería estar dentro de ProjectCard. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK!
No description provided.