Module: ActionMosaico::Attachable
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/action_mosaico/attachable.rb
Constant Summary collapse
- LOCATOR_NAME =
'attachable'
Class Method Summary collapse
Instance Method Summary collapse
- #as_json ⇒ Object
- #attachable_content_type ⇒ Object
- #attachable_filename ⇒ Object
- #attachable_filesize ⇒ Object
- #attachable_metadata ⇒ Object
- #attachable_sgid ⇒ Object
- #previewable_attachable? ⇒ Boolean
- #to_attachable_partial_path ⇒ Object
- #to_mosaico_content_attachment_partial_path ⇒ Object
- #to_rich_text_attributes(attributes = {}) ⇒ Object
Class Method Details
.from_attachable_sgid(sgid, options = {}) ⇒ Object
22 23 24 25 26 |
# File 'lib/action_mosaico/attachable.rb', line 22 def from_attachable_sgid(sgid, = {}) method = sgid.is_a?(Array) ? :locate_many_signed : :locate_signed record = GlobalID::Locator.public_send(method, sgid, .merge(for: LOCATOR_NAME)) record || raise(ActiveRecord::RecordNotFound) end |
.from_node(node) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/action_mosaico/attachable.rb', line 10 def from_node(node) if attachable = attachable_from_sgid(node['sgid']) attachable elsif attachable = ActionMosaico::Attachables::ContentAttachment.from_node(node) attachable elsif attachable = ActionMosaico::Attachables::RemoteImage.from_node(node) attachable else ActionMosaico::Attachables::MissingAttachable end end |
Instance Method Details
#as_json ⇒ Object
67 68 69 |
# File 'lib/action_mosaico/attachable.rb', line 67 def as_json(*) super.merge(attachable_sgid: attachable_sgid) end |
#attachable_content_type ⇒ Object
47 48 49 |
# File 'lib/action_mosaico/attachable.rb', line 47 def attachable_content_type try(:content_type) || 'application/octet-stream' end |
#attachable_filename ⇒ Object
51 52 53 |
# File 'lib/action_mosaico/attachable.rb', line 51 def attachable_filename filename.to_s if respond_to?(:filename) end |
#attachable_filesize ⇒ Object
55 56 57 |
# File 'lib/action_mosaico/attachable.rb', line 55 def attachable_filesize try(:byte_size) || try(:filesize) end |
#attachable_metadata ⇒ Object
59 60 61 |
# File 'lib/action_mosaico/attachable.rb', line 59 def try(:metadata) || {} end |
#attachable_sgid ⇒ Object
43 44 45 |
# File 'lib/action_mosaico/attachable.rb', line 43 def attachable_sgid to_sgid(expires_in: nil, for: LOCATOR_NAME).to_s end |
#previewable_attachable? ⇒ Boolean
63 64 65 |
# File 'lib/action_mosaico/attachable.rb', line 63 def previewable_attachable? false end |
#to_attachable_partial_path ⇒ Object
75 76 77 |
# File 'lib/action_mosaico/attachable.rb', line 75 def to_attachable_partial_path to_partial_path end |
#to_mosaico_content_attachment_partial_path ⇒ Object
71 72 73 |
# File 'lib/action_mosaico/attachable.rb', line 71 def to_partial_path end |
#to_rich_text_attributes(attributes = {}) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/action_mosaico/attachable.rb', line 79 def to_rich_text_attributes(attributes = {}) attributes.dup.tap do |attrs| attrs[:sgid] = attachable_sgid attrs[:content_type] = attachable_content_type attrs[:previewable] = true if previewable_attachable? attrs[:filename] = attachable_filename attrs[:filesize] = attachable_filesize attrs[:width] = [:width] attrs[:height] = [:height] end.compact end |