scinote-web/app/serializers/checklist_serializer.rb

44 lines
1.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class ChecklistSerializer < ActiveModel::Serializer
include Canaid::Helpers::PermissionsHelper
include Rails.application.routes.url_helpers
include ApplicationHelper
include ActionView::Helpers::TextHelper
attributes :id, :name, :urls, :icon, :sa_name, :checklist_items, :parent_type
def icon
'fa-list-ul'
end
def parent_type
:step
end
def sa_name
@user = scope[:user] || @instance_options[:user]
custom_auto_link(object.name,
simple_format: false,
tags: %w(img),
team: object.step.protocol.team)
end
def urls
if object.destroyed? || !can_manage_step?(scope[:user] || @instance_options[:user], object.step)
return { checklist_items_url: step_checklist_checklist_items_path(object.step, object) }
end
{
2023-09-22 01:24:58 +08:00
checklist_items_url: step_checklist_checklist_items_path(object.step, object),
duplicate_url: duplicate_step_checklist_path(object.step, object),
delete_url: step_checklist_path(object.step, object),
update_url: step_checklist_path(object.step, object),
reorder_url: reorder_step_checklist_checklist_items_path(object.step, object),
create_item_url: step_checklist_checklist_items_path(object.step, object),
move_targets_url: move_targets_step_checklist_path(object.step, object),
move_url: move_step_checklist_path(object.step, object)
}
end
end