Last active
August 16, 2023 15:33
-
-
Save mattbrictson/9240548 to your computer and use it in GitHub Desktop.
Simpler nested layouts in Rails using the parent_layout helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= render("shared/navbar") %> | |
<div class="container"> | |
<%= render("shared/alerts") %> | |
<%= render("shared/page_header") %> | |
<%= yield %> | |
<%= render("shared/footer") %> | |
</div> | |
<% parent_layout "base" %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<%= stylesheet_link_tag("application", "data-turbolinks-track" => true) %> | |
<%= javascript_include_tag("application", "data-turbolinks-track" => true) %> | |
<%= yield(:head) %> | |
<meta charset="utf8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<%= csrf_meta_tags %> | |
<title> | |
<%= yield(:title) + " – " if content_for?(:title) %> | |
RailsStarter | |
</title> | |
</head> | |
<body> | |
<%= yield %> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module LayoutsHelper | |
# Used to achieve nested layouts without content_for. This helper relies on | |
# Rails internals, so beware that it make break with future major versions | |
# of Rails. Inspired by http://stackoverflow.com/a/18214036 | |
# | |
# Usage: For example, suppose "child" layout extends "parent" layout. | |
# Use <%= yield %> as you would with non-nested layouts, as usual. Then on | |
# the very last line of layouts/child.html.erb, include this: | |
# | |
# <% parent_layout "parent" %> | |
# | |
def parent_layout(layout) | |
@view_flow.set(:layout, output_buffer) | |
output = render(template: "layouts/#{layout}") | |
self.output_buffer = ActionView::OutputBuffer.new(output) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! 👏 👏 👏
Working perfectly on rails 6.0.1!