Giter Site home page Giter Site logo

quiz-app-starter's Introduction

Thinkful - Quiz App OOP Starter with Webpack

Installation

Simply run npm install after cloning the repo and npm start to kickoff the dev server

Instructions

Follow the instructions from the curriculum to build out the necessary classes for your OOP Quiz application.

Superclass: Model

By extending your class with Model, you declare all its instantiations to be bindable to one or more "views" (instances of Renderer). All models have the public method update(), which should be called to confirm any changes to your model's properties and initiate a new render cycle.

Superclass: Renderer

Classes that extend Renderer define a template and reactive behavior for all instances. A renderer instance is constructed with the following required parameters:

  1. model - a model instance
  2. el - DOM selector string for a permanent DOM element

Renderer instances have the following reserved public method names that can be defined to provide special functionality:

template() - REQUIRED

This function must return an HTML string. The template will typically use this.model to guide varied output.

getEvents()

This function must return an object. Each property defines the event listener bindings, where the key is a DOM event name and delegate DOM selector (space separated), and the value is the name of an event handler function existing on the same class. For example:

getEvents() {
  return {
    'click .add-item': 'handleAddItem'
  }
}

The definition will add a click listener to all children elements with the add-item class, and invoke the handleAddItem() function defined on the same class.

render()

By default, the return value of template() will be placed in the root element on every model update. You can override this method if you want to finetune for the rendering cycle.

quiz-app-starter's People

Contributors

andreacardybailey avatar mrskinny avatar

Watchers

 avatar  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.