Class: ActionMosaico::TrixAttachment
- Inherits:
-
Object
- Object
- ActionMosaico::TrixAttachment
- Defined in:
- lib/action_mosaico/mosaico_attachment.rb
Constant Summary collapse
- TAG_NAME =
'figure'
- SELECTOR =
'[data-mosaico-attachment]'
- COMPOSED_ATTRIBUTES =
%w[caption presentation].freeze
- 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 } }.freeze
Instance Attribute Summary collapse
-
#node ⇒ Object
readonly
Returns the value of attribute node.
Class Method Summary collapse
Instance Method Summary collapse
- #attributes ⇒ Object
-
#initialize(node) ⇒ TrixAttachment
constructor
A new instance of TrixAttachment.
- #to_html ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(node) ⇒ TrixAttachment
Returns a new instance of TrixAttachment.
53 54 55 |
# File 'lib/action_mosaico/mosaico_attachment.rb', line 53 def initialize(node) @node = node end |
Instance Attribute Details
#node ⇒ Object (readonly)
Returns the value of attribute node.
51 52 53 |
# File 'lib/action_mosaico/mosaico_attachment.rb', line 51 def node @node end |
Class Method Details
.from_attributes(attributes) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/action_mosaico/mosaico_attachment.rb', line 20 def from_attributes(attributes) attributes = process_attributes(attributes) = attributes.except(*COMPOSED_ATTRIBUTES) mosaico_attributes = attributes.slice(*COMPOSED_ATTRIBUTES) node = ActionMosaico::HtmlConversion.create_element(TAG_NAME) node['data-mosaico-attachment'] = JSON.generate() node['data-mosaico-attributes'] = JSON.generate(mosaico_attributes) if mosaico_attributes.any? new(node) end |
Instance Method Details
#attributes ⇒ Object
57 58 59 |
# File 'lib/action_mosaico/mosaico_attachment.rb', line 57 def attributes @attributes ||= .merge(composed_attributes).slice(*ATTRIBUTES) end |
#to_html ⇒ Object
61 62 63 |
# File 'lib/action_mosaico/mosaico_attachment.rb', line 61 def to_html ActionMosaico::HtmlConversion.node_to_html(node) end |
#to_s ⇒ Object
65 66 67 |
# File 'lib/action_mosaico/mosaico_attachment.rb', line 65 def to_s to_html end |