aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx (follow)
Commit message (Collapse)AuthorAgeLines
* IT NOW HAS PAGING.Adrián Oliva2023-05-29-0/+2
|
* Search working with database.Adrián Oliva2023-05-29-2/+0
|
* Adding new to dos is now synchronized with database.Adrián Oliva2023-05-29-10/+0
| | | | Changed the `refreshToDos` to also refresh the last index used.
* Pagination now works on to do's list.Adrián Oliva2023-05-29-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.
* First instance for pagination.Adrián Oliva2023-05-29-7/+30
| | | | | Sorting and Filtering now WON'T be computed on Front End, but on Back End instead.
* Little bug on last index.Adrián Oliva2023-05-28-2/+15
| | | | | Because the Front End wasn't tracking the deleted items, the indexes between the database and the front end were not matching.
* Changed date format.Adrián Oliva2023-05-28-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.
* If due_date is not set, don't use `substring`.Adrián Oliva2023-05-27-1/+4
|
* List of to dos is initialized on database.Adrián Oliva2023-05-27-0/+25
| | | | | At the beginning, the app will fetch the to dos from the back end and write all of them on Redux.
* First attempt at filtering to do's.Adrián Oliva2023-05-21-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.
* Heavy refactoring.Adrián Oliva2023-05-21-2/+2
| | | | | Broke `ToDo.jsx` into two separate files. Broke each function into simpler functions. Hope this makes the whole project more readable.
* Preparing branch to merge.Adrián Oliva2023-05-17-2/+0
| | | | Merge to main.
* Moved `ToDo.jsx` file into main folder.Adrián Oliva2023-05-17-1/+1
|
* Broken big function into smaller functions.Adrián Oliva2023-05-17-2/+3
|
* Moved `ToDo.jsx` to UI folder.Adrián Oliva2023-05-17-1/+1
|
* Redux used to add ToDosAdrián Oliva2023-05-17-6/+3
| | | | WE MADE IT!! I don't know how, but it is functional. :'3
* Modal interface for new To Do.Adrián Oliva2023-05-17-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)
* A simple list for the To Do's.Adrián Oliva2023-05-17-0/+2
| | | | Cannot edit nor remove info. Plain interfaceeeee.
* Search section in a bare bones state.Adrián Oliva2023-05-17-0/+2
| | | | Just plain UI interface. No functionality.
* Added bootstrap library.Adrián Oliva2023-05-17-6/+5
| | | | We now have better looking assets!
* Modified to be minimal.Adrián Oliva2023-05-17-48/+3
|
* Start point.Adrián Oliva2023-05-16-0/+58
Visit https://github.com/nvh95/vite-react-template-redux to see original template.