Class: ActionText::TrixAttachment

Inherits:
Object
  • Object
show all
Defined in:
actiontext/lib/action_text/trix_attachment.rb

Constant Summary collapse

TAG_NAME =
"figure"
SELECTOR =
"[data-trix-attachment]"
COMPOSED_ATTRIBUTES =
%w( caption presentation )
ATTRIBUTES =
%w( sgid contentType url href filename filesize width height previewable content ) + COMPOSED_ATTRIBUTES
ATTRIBUTE_TYPES =
{
  "previewable" => ->(value) { value.to_s == "true" },
  "filesize"    => ->(value) { Integer(value.to_s, exception: false) || value },
  "width"       => ->(value) { Integer(value.to_s, exception: false) },
  "height"      => ->(value) { Integer(value.to_s, exception: false) },
  :default      => ->(value) { value.to_s }
}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node) ⇒ TrixAttachment

Returns a new instance of TrixAttachment.



51
52
53
# File 'actiontext/lib/action_text/trix_attachment.rb', line 51

def initialize(node)
  @node = node
end

Instance Attribute Details

#nodeObject (readonly)

Returns the value of attribute node



49
50
51
# File 'actiontext/lib/action_text/trix_attachment.rb', line 49

def node
  @node
end

Class Method Details

.from_attributes(attributes) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
# File 'actiontext/lib/action_text/trix_attachment.rb', line 19

def from_attributes(attributes)
  attributes = process_attributes(attributes)

  trix_attachment_attributes = attributes.except(*COMPOSED_ATTRIBUTES)
  trix_attributes = attributes.slice(*COMPOSED_ATTRIBUTES)

  node = ActionText::HtmlConversion.create_element(TAG_NAME)
  node["data-trix-attachment"] = JSON.generate(trix_attachment_attributes)
  node["data-trix-attributes"] = JSON.generate(trix_attributes) if trix_attributes.any?

  new(node)
end

Instance Method Details

#attributesObject



55
56
57
# File 'actiontext/lib/action_text/trix_attachment.rb', line 55

def attributes
  @attributes ||= attachment_attributes.merge(composed_attributes).slice(*ATTRIBUTES)
end

#to_htmlObject



59
60
61
# File 'actiontext/lib/action_text/trix_attachment.rb', line 59

def to_html
  ActionText::HtmlConversion.node_to_html(node)
end

#to_sObject



63
64
65
# File 'actiontext/lib/action_text/trix_attachment.rb', line 63

def to_s
  to_html
end