2018-10-08 17:44:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-13 19:23:04 -04:00
|
|
|
module ActionText
|
2018-02-07 19:26:19 -05:00
|
|
|
class Content
|
2020-09-11 12:43:27 -04:00
|
|
|
include Rendering, Serialization
|
2019-01-04 19:43:11 -05:00
|
|
|
|
2018-02-07 19:26:19 -05:00
|
|
|
attr_reader :fragment
|
|
|
|
|
2018-09-12 13:58:23 -04:00
|
|
|
delegate :blank?, :empty?, :html_safe, :present?, to: :to_html # Delegating to to_html to avoid including the layout
|
2018-02-07 19:26:19 -05:00
|
|
|
|
2018-10-03 12:46:05 -04:00
|
|
|
class << self
|
|
|
|
def fragment_by_canonicalizing_content(content)
|
|
|
|
fragment = ActionText::Attachment.fragment_by_canonicalizing_attachments(content)
|
|
|
|
fragment = ActionText::AttachmentGallery.fragment_by_canonicalizing_attachment_galleries(fragment)
|
|
|
|
fragment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(content = nil, options = {})
|
|
|
|
options.with_defaults! canonicalize: true
|
|
|
|
|
|
|
|
if options[:canonicalize]
|
|
|
|
@fragment = self.class.fragment_by_canonicalizing_content(content)
|
|
|
|
else
|
|
|
|
@fragment = ActionText::Fragment.wrap(content)
|
|
|
|
end
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def links
|
|
|
|
@links ||= fragment.find_all("a[href]").map { |a| a["href"] }.uniq
|
|
|
|
end
|
|
|
|
|
|
|
|
def attachments
|
|
|
|
@attachments ||= attachment_nodes.map do |node|
|
|
|
|
attachment_for_node(node)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-03 12:46:05 -04:00
|
|
|
def attachment_galleries
|
|
|
|
@attachment_galleries ||= attachment_gallery_nodes.map do |node|
|
|
|
|
attachment_gallery_for_node(node)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def gallery_attachments
|
|
|
|
@gallery_attachments ||= attachment_galleries.flat_map(&:attachments)
|
|
|
|
end
|
|
|
|
|
2018-02-07 19:26:19 -05:00
|
|
|
def attachables
|
|
|
|
@attachables ||= attachment_nodes.map do |node|
|
2018-04-13 19:23:04 -04:00
|
|
|
ActionText::Attachable.from_node(node)
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def append_attachables(attachables)
|
2018-04-13 19:23:04 -04:00
|
|
|
attachments = ActionText::Attachment.from_attachables(attachables)
|
2018-02-07 19:26:19 -05:00
|
|
|
self.class.new([self.to_s.presence, *attachments].compact.join("\n"))
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_attachments(**options, &block)
|
2021-03-05 16:57:36 -05:00
|
|
|
content = fragment.replace(ActionText::Attachment.tag_name) do |node|
|
2018-02-07 19:26:19 -05:00
|
|
|
block.call(attachment_for_node(node, **options))
|
|
|
|
end
|
2018-10-03 12:46:05 -04:00
|
|
|
self.class.new(content, canonicalize: false)
|
|
|
|
end
|
|
|
|
|
2018-10-13 10:56:51 -04:00
|
|
|
def render_attachment_galleries(&block)
|
2018-10-03 12:46:05 -04:00
|
|
|
content = ActionText::AttachmentGallery.fragment_by_replacing_attachment_gallery_nodes(fragment) do |node|
|
2018-10-13 10:56:51 -04:00
|
|
|
block.call(attachment_gallery_for_node(node))
|
2018-10-03 12:46:05 -04:00
|
|
|
end
|
|
|
|
self.class.new(content, canonicalize: false)
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_plain_text
|
2018-10-03 12:46:05 -04:00
|
|
|
render_attachments(with_full_attributes: false, &:to_plain_text).fragment.to_plain_text
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_trix_html
|
|
|
|
render_attachments(&:to_trix_attachment).to_html
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_html
|
2018-10-03 12:46:05 -04:00
|
|
|
fragment.to_html
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_rendered_html_with_layout
|
2020-09-29 23:16:18 -04:00
|
|
|
render layout: "action_text/contents/content", partial: to_partial_path, formats: :html, locals: { content: self }
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_partial_path
|
|
|
|
"action_text/contents/content"
|
2018-06-07 08:38:41 -04:00
|
|
|
end
|
|
|
|
|
2018-02-07 19:26:19 -05:00
|
|
|
def to_s
|
2018-10-03 12:46:05 -04:00
|
|
|
to_rendered_html_with_layout
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def as_json(*)
|
|
|
|
to_html
|
|
|
|
end
|
|
|
|
|
|
|
|
def inspect
|
|
|
|
"#<#{self.class.name} #{to_s.truncate(25).inspect}>"
|
|
|
|
end
|
|
|
|
|
|
|
|
def ==(other)
|
|
|
|
if other.is_a?(self.class)
|
|
|
|
to_s == other.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def attachment_nodes
|
2021-03-05 16:57:36 -05:00
|
|
|
@attachment_nodes ||= fragment.find_all(ActionText::Attachment.tag_name)
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
|
2018-10-03 12:46:05 -04:00
|
|
|
def attachment_gallery_nodes
|
|
|
|
@attachment_gallery_nodes ||= ActionText::AttachmentGallery.find_attachment_gallery_nodes(fragment)
|
|
|
|
end
|
|
|
|
|
2018-02-07 19:26:19 -05:00
|
|
|
def attachment_for_node(node, with_full_attributes: true)
|
2018-04-13 19:23:04 -04:00
|
|
|
attachment = ActionText::Attachment.from_node(node)
|
2018-02-07 19:26:19 -05:00
|
|
|
with_full_attributes ? attachment.with_full_attributes : attachment
|
|
|
|
end
|
2018-10-03 12:46:05 -04:00
|
|
|
|
2018-10-13 10:56:51 -04:00
|
|
|
def attachment_gallery_for_node(node)
|
2018-10-03 12:46:05 -04:00
|
|
|
ActionText::AttachmentGallery.from_node(node)
|
|
|
|
end
|
2018-02-07 19:26:19 -05:00
|
|
|
end
|
|
|
|
end
|
2019-01-04 19:43:11 -05:00
|
|
|
|
|
|
|
ActiveSupport.run_load_hooks :action_text_content, ActionText::Content
|