Hanami : 从视图或模板访问当前页面 URL

Hanami : access current page URL from views or templates

那些日子我正在发现 Hanami (Hanami 1.3),我正在完善我从事的测试项目,但我找不到 访问当前页面的方法 url/path 来自视图或模板(这个想法是处理导航链接的视觉状态,您可能已经猜到了)。

我试过猜助手的名字(routes.current_pageroutes.current_urlroutes.current...),但我并不走运。我检查了 routing helpers documentation, got through the hanami/hanami and hanami/router 存储库,但没有找到我要找的东西。

我是不是漏掉了什么,或者这根本不是内置的?

这就是我目前所做的。我按照 hanami documentation 定义了一个自定义助手,并使其对我的所有视图都可用,如下所示:

1。创建一个 Web::Helpers::PathHelper 模块

在那里我可以访问参数和请求路径:

# apps/web/helpers/path_helper.rb
module Web
  module Helpers
    module PathHelper
      private

      def current_path
        params.env['REQUEST_PATH']
      end

      def current_page?(path)
        current_path == path
      end
    end
  end
end

2。确保 helpers 目录由应用程序加载

向应用程序 load_paths 变量添加了 helpers 路径,以便在应用程序加载代码时加载我的助手。

  # apps/web/application.rb
  # Relative load paths where this application will recursively load the
  # code.
  #
  # When you add new directories, remember to add them here.
  #
  load_paths << [
    'helpers',
    'controllers',
    'views'
  ]

3。确保我的新助手可用于每个视图

..通过使用 application.rb 中的 view.prepare 块:

  # apps/web/application.rb
  # Configure the code that will yield each time Web::View is included
  # This is useful for sharing common functionality
  #
  # See: http://www.rubydoc.info/gems/hanami-view#Configuration
  view.prepare do
    include Hanami::Helpers
    include Web::Assets::Helpers
    include Web::Helpers::PathHelper
  end

4.现在我可以在每个视图中使用我的助手了!

现在,从我的模板或我的视图对象中,我可以访问我自己的 current_pathcurrent_page?(path) 助手,并用它们做我需要做的事情。我不知道这是否是最直接的方法,但至少它有效。