Methods
- as_json
- attachable_content_type
- attachable_filename
- attachable_filesize
- attachable_metadata
- attachable_sgid
- from_attachable_sgid
- from_attachable_sgid
- from_node
- previewable_attachable?
- to_rich_text_attributes
- to_trix_content_attachment_partial_path
Constants
LOCATOR_NAME | = | "attachable" |
Class Public methods
from_attachable_sgid(sgid, options = {})
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 22
def from_attachable_sgid(sgid, options = {})
method = sgid.is_a?(Array) ? :locate_many_signed : :locate_signed
record = GlobalID::Locator.public_send(method, sgid, options.merge(for: LOCATOR_NAME))
record || raise(ActiveRecord::RecordNotFound)
end
🔎 See on GitHub
from_node(node)
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 10
def from_node(node)
if attachable = attachable_from_sgid(node["sgid"])
attachable
elsif attachable = ActionText::Attachables::ContentAttachment.from_node(node)
attachable
elsif attachable = ActionText::Attachables::RemoteImage.from_node(node)
attachable
else
ActionText::Attachables::MissingAttachable
end
end
🔎 See on GitHub
Instance Public methods
as_json(*)
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 66
def as_json(*)
super.merge(attachable_sgid: attachable_sgid)
end
🔎 See on GitHub
attachable_content_type()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 46
def attachable_content_type
try(:content_type) || "application/octet-stream"
end
🔎 See on GitHub
attachable_filename()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 50
def attachable_filename
filename.to_s if respond_to?(:filename)
end
🔎 See on GitHub
attachable_filesize()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 54
def attachable_filesize
try(:byte_size) || try(:filesize)
end
🔎 See on GitHub
attachable_metadata()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 58
def attachable_metadata
try(:metadata) || {}
end
🔎 See on GitHub
attachable_sgid()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 42
def attachable_sgid
to_sgid(expires_in: nil, for: LOCATOR_NAME).to_s
end
🔎 See on GitHub
from_attachable_sgid(sgid)
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 37
def from_attachable_sgid(sgid)
ActionText::Attachable.from_attachable_sgid(sgid, only: self)
end
🔎 See on GitHub
previewable_attachable?()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 62
def previewable_attachable?
false
end
🔎 See on GitHub
to_rich_text_attributes(attributes = {})
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 74
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] = attachable_metadata[:width]
attrs[:height] = attachable_metadata[:height]
end.compact
end
🔎 See on GitHub
to_trix_content_attachment_partial_path()
📝 Source code
# File actiontext/lib/action_text/attachable.rb, line 70
def to_trix_content_attachment_partial_path
to_partial_path
end
🔎 See on GitHub