navigator_rails 0.0.7 → 0.0.8

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: 3a2e854e9027767c42083891e4a7795691788a7c
4
- data.tar.gz: 2e60427957fb82d5d9e3a161c823a2daf0488d98
3
+ metadata.gz: 67b1c5f2e4f7e6ca51232e75777ef44ab21d359c
4
+ data.tar.gz: 168a0cd8bae2fcaca67a26dfac4175d206a4049c
5
5
  SHA512:
6
- metadata.gz: ecf892bd43ec1b2ebff9f0eacab89e892c36959b84740f646763187ad7716b8deff7677443c0af6030137e5e88422db72c872637eeb7d80c1b18ae3fb1f0cf45
7
- data.tar.gz: 0c3692e7d153532b194a337d9a20f05f51846b0f78fd959b0ddbf3cc663b73caa521440788c032781fc667b5c57c0cf38ad04503aa6a29e8470bc4efa45819a6
6
+ metadata.gz: bf3437be8268b16e53eae146316fc9923156c500ef56812605ac8f876c3cbf6c52ef7f9b7733437b979159561931b2345732378c002847eb3577f9a97cfe4a06
7
+ data.tar.gz: 3a6ce1b59fcb68b2f1a78f1198981132d5ea9775f68e99e8ea81ceb6746f9a663d404c2d622df8c381f0a2b5f58455eae727b3aaf08eaf926224d2f20fd34e50
data/README.rdoc CHANGED
@@ -38,7 +38,7 @@ Then add the menu_items like follows:
38
38
 
39
39
  Example:
40
40
 
41
- menu_item path: '/head/left/Posts/new', constraint: 'can? :create, Post', content: 'link_to "Posts", new_post_path', order: 1, active_on: :index
41
+ menu_item path: '/head/left/Posts/new', constraint: 'can? :create, Post', content: 'link_to "Posts", new_post_path', order: 1, active_on: :new
42
42
 
43
43
  = Structure
44
44
 
@@ -15,36 +15,25 @@ module NavigatorRails
15
15
  def resource
16
16
  @resource
17
17
  end
18
- def children_with params={}
19
- children = Store.children_of resource
20
- if params[:except]
21
- children = children.collect do |child|
22
- unless child.type
23
- child
24
- else
25
- child unless child.type.to_sym == params[:except].to_sym
26
- end
27
- end.compact
28
- end
29
- if params[:only]
30
- children = children.collect do |child|
31
- next unless child.type
32
- child if child.type.to_sym == params[:except].to_sym
33
- end.compact
34
- end
35
- children
36
- end
37
18
  def child_count
38
- children_with.count
19
+ resource.children.count
39
20
  end
40
21
  def has_visible_children
41
- children_with.collect do |child|
22
+ children = resource.children
23
+ return false if children.empty?
24
+ children.collect do |child|
42
25
  child.constraint
43
26
  end.reduce(:|)
44
27
  end
28
+ def children_except params={}
29
+ resource.children_except(params)
30
+ end
45
31
  def children params={}
46
- children = children_with params
47
- children.collect do |child|
32
+ resource.children(params)
33
+ end
34
+ def draw_children elements=nil
35
+ elements ||= resource.children
36
+ elements.collect do |child|
48
37
  next unless child.constraint
49
38
  child.decorator.draw(child).html_safe
50
39
  end.join
@@ -6,7 +6,7 @@ module NavigatorRails
6
6
  return '' unless has_visible_children
7
7
  <<-LINK_DECORATION.strip_heredoc
8
8
  <ul class="nav navbar-nav navbar-<%= resource.relative_path %>">
9
- <%= children %>
9
+ <%= draw_children %>
10
10
  </ul>
11
11
  LINK_DECORATION
12
12
  end
@@ -3,7 +3,7 @@ module NavigatorRails
3
3
  class Navigator
4
4
  include NavigatorRails::Decorators::Generic
5
5
  def brand
6
- brand = Store.children_of(resource).select{|x|x.type==:brand}.first
6
+ brand = resource.children(type: :brand).first
7
7
  brand.decorator.draw(brand).html_safe
8
8
  end
9
9
  def template
@@ -20,7 +20,7 @@ module NavigatorRails
20
20
  <%= brand %>
21
21
  </div>
22
22
  <div class="collapse navbar-collapse">
23
- <%= children except: :brand %>
23
+ <%= draw_children(children_except(type: :brand)) %>
24
24
  </div>
25
25
  </div>
26
26
  </div>
@@ -8,7 +8,7 @@ module NavigatorRails
8
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
- <%= children %>
11
+ <%= draw_children %>
12
12
  </ul>
13
13
  </li>
14
14
  LINK_DECORATION
@@ -32,6 +32,24 @@ module NavigatorRails
32
32
  def constraint
33
33
  Constraint.process(@constraint.to_s) rescue Store.delete self
34
34
  end
35
+ def children params={}
36
+ children = Store.children_of self
37
+ children.collect do |child|
38
+ params.each do |attribute,value|
39
+ child=nil and break unless child and child.send(attribute) == value
40
+ end
41
+ child
42
+ end.compact
43
+ end
44
+ def children_except params={}
45
+ children = Store.children_of self
46
+ children.collect do |child|
47
+ params.each do |attribute,value|
48
+ child=nil and break if child and child.send(attribute) == value
49
+ end
50
+ child
51
+ end.compact
52
+ end
35
53
  def active
36
54
  return unless @active_on
37
55
  return unless Constraint.process('controller').class == @active_controller
@@ -3,12 +3,58 @@ module NavigatorRails
3
3
  extend ActiveSupport::Concern
4
4
  included do
5
5
  class_attribute :navigator_rails_items
6
+ hide_action :navigator_rails_items
7
+ hide_action :navigator_rails_items=
8
+ hide_action :navigator_rails_items?
9
+ hide_action :navigator
6
10
  end
7
11
  module ClassMethods
8
12
  def menu_item params={}
9
13
  self.navigator_rails_items ||= []
10
14
  self.navigator_rails_items << Item.new(params.merge(active_controller: self))
11
15
  end
16
+ def scaffold_menu path='/head/left'
17
+ submenu_path = self.to_s.sub(/Controller$/,'')
18
+ self.navigator_rails_items ||= []
19
+ methods = []
20
+ methods << 'index' if self.action_methods.include? 'index'
21
+ methods << 'new' if self.action_methods.include? 'new'
22
+ methods << 'show' if self.action_methods.include? 'show'
23
+ methods << 'edit' if self.action_methods.include? 'edit'
24
+ methods << 'destroy' if self.action_methods.include? 'destroy'
25
+ methods += (self.action_methods.to_a - methods)
26
+
27
+ methods.each do |action|
28
+ params = {}
29
+ params[:constraint] = NavigatorRails.config[:default_constraint].to_s
30
+ params[:constraint] += ' and user_signed_in? ' if NavigatorRails.config[:use_devise]
31
+ case action.to_sym
32
+ when :create, :update
33
+ next
34
+ when :index
35
+ path_helper_string = "#{submenu_path}Url".underscore
36
+ label = action
37
+ when :destroy
38
+ params[:constraint] += " and @#{submenu_path.singularize.underscore} != nil"
39
+ path_helper_string = "@#{submenu_path.singularize}, method: :delete".underscore
40
+ label = "#{action} \#{@#{submenu_path.singularize.underscore}.to_s}"
41
+ when :show
42
+ params[:constraint] += " and @#{submenu_path.singularize.underscore} != nil"
43
+ path_helper_string = "@#{submenu_path.singularize}".underscore
44
+ label = "#{action} \#{@#{submenu_path.singularize.underscore}.to_s}"
45
+ when :edit
46
+ params[:constraint] += " and @#{submenu_path.singularize.underscore} != nil"
47
+ path_helper_string = "#{action.classify}#{submenu_path.singularize}Url(@#{submenu_path.singularize})".underscore
48
+ label = "#{action} \#{@#{submenu_path.singularize.underscore}.to_s}"
49
+ else
50
+ path_helper_string = "#{action.classify}#{submenu_path.singularize}Url".underscore
51
+ label = action
52
+ end
53
+ params[:path] = "#{path}/#{submenu_path}/#{action}"
54
+ params[:content] = "link_to(\"#{label}\",#{path_helper_string})"
55
+ self.navigator_rails_items << Item.new(params)
56
+ end
57
+ end
12
58
  end
13
59
  end
14
60
  end
@@ -4,6 +4,7 @@ module NavigatorRails
4
4
  class Store
5
5
  include Singleton
6
6
  class << self
7
+ def items; Store.instance.items; end
7
8
  def add item; Store.instance.add item; end
8
9
  def get path; Store.instance.get path; end
9
10
  def delete item; Store.instance.delete item; end
@@ -1,3 +1,3 @@
1
1
  module NavigatorRails
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: navigator_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - mathias Kaufmann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-17 00:00:00.000000000 Z
11
+ date: 2014-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails