mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module StepElements
|
|
class ChecklistsController < BaseController
|
|
before_action :load_checklist, only: %i(update destroy)
|
|
|
|
def create
|
|
checklist = @step.checklists.build(
|
|
name: t('protocols.steps.checklist.default_name', position: @step.checklists.length + 1)
|
|
)
|
|
ActiveRecord::Base.transaction do
|
|
create_in_step!(@step, checklist)
|
|
log_step_activity(:checklist_added, { checklist_name: checklist.name })
|
|
end
|
|
render_step_orderable_element(checklist)
|
|
rescue ActiveRecord::RecordInvalid
|
|
head :unprocessable_entity
|
|
end
|
|
|
|
def update
|
|
ActiveRecord::Base.transaction do
|
|
@checklist.update!(checklist_params)
|
|
log_step_activity(:checklist_edited, { checklist_name: @checklist.name })
|
|
end
|
|
|
|
render json: @checklist, serializer: ChecklistSerializer, user: current_user
|
|
rescue ActiveRecord::RecordInvalid
|
|
head :unprocessable_entity
|
|
end
|
|
|
|
def destroy
|
|
if @checklist.destroy
|
|
log_step_activity(:checklist_deleted, { checklist_name: @checklist.name })
|
|
head :ok
|
|
else
|
|
head :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def checklist_params
|
|
params.permit(:name, :text)
|
|
end
|
|
|
|
def load_checklist
|
|
@checklist = @step.checklists.find_by(id: params[:id])
|
|
return render_404 unless @checklist
|
|
end
|
|
end
|
|
end
|