mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
# 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
|
|
|
|
{
|
|
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
|