diff --git a/app/controllers/tournaments_controller.rb b/app/controllers/tournaments_controller.rb index d940233..ec766f0 100644 --- a/app/controllers/tournaments_controller.rb +++ b/app/controllers/tournaments_controller.rb @@ -165,7 +165,7 @@ class TournamentsController < ApplicationController end def create_custom_weights - @custom = params[:customValue].to_s + @custom = params[:customValue].split(",") @tournament.create_pre_defined_weights(@custom) redirect_to "/tournaments/#{@tournament.id}" end diff --git a/app/models/tournament.rb b/app/models/tournament.rb index 519b0c0..b164e42 100644 --- a/app/models/tournament.rb +++ b/app/models/tournament.rb @@ -31,15 +31,11 @@ class Tournament < ActiveRecord::Base def tournament_types ["Pool to bracket","Modified 16 Man Double Elimination","Double Elimination 1-6"] end - - def create_pre_defined_weights(value) + + def create_pre_defined_weights(weight_classes) weights.destroy_all - if value == 'hs' - Weight::HS_WEIGHT_CLASSES.each do |w| - weights.create(max: w) - end - else - raise "Unspecified behavior" + weight_classes.each do |w| + weights.create(max: w) end end diff --git a/app/models/weight.rb b/app/models/weight.rb index b76fdf4..ff5343e 100644 --- a/app/models/weight.rb +++ b/app/models/weight.rb @@ -7,7 +7,11 @@ class Weight < ActiveRecord::Base validates :max, presence: true - HS_WEIGHT_CLASSES = [106,113,120,126,132,138,145,152,160,170,182,195,220,285] + # passed via layouts/_tournament-navbar.html.erb + # tournaments controller does a .split(',') on this string and creates an array via commas + # tournament model runs the code via method create_pre_defined_weights + HS_WEIGHT_CLASSES = "106,113,120,126,132,138,145,152,160,170,182,195,220,285" + HS_GIRLS_WEIGHT_CLASSES = "101,106,111,116,121,126,131,137,143,150,160,170,189,235" before_destroy do self.tournament.destroy_all_matches diff --git a/app/views/layouts/_tournament-navbar.html.erb b/app/views/layouts/_tournament-navbar.html.erb index 5f1ffad..25ba253 100644 --- a/app/views/layouts/_tournament-navbar.html.erb +++ b/app/views/layouts/_tournament-navbar.html.erb @@ -42,7 +42,8 @@ <% end %> <% end %>