aboutsummaryrefslogtreecommitdiff
path: root/src/ToDo-UI/ListToDo.jsx (unfollow)
Commit message (Collapse)AuthorLines
2023-05-29Pagination now works on to do's list.Adrián Oliva-11/+7
Only 10 to dos will be shown at a time. You can sort by priority or due date and it should work on all of our to dos. Edit and delete also works.
2023-05-28Changed date format.Adrián Oliva-4/+35
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-27Can now set a to do as done or undone.Adrián Oliva-3/+14
2023-05-27Delete a specific to do with API.Adrián Oliva-3/+5
2023-05-27Can now edit to dos on Back End.Adrián Oliva-0/+10
2023-05-27"Done" can now only be changed on table.Adrián Oliva-19/+0
Not on "edit to do" or "new to do".
2023-05-27Can select time on due_date.Adrián Oliva-1/+1
2023-05-21First attempt at filtering to do's.Adrián Oliva-4/+11
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/+320
Broke `ToDo.jsx` into two separate files. Broke each function into simpler functions. Hope this makes the whole project more readable.