Skip to content

ZoharLiran/JS_MVC_GroceryList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Behavior Drill Grocery List

##Learning Competencies

  • Use object literals, constructor functions and prototypical inheritance in Javascript.
  • Navigate jquery ui docs to understand how draggable and droppable work.

##Summary

It's time to work on your Object-Oriented JavaScript. In this challenge, you'll build a simple drag-and-drop grocery list application.

To successfully complete this challenge, you should be familiar with the following concepts and library features:

Objectives

Focus on writing solid OOJS in this challenge. Make sure your code isn't too tightly coupled to a particular DOM layout.

Source folder

All of the HTML and CSS has been written, you only need to add your own jQuery (and jQuery UI) flavored JavaScript.

Model Items and Lists

Your job is to figure out how to model each of the components of this application and to provide an elegant, object-oriented solution.

When you are finished, the behavior should work like this:

Notice the features in play here:

  • When an item from the Store List is dragged, the original element does not change. You could say it uses a clone.
  • The same item can be dragged to the Grocery List multiple times.
  • When an item is added to the Grocery List, the total price is updated to reflect the new changes.

As you approach this problem, you should be thinking about how to model the components as objects. What are the essential features of each object, and how do they relate to other objects? What properties does each object have? How will you connect the object model with the view layer (i.e. what is being displayed in the document)?

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published