# frozen_string_literal: true if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.0") using Phlex::Overrides::Symbol::Name end module Phlex class SGML class << self # Render the view to a String. Arguments are delegated to new. def call(...) new(...).call end alias_method :render, :call # Create a new instance of the component. # @note The block will not be delegated to the initializer. Instead, it will be provided to `template` when rendering. def new(*args, **kwargs, &block) if block object = super(*args, **kwargs, &nil) object.instance_variable_set(:@_content_block, block) object else super end end # @api private def rendered_at_least_once! alias_method :__attributes__, :__final_attributes__ alias_method :call, :__final_call__ end end # Renders the view and returns the buffer. The default buffer is a mutable String. def call(buffer = nil, target: +"", view_context: nil, parent: nil, &block) __final_call__(buffer, target: target, view_context: view_context, parent: parent, &block).tap do self.class.rendered_at_least_once! end end # @api private def __final_call__(buffer = nil, target: +"", view_context: nil, parent: nil, &block) @_target = target @_view_context = view_context @_parent = parent block ||= @_content_block return buffer || target unless render? around_template do if block if DeferredRender === self __vanish__(self, &block) template else template do |*args| if args.length > 0 yield_content_with_args(*args, &block) else yield_content(&block) end end end else template end end buffer ? (buffer << target) : target end # Render another view # @param renderable [Phlex::SGML] # @return [nil] def render(renderable, &block) case renderable when Phlex::SGML renderable.call(target: @_target, view_context: @_view_context, parent: self, &block) when Class if renderable < Phlex::SGML renderable.new.call(target: @_target, view_context: @_view_context, parent: self, &block) end else raise ArgumentError, "You can't render a #{renderable}." end nil end # Output text content. The text will be HTML-escaped. # @return [nil] def plain(content) case content when String @_target << ERB::Escape.html_escape(content) when Symbol @_target << ERB::Escape.html_escape(content.name) when Integer @_target << ERB::Escape.html_escape(content.to_s) when nil nil else if (formatted_object = format_object(content)) @_target << ERB::Escape.html_escape(formatted_object) end end nil end # Output a whitespace character. This is useful for getting inline elements to wrap. If you pass a block, a whitespace will be output before and after yielding the block. # @return [nil] def whitespace @_target << " " if block_given? yield @_target << " " end nil end # Output an HTML comment. # @return [nil] def comment(&block) @_target << "" nil end # This method is very dangerous and should usually be avoided. It will output the given String without any HTML safety. You should never use this method to output unsafe user input. # @param content [String|nil] # @return [nil] def unsafe_raw(content = nil) return nil unless content @_target << content nil end # Capture a block of output as a String. # @return [String] def capture(&block) return "" unless block_given? original_buffer_content = @_target.dup @_target.clear begin yield_content(&block) new_buffer_content = @_target.dup ensure @_target.clear @_target << original_buffer_content end new_buffer_content end # Like `capture` but the output is vanished into a BlackHole buffer. # Because the BlackHole does nothing with the output, this should be faster. # @return [nil] private def __vanish__(*args) return unless block_given? original_buffer = @_target begin @_target = BlackHole yield(*args) ensure @_target = original_buffer end nil end # Default render predicate can be overridden to prevent rendering # @return [bool] private def render? true end # Format the object for output # @return [String] private def format_object(object) case object when Float object.to_s end end # Override this method to hook in around a template render. You can do things before and after calling super to render the template. You should always call super so that callbacks can be added at different layers of the inheritance tree. # @return [nil] private def around_template before_template yield after_template nil end # Override this method to hook in right before a template is rendered. Please remember to call super so that callbacks can be added at different layers of the inheritance tree. # @return [nil] private def before_template nil end # Override this method to hook in right after a template is rendered. Please remember to call super so that callbacks can be added at different layers of the inheritance tree. # @return [nil] private def after_template nil end # Yields the block and checks if it buffered anything. If nothing was buffered, the return value is treated as text. # @return [nil] private def yield_content return unless block_given? original_length = @_target.length content = yield(self) plain(content) if original_length == @_target.length nil end # Same as yield_content but accepts a splat of arguments to yield. This is slightly slower than yield_content, which is why it's defined as a different method because we don't always need arguments so we can usually use yield_content instead. # @return [nil] private def yield_content_with_args(*args) return unless block_given? original_length = @_target.length content = yield(*args) plain(content) if original_length == @_target.length nil end # @api private private def __attributes__(**attributes) __final_attributes__(**attributes).tap do |buffer| Phlex::ATTRIBUTE_CACHE[respond_to?(:process_attributes) ? (attributes.hash + self.class.hash) : attributes.hash] = buffer.freeze end end # @api private private def __final_attributes__(**attributes) if respond_to?(:process_attributes) attributes = process_attributes(**attributes) end if attributes[:href]&.start_with?(/\s*javascript:/) attributes.delete(:href) end if attributes["href"]&.start_with?(/\s*javascript:/) attributes.delete("href") end buffer = +"" __build_attributes__(attributes, buffer: buffer) buffer end # @api private private def __build_attributes__(attributes, buffer:) attributes.each do |k, v| next unless v name = case k when String then k when Symbol then k.name.tr("_", "-") else k.to_s end # Detect unsafe attribute names. Attribute names are considered unsafe if they match an event attribute or include unsafe characters. if HTML::EVENT_ATTRIBUTES[name] || name.match?(/[<>&"']/) raise ArgumentError, "Unsafe attribute name detected: #{k}." end case v when true buffer << " " << name when String buffer << " " << name << '="' << ERB::Escape.html_escape(v) << '"' when Symbol buffer << " " << name << '="' << ERB::Escape.html_escape(v.name) << '"' when Hash __build_attributes__( v.transform_keys { |subkey| case subkey when Symbol then"#{k}-#{subkey.name.tr('_', '-')}" else "#{k}-#{subkey}" end }, buffer: buffer ) else buffer << " " << name << '="' << ERB::Escape.html_escape(v.to_s) << '"' end end buffer end end end