It is the third part of the React Todo App with API.
Take your code implemented for Add and Delete and implement the ability to toggle and rename todos.
Here is the working example
Toggle the completed
status on TodoStatus
change:
- covered the todo with a loader overlay while wating for API response;
- the status should be changed on success;
- show the
Unable to update a todo
notification in case of API error.
Add the ability to toggle the completed status of all the todos with the toggleAll
checkbox:
toggleAll
button should haveactive
class only if all the todos are completed;toggleAll
click changes its status to the oppsite one, and set it to all the todos;- it should work the same as several individual updates of the todos which statuses were actually changed;
- do send requests for the todos that were not changed;
Implement the ability to rename a todo title on double click:
- show the
TodoTitleField
instead of theTodoTitle
andTodoDeleteButton
; - saves changes on the form submit (just press
Enter
); - save changes when the field loses focus (
onBlur
); - if new title is the same as the old one just cancel editing;
- cancel editing on
Ecs
keykeydown
; - if the new title is empty delete the todo the same way the
x
button does it; - if the title was changed show the loader while waiting for the API response;
- update the todo title on success;
- show
Unable to update a todo
in case of API error - or the deletion error message if we tried to delete the todo;
- Implement a solution following the React task guideline.
- Use the React TypeScript cheat sheet.
- Open one more terminal and run tests with
npm test
to ensure your solution is correct. - Replace
<your_account>
with your Github username in the DEMO LINK and add it to the PR description.