модуль ActionText::Attachable
Модуль Action Text Attachable
Включите этот модуль, чтобы сделать запись присоединяемой к ActionText::Content.
class Person < ApplicationRecord
include ActionText::Attachable
end
person = Person.create! name: "Javan"
html = %Q(<action-text-attachment sgid="#{person.attachable_sgid}"></action-text-attachment>)
content = ActionText::Content.new(html)
content.attachables # => [person]
Константы
- LOCATOR_NAME
Публичные методы класса
# File actiontext/lib/action_text/attachable.rb, line 41
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 # File actiontext/lib/action_text/attachable.rb, line 29
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.new(node["sgid"])
end
end Извлекает ActionText::Attachable из узла HTML вложения:
person = Person.create! name: "Javan"
html = %Q(<action-text-attachment sgid="#{person.attachable_sgid}"></action-text-attachment>)
fragment = ActionText::Fragment.wrap(html)
attachment_node = fragment.find_all(ActionText::Attachment.tag_name).first
ActionText::Attachable.from_node(attachment_node) # => person
Методы публичного экземпляра
# File actiontext/lib/action_text/attachable.rb, line 81 def attachable_content_type try(:content_type) || "application/octet-stream" end
# File actiontext/lib/action_text/attachable.rb, line 85 def attachable_filename filename.to_s if respond_to?(:filename) end
# File actiontext/lib/action_text/attachable.rb, line 89 def attachable_filesize try(:byte_size) || try(:filesize) end
# File actiontext/lib/action_text/attachable.rb, line 93
def attachable_metadata
try(:metadata) || {}
end # File actiontext/lib/action_text/attachable.rb, line 77 def attachable_sgid to_sgid(expires_in: nil, for: LOCATOR_NAME).to_s end
Возвращает Идентификатор глобального подписи для прикрепляемого объекта. Цель идентификатора установлена на «прикрепляемый», чтобы его нельзя было повторно использовать для других целей.
# File actiontext/lib/action_text/attachable.rb, line 56 def from_attachable_sgid(sgid) ActionText::Attachable.from_attachable_sgid(sgid, only: self) end
# File actiontext/lib/action_text/attachable.rb, line 97 def previewable_attachable? false end
# File actiontext/lib/action_text/attachable.rb, line 125 def to_attachable_partial_path to_partial_path end
Возвращает путь к части, используемой для отображения прикрепляемого объекта. По умолчанию to_partial_path.
Переопределите для отображения другой части:
class User < ApplicationRecord
def to_attachable_partial_path
"users/attachable"
end
end
# File actiontext/lib/action_text/attachable.rb, line 70 def to_missing_attachable_partial_path ActionText::Attachables::MissingAttachable::DEFAULT_PARTIAL_PATH end
Возвращает путь к части, используемой для отображения отсутствующих прикрепляемых объектов. По умолчанию «action_text/attachables/missing_attachable».
Переопределите для отображения другой части:
class User < ApplicationRecord
def self.to_missing_attachable_partial_path
"users/missing_attachable"
end
end
# File actiontext/lib/action_text/attachable.rb, line 129
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 # File actiontext/lib/action_text/attachable.rb, line 111 def to_trix_content_attachment_partial_path to_partial_path end
Возвращает путь к части, используемой для отображения прикрепляемого объекта в Trix. По умолчанию to_partial_path.
Переопределите для отображения другой части:
class User < ApplicationRecord
def to_trix_content_attachment_partial_path
"users/trix_content_attachment"
end
end
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.