navigator_rails 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/navigator_rails/decorators/link.rb +1 -1
- data/lib/navigator_rails/decorators/submenu.rb +1 -1
- data/lib/navigator_rails/item.rb +8 -1
- data/lib/navigator_rails/navigatable.rb +1 -1
- data/lib/navigator_rails/store.rb +27 -13
- data/lib/navigator_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35a1a102b4b6008d98e37949dc9579b644884977
|
4
|
+
data.tar.gz: dd4981ca0f515497bd11248a7a55b660ef6a09a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4c65abefe70e1a59c5935d8714a779d5221c9ca09c8209997da4a242aac98e51398d1e5af12b52a138067897af0c2395695a41473fa97553bf7df2975dc19f6
|
7
|
+
data.tar.gz: 0813e03755966c7934496882d9323280518dd0492c4c84a73cc6a31a1d8480a3127924bf9a5a6eafdce4343bef4715f107d88fd074f7715b0688a8cd2dd0f1ea
|
@@ -5,7 +5,7 @@ module NavigatorRails
|
|
5
5
|
def template
|
6
6
|
return '' unless has_visible_children
|
7
7
|
<<-LINK_DECORATION.strip_heredoc
|
8
|
-
<li class="dropdown">
|
8
|
+
<li class="dropdown <%= resource.active %>">
|
9
9
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><%= resource.content %> <span class="caret"></span></a>
|
10
10
|
<ul class="dropdown-menu" role="menu">
|
11
11
|
<%= children %>
|
data/lib/navigator_rails/item.rb
CHANGED
@@ -11,7 +11,7 @@ module NavigatorRails
|
|
11
11
|
path
|
12
12
|
end
|
13
13
|
end
|
14
|
-
attr_accessor :path, :order, :type
|
14
|
+
attr_accessor :path, :order, :type, :active_on, :active_controller
|
15
15
|
attr_writer :content, :constraint
|
16
16
|
def save
|
17
17
|
self.type ||= Decorator.at level: self.level
|
@@ -32,5 +32,12 @@ module NavigatorRails
|
|
32
32
|
def constraint
|
33
33
|
Constraint.process(@constraint.to_s) rescue Store.delete self
|
34
34
|
end
|
35
|
+
def active
|
36
|
+
return unless @active_on
|
37
|
+
return unless Constraint.process('controller').class == @active_controller
|
38
|
+
return "active" if @active_on == :all
|
39
|
+
return unless Constraint.process('params')['action'].to_sym == @active_on
|
40
|
+
"active"
|
41
|
+
end
|
35
42
|
end
|
36
43
|
end
|
@@ -13,7 +13,6 @@ module NavigatorRails
|
|
13
13
|
def process_config_builders; Store.instance.process_config_builders; end
|
14
14
|
end
|
15
15
|
def initialize
|
16
|
-
puts "Initializing store"
|
17
16
|
@items ||= []
|
18
17
|
end
|
19
18
|
def items
|
@@ -35,10 +34,18 @@ module NavigatorRails
|
|
35
34
|
@items.delete(item)
|
36
35
|
end
|
37
36
|
def children_of resource
|
38
|
-
@items.collect do |item|
|
37
|
+
unordered_items = @items.collect do |item|
|
39
38
|
next unless item.path =~ /^#{resource.path}\//
|
40
39
|
next unless item.level == resource.level+1
|
41
|
-
item
|
40
|
+
[item, item.order]
|
41
|
+
end.compact
|
42
|
+
orderable_items = unordered_items.collect do |item,order|
|
43
|
+
[order,item] if order
|
44
|
+
end.compact
|
45
|
+
items = []
|
46
|
+
items += orderable_items.sort.to_h.values unless orderable_items.empty?
|
47
|
+
items += unordered_items.collect do |item,order|
|
48
|
+
item unless order
|
42
49
|
end.compact
|
43
50
|
end
|
44
51
|
def process_config_builders
|
@@ -96,21 +103,28 @@ module NavigatorRails
|
|
96
103
|
end
|
97
104
|
paths.each do |path|
|
98
105
|
next unless get(path).nil?
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
106
|
+
params = {}
|
107
|
+
level = Item.level_of path
|
108
|
+
params[:path] = path
|
109
|
+
params[:type] = Decorator.at level: level
|
110
|
+
params[:constraint] = Constraint.default
|
111
|
+
params[:content] = "#{File.basename(path)}"
|
112
|
+
begin
|
113
|
+
params[:active_controller] = "#{params[:content]}Controller".constantize
|
114
|
+
params[:active_on] = :all
|
115
|
+
rescue NameError
|
116
|
+
nil
|
117
|
+
end
|
103
118
|
begin
|
104
|
-
content.singularize.constantize.model_name.human(count: 2)
|
105
|
-
|
119
|
+
params[:content].singularize.constantize.model_name.human(count: 2)
|
120
|
+
params[:content] = "'#{params[:content]}'.singularize.constantize.model_name.human(count: 2)"
|
106
121
|
rescue I18n::InvalidPluralizationData
|
107
|
-
content.singularize.constantize.model_name.human(count: 1)
|
108
|
-
|
122
|
+
params[:content].singularize.constantize.model_name.human(count: 1)
|
123
|
+
params[:content] = "'#{params[:content]}'.singularize.constantize.model_name.human(count: 1)"
|
109
124
|
rescue NameError
|
110
125
|
nil
|
111
126
|
end
|
112
|
-
|
113
|
-
Item.new(path:path, type: type, content: content, constraint: constraint).save
|
127
|
+
Item.new(params).save
|
114
128
|
end
|
115
129
|
end
|
116
130
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: navigator_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mathias Kaufmann
|
@@ -146,7 +146,7 @@ rubyforge_project:
|
|
146
146
|
rubygems_version: 2.2.2
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
|
-
summary:
|
149
|
+
summary: Navigation for Ruby on Rails done right (kind of)
|
150
150
|
test_files:
|
151
151
|
- test/dummy/README.rdoc
|
152
152
|
- test/dummy/Rakefile
|