mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
95 lines
3.1 KiB
Ruby
95 lines
3.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module StepElements
|
|
class ChecklistsController < BaseController
|
|
include ApplicationHelper
|
|
include StepsActions
|
|
before_action :load_checklist, only: %i(update destroy duplicate move)
|
|
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 })
|
|
checklist_name_annotation(@step, checklist)
|
|
end
|
|
render_step_orderable_element(checklist)
|
|
rescue ActiveRecord::RecordInvalid
|
|
head :unprocessable_entity
|
|
end
|
|
|
|
def update
|
|
old_name = @checklist.name
|
|
ActiveRecord::Base.transaction do
|
|
@checklist.update!(checklist_params)
|
|
log_step_activity(:checklist_edited, { checklist_name: @checklist.name })
|
|
checklist_name_annotation(@step, @checklist, old_name)
|
|
end
|
|
|
|
render json: @checklist, serializer: ChecklistSerializer, user: current_user
|
|
rescue ActiveRecord::RecordInvalid
|
|
head :unprocessable_entity
|
|
end
|
|
|
|
def move
|
|
target = @protocol.steps.find_by(id: params[:target_id])
|
|
ActiveRecord::Base.transaction do
|
|
@checklist.update!(step: target)
|
|
@checklist.step_orderable_element.update!(step: target, position: target.step_orderable_elements.size)
|
|
@step.normalize_elements_position
|
|
|
|
log_step_activity(
|
|
:checklist_moved,
|
|
{
|
|
user: current_user.id,
|
|
checklist_name: @checklist.name,
|
|
step_position_original: @step.position + 1,
|
|
step_original: @step.id,
|
|
step_position_destination: target.position + 1,
|
|
step_destination: target.id
|
|
}
|
|
)
|
|
|
|
render json: @checklist, serializer: ChecklistSerializer, user: current_user
|
|
rescue ActiveRecord::RecordInvalid
|
|
render json: @checklist.errors, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
if @checklist.destroy
|
|
log_step_activity(:checklist_deleted, { checklist_name: @checklist.name })
|
|
head :ok
|
|
else
|
|
head :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def duplicate
|
|
ActiveRecord::Base.transaction do
|
|
position = @checklist.step_orderable_element.position
|
|
@step.step_orderable_elements.where('position > ?', position).order(position: :desc).each do |element|
|
|
element.update(position: element.position + 1)
|
|
end
|
|
@checklist.name += ' (1)'
|
|
new_checklist = @checklist.duplicate(@step, current_user, position + 1)
|
|
log_step_activity(:checklist_duplicated, { checklist_name: @checklist.name })
|
|
render_step_orderable_element(new_checklist)
|
|
end
|
|
rescue ActiveRecord::RecordInvalid
|
|
head :unprocessable_entity
|
|
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
|