mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
07533a3d2f
This change introduces a rich text object to make it easier to confirm it context is existing or not. If we have a class like below. class Information < ApplicationRecord has_rich_text :notes end Before: i = Information.new i.notes? => NoMethodError i.notes = "Some sample text" i.notes.present? => true After: i = Information.new i.notes? => false i.notes = "Some sample text" i.notes? => true
50 lines
2 KiB
Ruby
50 lines
2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module ActionText
|
|
module Attribute
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
# Provides access to a dependent RichText model that holds the body and attachments for a single named rich text attribute.
|
|
# This dependent attribute is lazily instantiated and will be auto-saved when it's been changed. Example:
|
|
#
|
|
# class Message < ActiveRecord::Base
|
|
# has_rich_text :content
|
|
# end
|
|
#
|
|
# message = Message.create!(content: "<h1>Funny times!</h1>")
|
|
# message.content? #=> true
|
|
# message.content.to_s # => "<h1>Funny times!</h1>"
|
|
# message.content.to_plain_text # => "Funny times!"
|
|
#
|
|
# The dependent RichText model will also automatically process attachments links as sent via the Trix-powered editor.
|
|
# These attachments are associated with the RichText model using Active Storage.
|
|
#
|
|
# If you wish to preload the dependent RichText model, you can use the named 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.
|
|
def has_rich_text(name)
|
|
class_eval <<-CODE, __FILE__, __LINE__ + 1
|
|
def #{name}
|
|
rich_text_#{name} || build_rich_text_#{name}
|
|
end
|
|
|
|
def #{name}?
|
|
rich_text_#{name}.present?
|
|
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
|
|
end
|
|
end
|
|
end
|