1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actiontext/app/models/action_text/rich_text.rb

26 lines
848 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-10-02 20:30:22 -04:00
# The RichText record holds the content produced by the Trix editor in a serialized `body` attribute.
# It also holds all the references to the embedded files, which are stored using Active Storage.
# This record is then associated with the Active Record model the application desires to have
2018-10-02 20:30:22 -04:00
# rich text content using the `has_rich_text` class method.
2018-04-13 19:47:33 -04:00
class ActionText::RichText < ActiveRecord::Base
2018-05-28 11:43:40 -04:00
self.table_name = "action_text_rich_texts"
2018-04-13 19:47:33 -04:00
serialize :body, ActionText::Content
delegate :to_s, :nil?, to: :body
2018-07-31 20:49:35 -04:00
2018-05-28 11:44:02 -04:00
belongs_to :record, polymorphic: true, touch: true
2018-04-13 19:47:33 -04:00
has_many_attached :embeds
2018-07-31 20:49:35 -04:00
before_save do
self.embeds = body.attachments.map(&:attachable) if body.present?
2018-04-13 19:47:33 -04:00
end
2018-12-21 00:59:43 -05:00
def to_plain_text
body&.to_plain_text.to_s
end
delegate :blank?, :empty?, :present?, to: :to_plain_text
2018-04-13 19:47:33 -04:00
end