mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 04:32:16 +08:00
Merge pull request #2916 from okriuchykhin/ok_SCI_5139
Add activities for step completion and checklist toggling through API [SCI-5139]
This commit is contained in:
commit
840b84aa9a
2 changed files with 51 additions and 0 deletions
|
@ -3,6 +3,8 @@
|
||||||
module Api
|
module Api
|
||||||
module V1
|
module V1
|
||||||
class ChecklistItemsController < BaseController
|
class ChecklistItemsController < BaseController
|
||||||
|
include ApplicationHelper
|
||||||
|
|
||||||
before_action :load_team, :load_project, :load_experiment, :load_task, :load_protocol, :load_step, :load_checklist
|
before_action :load_team, :load_project, :load_experiment, :load_task, :load_protocol, :load_step, :load_checklist
|
||||||
before_action only: :show do
|
before_action only: :show do
|
||||||
load_checklist_item(:id)
|
load_checklist_item(:id)
|
||||||
|
@ -31,6 +33,23 @@ module Api
|
||||||
@checklist_item.assign_attributes(checklist_item_params)
|
@checklist_item.assign_attributes(checklist_item_params)
|
||||||
|
|
||||||
if @checklist_item.changed? && @checklist_item.save!
|
if @checklist_item.changed? && @checklist_item.save!
|
||||||
|
if @checklist_item.saved_change_to_attribute?(:checked)
|
||||||
|
completed_items = @checklist_item.checklist.checklist_items.where(checked: true).count
|
||||||
|
all_items = @checklist_item.checklist.checklist_items.count
|
||||||
|
text_activity = smart_annotation_parser(@checklist_item.text).gsub(/\s+/, ' ')
|
||||||
|
type_of = if @checklist_item.saved_change_to_attribute(:checked).last
|
||||||
|
:check_step_checklist_item
|
||||||
|
else
|
||||||
|
:uncheck_step_checklist_item
|
||||||
|
end
|
||||||
|
log_activity(type_of,
|
||||||
|
my_module: @task.id,
|
||||||
|
step: @step.id,
|
||||||
|
step_position: { id: @step.id, value_for: 'position_plus_one' },
|
||||||
|
checkbox: text_activity,
|
||||||
|
num_completed: completed_items.to_s,
|
||||||
|
num_all: all_items.to_s)
|
||||||
|
end
|
||||||
render jsonapi: @checklist_item, serializer: ChecklistItemSerializer, status: :ok
|
render jsonapi: @checklist_item, serializer: ChecklistItemSerializer, status: :ok
|
||||||
else
|
else
|
||||||
render body: nil, status: :no_content
|
render body: nil, status: :no_content
|
||||||
|
@ -54,6 +73,18 @@ module Api
|
||||||
@checklist_item = @checklist.checklist_items.find(params.require(:id))
|
@checklist_item = @checklist.checklist_items.find(params.require(:id))
|
||||||
raise PermissionError.new(Protocol, :manage) unless can_manage_protocol_in_module?(@protocol)
|
raise PermissionError.new(Protocol, :manage) unless can_manage_protocol_in_module?(@protocol)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def log_activity(type_of, message_items = {})
|
||||||
|
default_items = { step: @step.id, step_position: { id: @step.id, value_for: 'position_plus_one' } }
|
||||||
|
message_items = default_items.merge(message_items)
|
||||||
|
|
||||||
|
Activities::CreateActivityService.call(activity_type: type_of,
|
||||||
|
owner: current_user,
|
||||||
|
subject: @protocol,
|
||||||
|
team: @team,
|
||||||
|
project: @project,
|
||||||
|
message_items: message_items)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -41,6 +41,14 @@ module Api
|
||||||
@step.assign_attributes(step_params)
|
@step.assign_attributes(step_params)
|
||||||
|
|
||||||
if @step.changed? && @step.save!
|
if @step.changed? && @step.save!
|
||||||
|
if @step.saved_change_to_attribute?(:completed)
|
||||||
|
completed_steps = @protocol.steps.where(completed: true).count
|
||||||
|
all_steps = @protocol.steps.count
|
||||||
|
type_of = @step.saved_change_to_attribute(:completed).last ? :complete_step : :uncomplete_step
|
||||||
|
log_activity(type_of, my_module: @task.id,
|
||||||
|
num_completed: completed_steps.to_s,
|
||||||
|
num_all: all_steps.to_s)
|
||||||
|
end
|
||||||
render jsonapi: @step, serializer: StepSerializer, status: :ok
|
render jsonapi: @step, serializer: StepSerializer, status: :ok
|
||||||
else
|
else
|
||||||
render body: nil, status: :no_content
|
render body: nil, status: :no_content
|
||||||
|
@ -68,6 +76,18 @@ module Api
|
||||||
@step = @protocol.steps.find(params.require(:id))
|
@step = @protocol.steps.find(params.require(:id))
|
||||||
raise PermissionError.new(Protocol, :manage) unless can_manage_protocol_in_module?(@step.protocol)
|
raise PermissionError.new(Protocol, :manage) unless can_manage_protocol_in_module?(@step.protocol)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def log_activity(type_of, message_items = {})
|
||||||
|
default_items = { step: @step.id, step_position: { id: @step.id, value_for: 'position_plus_one' } }
|
||||||
|
message_items = default_items.merge(message_items)
|
||||||
|
|
||||||
|
Activities::CreateActivityService.call(activity_type: type_of,
|
||||||
|
owner: current_user,
|
||||||
|
subject: @protocol,
|
||||||
|
team: @team,
|
||||||
|
project: @project,
|
||||||
|
message_items: message_items)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue