Class: ActionText::Attachables::ContentAttachment

Inherits:
Object
  • Object
show all
Includes:
ActiveModel::Model
Defined in:
lib/action_text/attachables/content_attachment.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#contentObject

Returns the value of attribute content.



13
14
15
# File 'lib/action_text/attachables/content_attachment.rb', line 13

def content
  @content
end

#content_typeObject

Returns the value of attribute content_type.



13
14
15
# File 'lib/action_text/attachables/content_attachment.rb', line 13

def content_type
  @content_type
end

Class Method Details

.from_node(node) ⇒ Object



8
9
10
11
# File 'lib/action_text/attachables/content_attachment.rb', line 8

def self.from_node(node)
  attachment = new(content_type: node["content-type"], content: node["content"])
  attachment if attachment.valid?
end

Instance Method Details

#attachable_plain_text_representation(caption) ⇒ Object



18
19
20
# File 'lib/action_text/attachables/content_attachment.rb', line 18

def attachable_plain_text_representation(caption)
  content_instance.fragment.source
end

#to_htmlObject



22
23
24
# File 'lib/action_text/attachables/content_attachment.rb', line 22

def to_html
  @to_html ||= content_instance.render(content_instance)
end

#to_partial_pathObject



30
31
32
# File 'lib/action_text/attachables/content_attachment.rb', line 30

def to_partial_path
  "action_text/attachables/content_attachment"
end

#to_sObject



26
27
28
# File 'lib/action_text/attachables/content_attachment.rb', line 26

def to_s
  to_html
end