The `use_helpers` method was added in ViewComponent 3.8.0, and it's included by default in all components since version 3.11.0. Note we sometimes delegated the `can?` method to the controller instead of the helpers, for no particularly reason. We're unifying that code as well.
26 lines
607 B
Ruby
26 lines
607 B
Ruby
class Layout::FooterComponent < ApplicationComponent
|
|
use_helpers :content_block
|
|
|
|
def footer_legal_content_block
|
|
content_block("footer_legal")
|
|
end
|
|
|
|
private
|
|
|
|
def open_source_link
|
|
external_link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"))
|
|
end
|
|
|
|
def repository_link
|
|
external_link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"))
|
|
end
|
|
|
|
def external_link_to(text, url)
|
|
link_to(text, url, rel: "nofollow external")
|
|
end
|
|
|
|
def allowed_link_attributes
|
|
self.class.sanitized_allowed_attributes + ["rel"]
|
|
end
|
|
end
|