aboutsummaryrefslogtreecommitdiff
path: root/src/ToDo-UI/NewToDo.jsx (unfollow)
Commit message (Collapse)AuthorLines
2023-05-29Adding new to dos is now synchronized with database.Adrián Oliva-16/+12
Changed the `refreshToDos` to also refresh the last index used.
2023-05-28Changed date format.Adrián Oliva-3/+9
On the user end it displays in a human readable way. On the database it is saved in ISO format. A lot of changes had to be made to control it.
2023-05-27New to do now communicates to API.Adrián Oliva-0/+9
WE'RE DOING IT!!!!
2023-05-27"Done" can now only be changed on table.Adrián Oliva-15/+1
Not on "edit to do" or "new to do".
2023-05-21First attempt at filtering to do's.Adrián Oliva-0/+2
We have a separate list from the original `todos_list`. It saves all currently filtered to do's for the listing to be as easy as possible.
2023-05-21Heavy refactoring.Adrián Oliva-0/+175
Broke `ToDo.jsx` into two separate files. Broke each function into simpler functions. Hope this makes the whole project more readable.
2023-05-17Redux used to add ToDosAdrián Oliva-126/+0
WE MADE IT!! I don't know how, but it is functional. :'3
2023-05-17Modal interface for new To Do.Adrián Oliva-0/+126
Hardest one yet. I don't know how I did it, but I used the `bootstrap-datepicker` plugin for selecting the Due Date. (https://github.com/uxsolutions/bootstrap-datepicker)