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]
方法
- A
- F
- P
- T
常數
LOCATOR_NAME | = | "attachable" |
類別公開方法
from_attachable_sgid(sgid, options = {}) 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 43 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
from_node(node) 連結
從附件 HTML 節點中提取 ActionText::Attachable
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
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 31 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
實例公開方法
attachable_content_type() 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 83 def attachable_content_type try(:content_type) || "application/octet-stream" end
attachable_filename() 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 87 def attachable_filename filename.to_s if respond_to?(:filename) end
attachable_filesize() 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 91 def attachable_filesize try(:byte_size) || try(:filesize) end
attachable_metadata() 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 95 def attachable_metadata try(:metadata) || {} end
attachable_sgid() 連結
傳回可附加物件的已簽署全域 ID。此 ID 的用途設定為「attachable」,因此無法重複用於其他用途。
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 79 def attachable_sgid to_sgid(expires_in: nil, for: LOCATOR_NAME).to_s end
from_attachable_sgid(sgid) 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 58 def from_attachable_sgid(sgid) ActionText::Attachable.from_attachable_sgid(sgid, only: self) end
previewable_attachable?() 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 99 def previewable_attachable? false end
to_attachable_partial_path() 連結
傳回用於渲染可附加物件的部分路徑。預設為 to_partial_path
。
覆寫以渲染不同的部分
class User < ApplicationRecord
def to_attachable_partial_path
"users/attachable"
end
end
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 127 def to_attachable_partial_path to_partial_path end
to_missing_attachable_partial_path() 連結
傳回用於渲染遺失的可附加物件的部分路徑。預設為「action_text/attachables/missing_attachable」。
覆寫以渲染不同的部分
class User < ApplicationRecord
def self.to_missing_attachable_partial_path
"users/missing_attachable"
end
end
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 72 def to_missing_attachable_partial_path ActionText::Attachables::MissingAttachable::DEFAULT_PARTIAL_PATH end
to_rich_text_attributes(attributes = {}) 連結
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 131 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
to_trix_content_attachment_partial_path() 連結
傳回用於在 Trix 中渲染可附加物件的部分路徑。預設為 to_partial_path
。
覆寫以渲染不同的部分
class User < ApplicationRecord
def to_trix_content_attachment_partial_path
"users/trix_content_attachment"
end
end
來源:顯示 | 在 GitHub 上
# File actiontext/lib/action_text/attachable.rb, line 113 def to_trix_content_attachment_partial_path to_partial_path end