Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2023-05-28 | Little bug on last index. | Adrián Oliva | -2/+34 | |
Because the Front End wasn't tracking the deleted items, the indexes between the database and the front end were not matching. | ||||
2023-05-28 | Changed date format. | Adrián Oliva | -9/+51 | |
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-27 | Can now set a to do as done or undone. | Adrián Oliva | -3/+40 | |
2023-05-27 | Delete a specific to do with API. | Adrián Oliva | -3/+18 | |
2023-05-27 | Can now edit to dos on Back End. | Adrián Oliva | -0/+27 | |
2023-05-27 | New to do now communicates to API. | Adrián Oliva | -1/+27 | |
WE'RE DOING IT!!!! | ||||
2023-05-27 | If due_date is not set, don't use `substring`. | Adrián Oliva | -1/+4 | |
2023-05-27 | "Done" can now only be changed on table. | Adrián Oliva | -36/+2 | |
Not on "edit to do" or "new to do". | ||||
2023-05-27 | List of to dos is initialized on database. | Adrián Oliva | -4/+55 | |
At the beginning, the app will fetch the to dos from the back end and write all of them on Redux. | ||||
2023-05-27 | Added the "v1" to the URL. | Adrián Oliva | -1/+1 | |
2023-05-27 | Can select time on due_date. | Adrián Oliva | -1/+1 | |
2023-05-26 | Using Axios to send HTTP requests. | Adrián Oliva | -0/+23 | |
Defining API and method GET to retrieve all to dos. | ||||
2023-05-21 | First attempt at filtering to do's. | Adrián Oliva | -19/+109 | |
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-21 | Heavy refactoring. | Adrián Oliva | -478/+497 | |
Broke `ToDo.jsx` into two separate files. Broke each function into simpler functions. Hope this makes the whole project more readable. | ||||
2023-05-20 | Renaming UI things. | Adrián Oliva | -3/+3 | |
2023-05-20 | `Edit` button instead of `Add`. | Adrián Oliva | -1/+1 | |
When editing a to do, use an `Edit` button instead. | ||||
2023-05-19 | Finished details on sorting. | Adrián Oliva | -41/+70 | |
Now it sorts after events like "adding new to do" and "edit a to do." | ||||
2023-05-19 | First attempt at sorting to do entries. | Adrián Oliva | -3/+116 | |
2023-05-19 | The date selection was MUCH easier than I thought... | Adrián Oliva | -18/+16 | |
I'm mad. :C | ||||
2023-05-19 | Apparently `onClick` works better | Adrián Oliva | -2/+2 | |
than `onChange`. If last time was checked, after resetting the form it still thought it was checked. | ||||
2023-05-19 | Deleted most of aria labels. | Adrián Oliva | -11/+4 | |
2023-05-19 | Renamed multiple HTML elements. | Adrián Oliva | -21/+16 | |
ID collision problem. | ||||
2023-05-19 | Edit button almost done. | Adrián Oliva | -56/+245 | |
Noticed some bugs. Will patch on later commits. | ||||
2023-05-18 | Added remove action. | Adrián Oliva | -2/+11 | |
2023-05-18 | Now we can change the done state. | Adrián Oliva | -2/+20 | |
2023-05-17 | Preparing branch to merge. | Adrián Oliva | -3/+3 | |
Merge to main. | ||||
2023-05-17 | Displayed correct index. | Adrián Oliva | -2/+8 | |
Index was hard-coded. Now it retrieves current last index used. | ||||
2023-05-17 | Moved `ToDo.jsx` file into main folder. | Adrián Oliva | -2/+2 | |
2023-05-17 | Broken big function into smaller functions. | Adrián Oliva | -57/+64 | |
2023-05-17 | Moved `ToDo.jsx` to UI folder. | Adrián Oliva | -2/+2 | |
2023-05-17 | Redux used to add ToDos | Adrián Oliva | -262/+274 | |
WE MADE IT!! I don't know how, but it is functional. :'3 | ||||
2023-05-17 | Modal interface for new To Do. | Adrián Oliva | -0/+128 | |
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-17 | A simple list for the To Do's. | Adrián Oliva | -0/+71 | |
Cannot edit nor remove info. Plain interfaceeeee. | ||||
2023-05-17 | Search section in a bare bones state. | Adrián Oliva | -0/+58 | |
Just plain UI interface. No functionality. | ||||
2023-05-17 | Added bootstrap library. | Adrián Oliva | -66/+16 | |
We now have better looking assets! | ||||
2023-05-17 | Modified to be minimal. | Adrián Oliva | -294/+29 | |