Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve documentation of ActionView:RenderingHelper#render #52520

Merged
merged 1 commit into from
Aug 9, 2024

Conversation

p8
Copy link
Member

@p8 p8 commented Aug 6, 2024

Motivation / Background

The current documentation RenderingHelper#render doesn't document all options and documents an the outdated :update argument.

The documentation of ActionController::Rendering#render is much more complete. It shows example code for the different rendering modes, has a separate section for other arguments and reads a lot better as well.

Detail

This change copies the documentation from ActionController::Rendering and updates it to make sense for ActionView:

  • The response formats is replaced with formats.
  • Removes the :json rendering mode, which isn't supported.
  • The assigns, status and layout options are removed as the aren't supported.
  • The :formats, :variants, and :handlers options are added.

This also removes the :update option which is no longer supported.

The following script allows reproducing the render modes and options:

# frozen_string_literal: true

require "bundler/inline"

gemfile(true) do
  source "https://rubygems.org"

  git_source(:github) { |repo| "https://github.com/#{repo}.git" }

  gem "rails"
  # If you want to test against edge Rails replace the previous line with this:
  # gem "rails", github: "rails/rails", branch: "main"
end

require "minitest/autorun"
require "action_view"

class Greeting
  def render_in(view_context)
    view_context.render html: "Rendering: renderable!"
  end

  def format
    :html
  end
end

class BugTest < ActionView::TestCase
  def setup
    @controller.append_view_path "."
    File.write("_partial.html.erb", "Rendering as html: <%= @name %>!")
    File.write("_partial.text.erb", "Rendering as text: <%= name %>!")
  end

  def test_supported_render_modes
    page = <<~ERB
    Test Render Modes
    <%= render 'partial', name: 'implicit' %>
    <%= render partial: 'partial', locals: { name: 'partial' } %>
    <%= render template: '_partial', locals: { name: 'template' } %>
    <%= render template: '_partial', formats: [:text], locals: { name: 'template' } %>
    <%= render inline: 'Rendering: inline!' %>
    <%= render body: 'Rendering: body!' %>
    <%= render file: '_partial.html.erb' %>
    <%= render html: "<script>alert('hi!')</script>" %>
    <%= render plain: "<script>alert('hi!')</script>" %>
    <%= render Greeting.new %>
    <%= render renderable: Greeting.new %>
    ERB

    puts render inline: page
  end
end

Which results in:

Test Render Modes
Rendering as html: !
Rendering as html: !
Rendering as html: !
Rendering as text: template!
Rendering: inline!
Rendering: body!
Rendering as html: &lt;%= @name %&gt;!
&lt;script&gt;alert(&#39;hi!&#39;)&lt;/script&gt;
&lt;script&gt;alert(&#39;hi!&#39;)&lt;/script&gt;
Rendering: renderable!
Rendering: renderable!

Checklist

Before submitting the PR make sure the following are checked:

  • This Pull Request is related to one change. Unrelated changes should be opened in separate PRs.
  • Commit message has a detailed description of what changed and why. If this PR fixes a related issue include it in the commit message. Ex: [Fix #issue-number]
  • Tests are added or updated if you fix a bug or add a feature.
  • CHANGELOG files are updated for the changed libraries if there is a behavior change or additional feature. Minor bug fixes and documentation changes should not be included.

@rails-bot rails-bot bot added the actionview label Aug 6, 2024
@p8 p8 force-pushed the document-render-formats-option branch from 8c407bb to c6658ac Compare August 7, 2024 06:59
@p8 p8 changed the title Improve documentation of ActionView:RenderingHelper#render [ci-skip] Improve documentation of ActionView:RenderingHelper#render Aug 7, 2024
@p8 p8 force-pushed the document-render-formats-option branch from c6658ac to 6100391 Compare August 7, 2024 08:42
@willianveiga
Copy link
Contributor

Looks good to me.

@@ -1,5 +1,7 @@
# frozen_string_literal: true

# :markup: markdown
Copy link
Member

@skipkayhil skipkayhil Aug 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think if we want to switch the file to markdown we should go all the way, there are a lot of RDoc-isms left here (= header, <tt>, etc.)

image

(my suggestion would be to use tools/rdoc-to-md and then only commit changes to this file)

Copy link
Member Author

@p8 p8 Aug 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I ran tools/rdoc-to-md.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@skipkayhil Do you think it's good to go now?

The current documentation `RenderingHelper#render` doesn't document all
options and documents an the outdated `:update` argument.

The documentation of `ActionController::Rendering#render` is much more
complete. It shows example code for the different rendering modes, has a
separate section for other arguments and reads a lot better as well.

This change copies the documentation from `ActionController::Rendering`
and updates it to make sense for ActionView:
- The `response formats` is replaced with `formats`.
- The `assigns`, `status` and `layout` options are removed as the aren't
  supported.
- The `:formats`, `:variants`, and `:handlers` options are added.

This also removes the `:update` option which is no longer supported.
@p8 p8 force-pushed the document-render-formats-option branch from 6100391 to bb736cf Compare August 8, 2024 07:21
Copy link
Member

@skipkayhil skipkayhil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, looks great!

@p8 p8 merged commit b408864 into rails:main Aug 9, 2024
3 checks passed
@p8 p8 deleted the document-render-formats-option branch August 9, 2024 16:23
@p8
Copy link
Member Author

p8 commented Aug 9, 2024

Thanks @skipkayhil and @willianveiga !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants