Venusjason / React-Todo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React-Todo

  • At this point you have become familiar with the DOM and have built out User Interfaces using HTML and CSS and some JavaScript using custom components. And you've even had some practice working with React at a basic level. Now we're going to start adding some functionality to that work-flow. It's one thing to be able to build UI components using react, but what about the interactivity of those components?

Initializing the project.

  • Fork and clone this project and cd into your cloned version.
  • yarn install will pull in all the node_modules you need.
  • yarn start will start a development server on your http://localhost:3000.
    • If yarn asks you to select different port with some error message, just select Y and it will pull it up on port 3001. This simply means you have a development server up and running on that port already.

Instructions

  • Your job is to write the components to complete the Todo List application.
  • Your todo list should be fully functional and you should design it however you'd like. Feel free to get creative here. I have supplied a gif for you to see what the MVP functionality is required to look like over the course of the two days.

Todo App MVP

  • Your todo data should be an array of objects that look a lot like this:
[
  {
    task: 'Organize Garage',
    id: 1528817077286,
    completed: false
  },
  {
    task: 'Bake Cookies',
    id: 1528817084358,
    completed: false
  }
];
  • The task field is the todo title that will be shown to the user.
  • The completed field should default to false and will be the field that we toggle when we complete a todo.
  • The id field is a unique Time Stamp that will be assigned by Date.now().

Day 1 Challenges

  • Don't focus on styling yet. We want you to worry about function over form today.
  • Your todo list should display a list of todos, an input field, a submit button, and a clear all button.
  • Be sure to use the given files for building out these components.
  • <App /> will hold all the data needed for this project. It will also be the container for your Todo Components.
    • All of your application data will be stored here on <App />.
    • All of your handler functions should live here on <App />.
  • <TodoList /> receives your Todos array and iterates over the list generating a new <Todo /> for each element in the array.
  • <Todo /> is a component that takes in the todo data and displays the task to the screen.
  • <TodoForm> will hold your input field and your Add Todo and Clear Completed buttons.
    • Your input field should take in user input, and allow a user to press Enter or click on the Submit Button to add a todo to your list.
    • Once a todo is submitted, the Todo List should re-render and show the added todo.

Day 2 Challenges

  • Add the functionality to toggle your todo's completed flag from false to true.
    • Once a todo is completed, be sure to demonstrate to the user that the todo is completed by adding a line-through style property if the completed flag is true.
  • Add the ability to remove any todos that you have completed. .filter will be your best friend here. When a user clicks on the Clear Completed button call your handler function that will filter out any todos that have the completed flag toggled to true.
  • Now is the time to style Take your time to make this an app that you can be proud of.

Stretch Problems

  • Persist your data in window.localStorage() hint: you may have to pass your data to a stringifier to get it to live inside the localStorage() of the browser. This will cause it to persist past the page refresh.

  • Search Functionality Add a input bar that allows you to search through your tasks and only show the ones that match the search input.

  • Hosting Create a Netlify Account and follow the tutorial on how to host your shiny new todo app on the world wide web.

About


Languages

Language:HTML 69.7%Language:JavaScript 30.3%