Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

UpstateRuby/behavior

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bar

  • color
  • points

Child

  • has one clip
  • has many scores
  • name
  • current_points

Score

  • belongs to child
  • points
  • date

Reward

  • name
  • cost

RewardClaim

  • belongs to child
  • name
  • cost

Data Setup

Bar.create(name: "Outstanding", points: 4, color: "pink") Bar.create(name: "Role Model", points: 3, color: "purple") Bar.create(name: "Showing Pride", points: 2, color: "blue") Bar.create(name: "Ready to Listen", points: 1, color: "green", default: true) Bar.create(name: "Think About It", points: 0, color: "yellow") Bar.create(name: "Parent's Choice", points: -1, color: "orange") Bar.create(name: "Go To Bed Early", points: -2, color: "red")

Reward.create(name: "Go to movie", cost: 5) Reward.create(name: "Stay up late", cost: 3) Reward.create(name: "Candy time", cost: 1) Reward.create(name: "Skyzone", cost: 5) Reward.create(name: "$5 towards savings", cost: 5)

View setup

#bar row

<%= button_to @clip, method: :put, params: { points: bar.points }, class:"waves-effect waves-light btn #{bar.color}", style: 'width: 100%;' do %> <%= bar.name %> <% if bar.points == @clip.points %> star <% end %> <% end %>

#claim reward

#reward modal

Claim Rewards

<%= render @rewards %>

#reward

<%= button_to reward_claims_path(reward.id), class:"waves-effect waves-light btn bar" do %> <%= reward.name %>(<%= reward.cost %>) <% end %>

layout setup <%= stylesheet_link_tag "http://fonts.googleapis.com/icon?family=Material+Icons" %> <%= stylesheet_link_tag "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css" %> <%= javascript_include_tag "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js" %>

About

Child behavior chart

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.