mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
46 lines
1 KiB
Ruby
46 lines
1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class TestComponent < ActionView::Base
|
||
|
include ActiveModel::Validations
|
||
|
|
||
|
validates :content, :title, presence: true
|
||
|
delegate :render, to: :view_context
|
||
|
|
||
|
def initialize(title:)
|
||
|
@title = title
|
||
|
end
|
||
|
|
||
|
# Entrypoint for rendering. Called by ActionView::RenderingHelper#render.
|
||
|
#
|
||
|
# Returns ActionView::OutputBuffer.
|
||
|
def render_in(view_context, &block)
|
||
|
self.class.compile
|
||
|
@view_context = view_context
|
||
|
@content = view_context.capture(&block) if block_given?
|
||
|
validate!
|
||
|
rendered_template
|
||
|
end
|
||
|
|
||
|
def self.template
|
||
|
<<~'erb'
|
||
|
<span title="<%= title %>"><%= content %> (<%= render(plain: "Inline render") %>)</span>
|
||
|
erb
|
||
|
end
|
||
|
|
||
|
def self.compile
|
||
|
@compiled ||= nil
|
||
|
return if @compiled
|
||
|
|
||
|
class_eval(
|
||
|
"def rendered_template; @output_buffer = ActionView::OutputBuffer.new; " +
|
||
|
ActionView::Template::Handlers::ERB.erb_implementation.new(template, trim: true).src +
|
||
|
"; end"
|
||
|
)
|
||
|
|
||
|
@compiled = true
|
||
|
end
|
||
|
|
||
|
private
|
||
|
attr_reader :content, :title, :view_context
|
||
|
end
|