aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx (unfollow)
Commit message (Collapse)AuthorLines
2023-05-29New Average time added.v1.0.0devAdrián Oliva-0/+2
It displays the time in average of completing to dos.
2023-05-29IT NOW HAS PAGING.Adrián Oliva-0/+2
2023-05-29Search working with database.Adrián Oliva-2/+0
2023-05-29Adding new to dos is now synchronized with database.Adrián Oliva-10/+0
Changed the `refreshToDos` to also refresh the last index used.
2023-05-29Pagination now works on to do's list.Adrián Oliva-49/+8
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-29First instance for pagination.Adrián Oliva-7/+30
Sorting and Filtering now WON'T be computed on Front End, but on Back End instead.
2023-05-28Little bug on last index.Adrián Oliva-2/+15
Because the Front End wasn't tracking the deleted items, the indexes between the database and the front end were not matching.
2023-05-28Changed date format.Adrián Oliva-2/+7
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-27If due_date is not set, don't use `substring`.Adrián Oliva-1/+4
2023-05-27List of to dos is initialized on database.Adrián Oliva-0/+25
At the beginning, the app will fetch the to dos from the back end and write all of them on Redux.
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-2/+2
Broke `ToDo.jsx` into two separate files. Broke each function into simpler functions. Hope this makes the whole project more readable.
2023-05-17Preparing branch to merge.Adrián Oliva-2/+0
Merge to main.
2023-05-17Moved `ToDo.jsx` file into main folder.Adrián Oliva-1/+1
2023-05-17Broken big function into smaller functions.Adrián Oliva-2/+3
2023-05-17Moved `ToDo.jsx` to UI folder.Adrián Oliva-1/+1
2023-05-17Redux used to add ToDosAdrián Oliva-6/+3
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/+2
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)
2023-05-17A simple list for the To Do's.Adrián Oliva-0/+2
Cannot edit nor remove info. Plain interfaceeeee.
2023-05-17Search section in a bare bones state.Adrián Oliva-0/+2
Just plain UI interface. No functionality.
2023-05-17Added bootstrap library.Adrián Oliva-6/+5
We now have better looking assets!
2023-05-17Modified to be minimal.Adrián Oliva-48/+3