модуль ActionText::Attribute
Публичные методы экземпляра
# File actiontext/lib/action_text/attribute.rb, line 26
def has_rich_text(name)
class_eval <<-CODE, __FILE__, __LINE__ + 1
def #{name}
rich_text_#{name} || build_rich_text_#{name}
end
def #{name}=(body)
self.#{name}.body = body
end
CODE
has_one :"rich_text_#{name}", -> { where(name: name) },
class_name: "ActionText::RichText", as: :record, inverse_of: :record, autosave: true, dependent: :destroy
scope :"with_rich_text_#{name}", -> { includes("rich_text_#{name}") }
scope :"with_rich_text_#{name}_and_embeds", -> { includes("rich_text_#{name}": { embeds_attachments: :blob }) }
end Обеспечивает доступ к зависимой модели RichText, которая хранит тело и вложения для одного атрибута с именем rich text. Этот зависимый атрибут создаётся лениво и будет автоматически сохранён, когда он будет изменён. Пример:
class Message < ActiveRecord::Base has_rich_text :content end message = Message.create!(content: "<h1>Funny times!</h1>") message.content.to_s # => "<h1>Funny times!</h1>" message.content.to_plain_text # => "Funny times!"
Зависимая модель RichText также автоматически обрабатывает ссылки на вложения, отправленные через редактор Trix. Эти вложения ассоциируются с моделью RichText с помощью Active Storage.
Если вы хотите предварительно загрузить зависимую модель RichText, вы можете использовать именованный scope:
Message.all.with_rich_text_content # Avoids N+1 queries when you just want the body, not the attachments. Message.all.with_rich_text_content_and_embeds # Avoids N+1 queries when you just want the body and attachments.
© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.