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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f67ddd75cd352cf56cf93de0790997a2b517b18c
4
- data.tar.gz: eb67d1513a5f388eda9bd57e7fb9967b7218e785
3
+ metadata.gz: 35a1a102b4b6008d98e37949dc9579b644884977
4
+ data.tar.gz: dd4981ca0f515497bd11248a7a55b660ef6a09a5
5
5
  SHA512:
6
- metadata.gz: 357bfea36b1aa0c632f68ca91bb4b5d847948f9b6b4ccd2378687e70bc578fc504bca3df358bc83fde773e7ab023eb88dec8203669afb15efbd031811eb18718
7
- data.tar.gz: b257b240bbcab1adad13b1a5a5fe3a2be6f65e8e10e9d3d2564f7f976b22ed24b8ba74a7c3838a5909e8fa15e17e9c72011ba4b9ca5707503add1d05d2665ff1
6
+ metadata.gz: b4c65abefe70e1a59c5935d8714a779d5221c9ca09c8209997da4a242aac98e51398d1e5af12b52a138067897af0c2395695a41473fa97553bf7df2975dc19f6
7
+ data.tar.gz: 0813e03755966c7934496882d9323280518dd0492c4c84a73cc6a31a1d8480a3127924bf9a5a6eafdce4343bef4715f107d88fd074f7715b0688a8cd2dd0f1ea
@@ -4,7 +4,7 @@ module NavigatorRails
4
4
  include NavigatorRails::Decorators::Generic
5
5
  def template
6
6
  <<-LINK_DECORATION.strip_heredoc
7
- <li><%= resource.content %></li>
7
+ <li class="<%= resource.active %>"><%= resource.content %></li>
8
8
  LINK_DECORATION
9
9
  end
10
10
  end
@@ -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 %>
@@ -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
@@ -7,7 +7,7 @@ module NavigatorRails
7
7
  module ClassMethods
8
8
  def menu_item params={}
9
9
  self.navigator_rails_items ||= []
10
- self.navigator_rails_items << Item.new(params)
10
+ self.navigator_rails_items << Item.new(params.merge(active_controller: self))
11
11
  end
12
12
  end
13
13
  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
- level = Item.level_of path
100
- type = Decorator.at level: level
101
- constraint = Constraint.default
102
- content = "#{File.basename(path)}"
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
- i18n_content = "'#{content}'.singularize.constantize.model_name.human(count: 2)"
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
- i18n_content = "'#{content}'.singularize.constantize.model_name.human(count: 1)"
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
- content =i18n_content ? i18n_content : "'#{content}'"
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
@@ -1,3 +1,3 @@
1
1
  module NavigatorRails
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  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
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: Done right navigation builder for Ruby on Rails
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