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 +4 -4
- data/README.rdoc +1 -1
- data/lib/navigator_rails/decorators/generic.rb +12 -23
- data/lib/navigator_rails/decorators/navbar.rb +1 -1
- data/lib/navigator_rails/decorators/navigator.rb +2 -2
- data/lib/navigator_rails/decorators/submenu.rb +1 -1
- data/lib/navigator_rails/item.rb +18 -0
- data/lib/navigator_rails/navigatable.rb +46 -0
- data/lib/navigator_rails/store.rb +1 -0
- 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: 67b1c5f2e4f7e6ca51232e75777ef44ab21d359c
|
4
|
+
data.tar.gz: 168a0cd8bae2fcaca67a26dfac4175d206a4049c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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: :
|
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
|
-
|
19
|
+
resource.children.count
|
39
20
|
end
|
40
21
|
def has_visible_children
|
41
|
-
|
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
|
47
|
-
|
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
|
@@ -3,7 +3,7 @@ module NavigatorRails
|
|
3
3
|
class Navigator
|
4
4
|
include NavigatorRails::Decorators::Generic
|
5
5
|
def brand
|
6
|
-
brand =
|
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
|
-
<%=
|
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
|
-
<%=
|
11
|
+
<%= draw_children %>
|
12
12
|
</ul>
|
13
13
|
</li>
|
14
14
|
LINK_DECORATION
|
data/lib/navigator_rails/item.rb
CHANGED
@@ -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
|
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.
|
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-
|
11
|
+
date: 2014-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|