haml视图中的重构条件

use*_*267 5 ruby haml ruby-on-rails

除了可访问性标准阻止使用指向当前页面的链接这一事实之外,我应该如何重构以下视图代码?

#navigation
  %ul.tabbed
    - if current_page?(new_profile_path)
      %li{:class => "current_page_item"}
        = link_to t("new_profile"), new_profile_path
    - else
      %li
        = link_to t("new_profile"), new_profile_path

    - if current_page?(profiles_path)
      %li{:class => "current_page_item"}
        = link_to t("profiles"), profiles_path
    - else
      %li
        = link_to t("profiles"), profiles_path
    ...
Run Code Online (Sandbox Code Playgroud)

谢谢.

Nat*_*aum 8

# helpers
def current_page_class(page)
  return :class => "current_page_item" if current_page?(page)
  return {}
end

-# Haml
#navigation
  %ul.tabbed
    %li{current_page_class(new_profile_path)}
      = link_to t("new_profile"), new_profile_path
    %li{current_page_class(profiles_path)}
      = link_to t("profiles"), profiles_path
    ...
Run Code Online (Sandbox Code Playgroud)