* hook up frontend parts * complete backend, save success alert issues * fix broken existing specs * complete snackbar confirmation on page redirect * rollback success alert; but leave foundation for it in place * preserve a11y features of snackbar; complete cypress tests * test redirect after braodcast destroy
69 lines
1.7 KiB
Ruby
69 lines
1.7 KiB
Ruby
module Admin
|
|
class BroadcastsController < Admin::ApplicationController
|
|
layout "admin"
|
|
|
|
def index
|
|
@broadcasts = if params[:type_of]
|
|
Broadcast.where(type_of: params[:type_of].capitalize)
|
|
else
|
|
Broadcast.all
|
|
end.order(title: :asc)
|
|
end
|
|
|
|
def show
|
|
@broadcast = Broadcast.find(params[:id])
|
|
end
|
|
|
|
def new
|
|
@broadcast = Broadcast.new
|
|
end
|
|
|
|
def edit
|
|
@broadcast = Broadcast.find(params[:id])
|
|
end
|
|
|
|
def create
|
|
@broadcast = Broadcast.new(broadcast_params)
|
|
|
|
if @broadcast.save
|
|
flash[:success] = "Broadcast has been created!"
|
|
redirect_to admin_broadcast_path(@broadcast)
|
|
else
|
|
flash[:danger] = @broadcast.errors.full_messages.to_sentence
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def update
|
|
@broadcast = Broadcast.find(params[:id])
|
|
|
|
if @broadcast.update(broadcast_params)
|
|
flash[:success] = "Broadcast has been updated!"
|
|
redirect_to admin_broadcast_path(@broadcast)
|
|
else
|
|
flash[:danger] = @broadcast.errors.full_messages.to_sentence
|
|
render :edit
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@broadcast = Broadcast.find(params[:id])
|
|
|
|
if @broadcast.destroy
|
|
render json: { message: "Broadcast has been deleted!" }, status: :ok
|
|
else
|
|
render json: { error: "Something went wrong with deleting the broadcast." }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def broadcast_params
|
|
params.permit(:title, :processed_html, :type_of, :banner_style, :active)
|
|
end
|
|
|
|
def authorize_admin
|
|
authorize Broadcast, :access?, policy_class: InternalPolicy
|
|
end
|
|
end
|
|
end
|