scinote-web/app/serializers/api/v1/step_serializer.rb

39 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V1
class StepSerializer < ActiveModel::Serializer
include ApplicationHelper
include ActionView::Helpers::TextHelper
include InputSanitizeHelper
type :steps
attributes :id, :name, :description, :position, :completed
attribute :completed_on, if: -> { object.completed? }
belongs_to :user, serializer: UserSerializer
belongs_to :protocol, serializer: ProtocolSerializer
has_many :assets, serializer: AssetSerializer
has_many :checklists, serializer: ChecklistSerializer
has_many :tables, serializer: TableSerializer
has_many :step_texts, serializer: StepTextSerializer
has_many :step_comments, key: :comments, serializer: CommentSerializer
has_many :step_orderable_elements, key: :step_elements, serializer: StepOrderableElementSerializer
include TimestampableModel
def description
return unless object.description_step_text
if instance_options[:rte_rendering]
custom_auto_link(object.description_step_text.tinymce_render(:description),
2020-08-07 22:51:57 +08:00
simple_format: false,
tags: %w(img),
team: instance_options[:team])
else
object.description_step_text.text
end
end
end
end
end