Code Monkey home page Code Monkey logo

28-todo-app's Introduction

401 JS -- Lab 28 Todo

Submission Instructions

  • Work in a fork of this repository
  • Work in a branch on your fork
  • Write all of your code in a directory named lab- + <your name> e.g. lab-duncan
  • Submit a pull request to this repository
  • Submit a link to your pull request on canvas
  • Submit a question, observation, and how long you spent on canvas

Configuration

  • README.md -- with documentation about your lab
  • .babelrc -- with all dependencies and dev-dependencies
  • .eslintrc.json -- with the class .eslintrc.json file
  • .gitignore -- with a robust gitignore
  • .eslintignore -- with the class .eslintignore
  • package.json -- with all dependencies and dev-dependencies
  • webpack.config.js -- with webpack config
  • src/ -- containing the frontend code
  • src/__test__ -- containing the frontend tests
  • src/component -- containing react components
  • src/main.js -- containing the entire app component
  • src/style -- containing your sass
  • src/style/main.scss -- for importing and including reset and base

Feature Tasks

create the following components and structure them according to the following diagram.

App
  Landing
  Dashboard
    NoteForm
    NoteList
      Noteitem

App

  • The app component should manage the frontend routes and have a navbar
  • the / route should display the Landing component
  • the /dashboard route should display the Dashboard component

Landing

  • The landing component should display a brief description of the to do app

Dashboard Component

  • The dashboard component should manage the entire application state.
  • The state should contain a notes array
  • It should have a bound addNote(note) method that adds a note to state.notes
    • each note that is added should have the following data
      • id: always should contain the result of uuid.v1()
      • editing: false by default
      • completed: false by default
      • content: user provided content
      • title: user provided title
  • It should have a bound removeNote(note) method that removes a note from state.notes based on its id

NoteForm Component

  • onComplete the NoteForm should add a note to the application state

NoteList Component

  • should display an unordered list of NoteItem components

NoteItem

  • should display the notes content and title
  • should display a delete button
    • onClick the note should be removed from the application state

Test

  • Test Dashboard
    • Test the initial state
  • Test NoteForm
    • Test the initial state

Documentation

Write a description of the project in your README.md

28-todo-app's People

Contributors

jjkusowski avatar izzybaer avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.