Move top links partial to a component
This way it's easier to test.
This commit is contained in:
3
app/components/layout/top_links_component.html.erb
Normal file
3
app/components/layout/top_links_component.html.erb
Normal file
@@ -0,0 +1,3 @@
|
||||
<ul class="no-bullet external-links">
|
||||
<%= raw content_block("top_links", I18n.locale) %>
|
||||
</ul>
|
||||
3
app/components/layout/top_links_component.rb
Normal file
3
app/components/layout/top_links_component.rb
Normal file
@@ -0,0 +1,3 @@
|
||||
class Layout::TopLinksComponent < ApplicationComponent
|
||||
delegate :content_block, to: :helpers
|
||||
end
|
||||
@@ -1,3 +1 @@
|
||||
<ul class="no-bullet external-links">
|
||||
<%= raw content_block("top_links", I18n.locale) %>
|
||||
</ul>
|
||||
<%= render Layout::TopLinksComponent.new %>
|
||||
|
||||
Reference in New Issue
Block a user