Skip to content

Instantly share code, notes, and snippets.

@yamitake
Last active April 14, 2025 05:52
Show Gist options
  • Save yamitake/9a587ff7d905cf078ca4ca8106166e01 to your computer and use it in GitHub Desktop.
Save yamitake/9a587ff7d905cf078ca4ca8106166e01 to your computer and use it in GitHub Desktop.
breadcrumbs_key for rails view helper
module BreadcrumbsHelper
def breadcrumb_key = @_breadcrumb_key ||= :"#{controller_path.gsub('/', '_')}_#{ACTION_MAP[action_name] || action_name}"
private
ACTION_MAP = {
"create" => "new",
"update" => "show"
}.freeze
end
@yamitake
Copy link
Author

https://github.com/kzkn/gretel と一緒に使うと良い。
hansel ってgemでもいいんじゃないかとちょっと思った。

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