mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class StepTextSerializer < ActiveModel::Serializer
|
|
include Canaid::Helpers::PermissionsHelper
|
|
include Rails.application.routes.url_helpers
|
|
include ApplicationHelper
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
attributes :id, :text, :urls, :text_view, :updated_at, :icon, :name, :placeholder, :parent_type
|
|
|
|
def updated_at
|
|
object.updated_at.to_i
|
|
end
|
|
|
|
def parent_type
|
|
:step
|
|
end
|
|
|
|
def placeholder
|
|
I18n.t('protocols.steps.text.placeholder')
|
|
end
|
|
|
|
def text_view
|
|
@user = scope[:user]
|
|
custom_auto_link(object.tinymce_render('text'),
|
|
simple_format: false,
|
|
tags: %w(img),
|
|
team: object.step.protocol.team)
|
|
end
|
|
|
|
def text
|
|
sanitize_input(object.tinymce_render('text'))
|
|
end
|
|
|
|
def icon
|
|
'fa-font'
|
|
end
|
|
|
|
def urls
|
|
return {} if object.destroyed? || !can_manage_step?(scope[:user] || @instance_options[:user], object.step)
|
|
|
|
{
|
|
duplicate_url: duplicate_step_text_path(object.step, object),
|
|
delete_url: step_text_path(object.step, object),
|
|
update_url: step_text_path(object.step, object),
|
|
move_url: move_step_text_path(object.step, object),
|
|
move_targets_url: move_targets_step_text_path(object.step, object)
|
|
}
|
|
end
|
|
end
|