-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add edit and delete options for Time Entries #5
base: stage-0
Are you sure you want to change the base?
Conversation
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 muy bien!
Los comentarios son de estilos mas que nada.
Se nota que le agarraste la mano 😄
const { showModal } = this.state; | ||
const toggleShowModal = ::this.toggleShowModal | ||
const deleteTimeEntry = ::this.deleteTimeEntry | ||
const onChange = (dateString, attribute) => { |
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.
Porque definir esto como una const y no un method de la class?
@@ -45,6 +45,38 @@ const ACTION_HANDLERS = { | |||
}; | |||
}, | |||
|
|||
'ALTER_TIME_ENTRY': (state, action) => { | |||
const timeEntry = action.timeEntry; | |||
const timeEntryIndex = state.timeEntries |
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.
Indentacion muy rara. que tal:
const timeEntryIndex = state.timeEntries.findIndex((elem) => (
elem.id == timeEntry.id
));
Diego, fueron los cambios. Te comento que ahora me voy a tomar una pausa con esto. Cuando vuelva, pienso ver primero el tema de agregarle testing y después corregir algunos bugs que vi. Cuando todo eso este, voy a seguir con las features extendidas de la wiki. Me gustaría eventualmente dejar este proyectito con todas las features y el código bien prolijo. Muchas gracias de nuevo por tu feedback! |
@diegomura
Bueno Diego, te dejo una primera version de lo que seria edit y delete de las Time Entries. Tiene bugs y el codigo se puede emprolijar, pero quise pushear ahora por si no me daba el tiempo de terminarlo. Cualquier cosa, con los cambios que hay aca seria la entrega del proyecto, pero espero tener algunos minutos para poder subir algun cambio mas.
Saludos!