Setup booth group mvc
This commit is contained in:
parent
e3f175d55a
commit
64cb6ec456
7 changed files with 99 additions and 4 deletions
56
app/controllers/admin/booth_groups_controller.rb
Normal file
56
app/controllers/admin/booth_groups_controller.rb
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Admin
|
||||
class BoothGroupsController < Admin::BaseController
|
||||
load_and_authorize_resource :conference, find_by: :short_title
|
||||
load_and_authorize_resource :program, through: :conference, singleton: true
|
||||
load_and_authorize_resource :booth_group, through: :program
|
||||
|
||||
def index; end
|
||||
|
||||
def edit; end
|
||||
|
||||
def new
|
||||
@booth_group = @conference.program.booth_groups.new(color: @conference.next_color_for_collection(:booth_groups))
|
||||
end
|
||||
|
||||
def create
|
||||
@booth_group = @conference.program.booth_groups.new(booth_group_params)
|
||||
if @booth_group.save
|
||||
redirect_to admin_conference_booths_path(conference_id: @conference.short_title),
|
||||
notice: "#{(t 'booth').capitalize} group successfully created."
|
||||
else
|
||||
flash.now[:error] = "Creating #{t 'booth'} group failed: #{@booth_group.errors.full_messages.join('. ')}."
|
||||
render :new
|
||||
end
|
||||
end
|
||||
|
||||
def update
|
||||
if @booth_group.update_attributes(booth_group_params)
|
||||
redirect_to admin_conference_booths_path(conference_id: @conference.short_title),
|
||||
notice: "#{(t 'booth').capitalize} group successfully updated."
|
||||
else
|
||||
flash.now[:error] = "Update #{t 'booth'} group failed: #{@booth_group.errors.full_messages.join('. ')}."
|
||||
render :edit
|
||||
end
|
||||
end
|
||||
|
||||
def destroy
|
||||
if @booth_group.destroy
|
||||
redirect_to admin_conference_booths_path(conference_id: @conference.short_title),
|
||||
notice: "#{(t 'booth').capitalize} group successfully deleted."
|
||||
else
|
||||
redirect_to admin_conference_booths_path(conference_id: @conference.short_title),
|
||||
error: "Destroying #{t 'booth'} group failed! "\
|
||||
"#{@booth_group.errors.full_messages.join('. ')}."
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def booth_group_params
|
||||
params.require(:booth_group).permit(:name, :color, :conference_id,
|
||||
:created_at, :updated_at, booth_ids: [])
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
@ -7,6 +7,7 @@ class Booth < ApplicationRecord
|
|||
attr_accessor :invite_responsible
|
||||
|
||||
belongs_to :conference
|
||||
belongs_to :booth_group
|
||||
has_many :booth_requests, dependent: :destroy
|
||||
has_many :users, through: :booth_requests
|
||||
|
||||
|
|
|
|||
23
app/models/booth_group.rb
Normal file
23
app/models/booth_group.rb
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class BoothGroup < ApplicationRecord
|
||||
belongs_to :program, touch: true
|
||||
has_paper_trail ignore: [:updated_at], meta: { conference_id: :conference_id }
|
||||
has_many :booths, dependent: :restrict_with_error
|
||||
|
||||
accepts_nested_attributes_for :booths
|
||||
|
||||
validates :name, presence: true
|
||||
validates :color, format: /\A#[0-9A-F]{6}\z/
|
||||
before_validation :capitalize_color
|
||||
|
||||
private
|
||||
|
||||
def capitalize_color
|
||||
self.color = color.upcase if color.present?
|
||||
end
|
||||
|
||||
def conference_id
|
||||
program.conference_id
|
||||
end
|
||||
end
|
||||
|
|
@ -52,6 +52,7 @@ class Conference < ApplicationRecord
|
|||
through: :program,
|
||||
source: :events
|
||||
has_many :event_types, through: :program
|
||||
has_many :booth_groups, through: :program
|
||||
|
||||
has_many :surveys, as: :surveyable, dependent: :destroy do
|
||||
def for_registration
|
||||
|
|
@ -683,9 +684,10 @@ class Conference < ApplicationRecord
|
|||
# we have different start indices for every collection to generate a
|
||||
# different color for every of them.
|
||||
start_index = {
|
||||
tracks: (program.tracks.count + 1),
|
||||
levels: (program.difficulty_levels.count + 51),
|
||||
types: (program.event_types.count + 101)
|
||||
tracks: (program.tracks.count + 1),
|
||||
levels: (program.difficulty_levels.count + 51),
|
||||
types: (program.event_types.count + 101),
|
||||
booth_groups: (program.booth_groups.count + 151)
|
||||
}
|
||||
next_color(start_index[collection])
|
||||
end
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ class Program < ApplicationRecord
|
|||
|
||||
has_many :cfps, dependent: :destroy
|
||||
has_many :event_types, dependent: :destroy
|
||||
has_many :booth_groups, dependent: :destroy
|
||||
has_many :tracks, dependent: :destroy
|
||||
has_many :difficulty_levels, dependent: :destroy
|
||||
has_many :schedules, dependent: :destroy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue