simpler_navigation 0.1.4 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/simpler_navigation/renderers/base.rb +8 -2
- data/lib/simpler_navigation/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17005023a740a755f9087a321deb827895193f83f93ee1c2937ac3528ec61a99
|
4
|
+
data.tar.gz: 9f7e5da8d8fcbc5488e938381617973f507ccd4b0062d074e9a652533bd2d7d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cb0a7b23440a2bfca1d5efd435b10566b75ea1a596e96343bfca3c4e6815d7e956287a3a53f4c4c27b3e72c519209a9f7b51acbc79e7d3ca371bca271591e50
|
7
|
+
data.tar.gz: 2ff47480a7f5ddec9f55cea3d5f925cb4197002b410a17ea80ba171daea7a11a93e68004c242004cb476da601ad23c7ad91e4b84a2b60ecd7c09157b3b7215ca
|
data/Gemfile.lock
CHANGED
@@ -7,6 +7,10 @@ module SimplerNavigation
|
|
7
7
|
include ActionView::Helpers::UrlHelper
|
8
8
|
include ActionView::Helpers::OutputSafetyHelper
|
9
9
|
|
10
|
+
attr_reader :context
|
11
|
+
attr_reader :item
|
12
|
+
attr_reader :options
|
13
|
+
|
10
14
|
def initialize(context, item, options = {})
|
11
15
|
@selected = {}
|
12
16
|
@active_leaf = {}
|
@@ -16,6 +20,8 @@ module SimplerNavigation
|
|
16
20
|
@item = item
|
17
21
|
@options = options
|
18
22
|
|
23
|
+
@options[:level] ||= :all
|
24
|
+
|
19
25
|
@request_fullpath = context.request.fullpath
|
20
26
|
if @options[:request_fullpath]
|
21
27
|
@request_fullpath = @options[:request_fullpath]
|
@@ -119,7 +125,7 @@ module SimplerNavigation
|
|
119
125
|
when Regexp
|
120
126
|
selected = item.options[:highlights_on].match?(@request_fullpath)
|
121
127
|
when Proc
|
122
|
-
selected = item.options[:highlights_on].call
|
128
|
+
selected = item.options[:highlights_on].call(self)
|
123
129
|
else
|
124
130
|
item_url_path = url_path(item.url).downcase
|
125
131
|
selected = @request_fullpath.downcase.start_with?(item_url_path)
|
@@ -150,7 +156,7 @@ module SimplerNavigation
|
|
150
156
|
|
151
157
|
show = true
|
152
158
|
if !item.options[:if].nil?
|
153
|
-
show = item.options[:if].call
|
159
|
+
show = item.options[:if].call(self)
|
154
160
|
elsif !item.options[:unless].nil?
|
155
161
|
show = !item.options[:unless].call
|
156
162
|
end
|