lolita 3.4.2 → 3.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +36 -36
- data/Gemfile +29 -29
- data/README.md +147 -147
- data/Rakefile +6 -6
- data/app/assets/javascripts/lolita/application.js +6 -6
- data/app/assets/javascripts/lolita/tab.js +100 -100
- data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
- data/app/assets/stylesheets/lolita/PIE.htc +81 -81
- data/app/assets/stylesheets/lolita/application.css +6 -6
- data/app/assets/stylesheets/lolita/default.css.erb +169 -169
- data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
- data/app/assets/stylesheets/lolita/style.css.erb +553 -553
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/helpers/components/lolita/configuration_component.rb +20 -20
- data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
- data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
- data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/field/string/text/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/tab/_display.html.haml +3 -3
- data/app/views/components/lolita/configuration/tabs/_form.html.haml +6 -6
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_gap.html.erb +8 -8
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_page.html.erb +12 -12
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
- data/app/views/lolita/info/index.html.erb +232 -232
- data/author +1 -1
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +19 -19
- data/lib/generators/lolita/uninstall_generator.rb +70 -70
- data/lib/generators/templates/lolita.rb +13 -13
- data/lib/lolita.rb +140 -140
- data/lib/lolita/adapter/abstract_adapter.rb +15 -15
- data/lib/lolita/adapter/active_record.rb +227 -227
- data/lib/lolita/adapter/common_helper.rb +221 -221
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +241 -241
- data/lib/lolita/components/base.rb +11 -11
- data/lib/lolita/configuration.rb +60 -60
- data/lib/lolita/configuration/column.rb +181 -181
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/hidden.rb +12 -12
- data/lib/lolita/configuration/field/integer.rb +11 -11
- data/lib/lolita/configuration/field/string.rb +16 -16
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/filter.rb +116 -116
- data/lib/lolita/configuration/list.rb +200 -200
- data/lib/lolita/configuration/search.rb +104 -104
- data/lib/lolita/controllers/component_helpers.rb +156 -156
- data/lib/lolita/controllers/internal_helpers.rb +71 -71
- data/lib/lolita/controllers/url_helpers.rb +7 -7
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +54 -54
- data/lib/lolita/navigation/tree.rb +132 -132
- data/lib/lolita/rails/engine.rb +23 -23
- data/lib/lolita/rails/routes.rb +129 -129
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/search/simple.rb +75 -75
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/system_configuration/base.rb +178 -178
- data/lib/lolita/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +30 -30
- data/lib/tasks/tinymce-assets.rake +6 -6
- data/lolita.gemspec +34 -34
- data/spec/adapter/common_helper_spec.rb +95 -95
- data/spec/adapter_helper.rb +42 -42
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +22 -22
- data/spec/configuration/field_spec.rb +118 -118
- data/spec/configuration/filter_spec.rb +131 -131
- data/spec/configuration/tab_spec.rb +187 -187
- data/spec/configuration/tabs_spec.rb +120 -120
- data/spec/generators/lolita/install_generator_spec.rb +54 -54
- data/spec/generators/lolita/uninstall_generator_spec.rb +48 -48
- data/spec/orm/mongoid.rb +12 -12
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/mongoid/address.rb +7 -7
- data/spec/rails_app/app/mongoid/category.rb +18 -18
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/post.rb +30 -30
- data/spec/rails_app/app/mongoid/preference.rb +5 -5
- data/spec/rails_app/app/mongoid/profile.rb +13 -13
- data/spec/rails_app/app/mongoid/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/application.rb +33 -33
- data/spec/rails_app/config/boot.rb +7 -7
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/development.rb +23 -23
- data/spec/rails_app/config/environments/production.rb +37 -37
- data/spec/rails_app/config/environments/test.rb +37 -37
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +2 -2
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/spec_helper.rb +51 -51
- data/vendor/assets/javascripts/application_vendor_lolita.js +4 -4
- data/vendor/assets/javascripts/jquery-numeric.js +279 -279
- data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
- metadata +4 -3
@@ -1,133 +1,133 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Navigation
|
3
|
-
class Tree
|
4
|
-
include Enumerable
|
5
|
-
include Lolita::Hooks
|
6
|
-
|
7
|
-
class<<self
|
8
|
-
def remember(tree)
|
9
|
-
@@trees||={}
|
10
|
-
@@trees[tree.name.to_sym]=tree
|
11
|
-
end
|
12
|
-
|
13
|
-
def [](name)
|
14
|
-
@@trees||={}
|
15
|
-
@@trees[name]
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
add_hooks :before_branch_added, :after_branch_added
|
20
|
-
|
21
|
-
attr_reader :name,:root,:default_position,:branches,:parent
|
22
|
-
|
23
|
-
def initialize(name)
|
24
|
-
@name=name
|
25
|
-
@default_possition=:append
|
26
|
-
@branches=[]
|
27
|
-
end
|
28
|
-
|
29
|
-
def each
|
30
|
-
@branches.each do |branch|
|
31
|
-
yield branch
|
32
|
-
if branch.children.any?
|
33
|
-
branch.children.each do |child|
|
34
|
-
yield child
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def root?
|
41
|
-
!parent
|
42
|
-
end
|
43
|
-
|
44
|
-
def visible?(view)
|
45
|
-
self.branches.inject([]){|result,branch|
|
46
|
-
if branch.visible?(view)
|
47
|
-
result << true
|
48
|
-
else
|
49
|
-
result
|
50
|
-
end
|
51
|
-
}.any?
|
52
|
-
end
|
53
|
-
|
54
|
-
def populate_urls_in_branches(view)
|
55
|
-
self.each do |branch|
|
56
|
-
branch.populate_url(view)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
def method_missing method_name, *args
|
61
|
-
@branches.send(method_name.to_sym,*args)
|
62
|
-
end
|
63
|
-
|
64
|
-
|
65
|
-
def append(*branch)
|
66
|
-
adding_branch(*branch) do |fixed_branch|
|
67
|
-
@branches<<fixed_branch
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
def prepend(*branch)
|
72
|
-
adding_branch(*branch) do |fixed_branch|
|
73
|
-
@branches.unshift(fixed_branch)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
def after(given_branch,*other_branch)
|
78
|
-
index=get_branch_index(given_branch)
|
79
|
-
|
80
|
-
adding_branch(*other_branch) do |fixed_branch|
|
81
|
-
put_in_branches(fixed_branch,index)
|
82
|
-
end
|
83
|
-
end
|
84
|
-
|
85
|
-
def before(given_branch,*other_branch)
|
86
|
-
index=get_branch_index(given_branch)
|
87
|
-
|
88
|
-
adding_branch(*other_branch) do |fixed_branch|
|
89
|
-
put_in_branches(fixed_branch,index-1)
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
def get_branch_index(given_branch)
|
94
|
-
@branches.each_with_index{|branch,index|
|
95
|
-
return index if given_branch==branch
|
96
|
-
}
|
97
|
-
raise ArgumentError, "Branch #{given_branch.inspect} not exists in #{self.inspect}"
|
98
|
-
end
|
99
|
-
|
100
|
-
def set_parent(new_parent)
|
101
|
-
@parent=new_parent
|
102
|
-
end
|
103
|
-
|
104
|
-
private
|
105
|
-
|
106
|
-
def adding_branch *branch
|
107
|
-
self.run(:before_branch_added,*branch)
|
108
|
-
fixed_branch=fix_branch(*branch)
|
109
|
-
yield fixed_branch
|
110
|
-
@last_branch=fixed_branch
|
111
|
-
self.run(:after_branch_added,fixed_branch)
|
112
|
-
fixed_branch
|
113
|
-
end
|
114
|
-
|
115
|
-
def fix_branch(*branch)
|
116
|
-
unless branch[0].is_a?(Lolita::Navigation::Branch)
|
117
|
-
options=branch.extract_options!
|
118
|
-
Lolita::Navigation::Branch.get_or_create(*branch,options.merge(:tree=>self))
|
119
|
-
else
|
120
|
-
branch[0].tree=self
|
121
|
-
branch[0]
|
122
|
-
end
|
123
|
-
end
|
124
|
-
|
125
|
-
def put_in_branches branch,index
|
126
|
-
before_part=@branches.slice(0,index+1) || []
|
127
|
-
after_part=@branches.slice(index+1,@branches.size-index) || []
|
128
|
-
@branches=before_part+[branch]+after_part
|
129
|
-
end
|
130
|
-
|
131
|
-
end
|
132
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Navigation
|
3
|
+
class Tree
|
4
|
+
include Enumerable
|
5
|
+
include Lolita::Hooks
|
6
|
+
|
7
|
+
class<<self
|
8
|
+
def remember(tree)
|
9
|
+
@@trees||={}
|
10
|
+
@@trees[tree.name.to_sym]=tree
|
11
|
+
end
|
12
|
+
|
13
|
+
def [](name)
|
14
|
+
@@trees||={}
|
15
|
+
@@trees[name]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
add_hooks :before_branch_added, :after_branch_added
|
20
|
+
|
21
|
+
attr_reader :name,:root,:default_position,:branches,:parent
|
22
|
+
|
23
|
+
def initialize(name)
|
24
|
+
@name=name
|
25
|
+
@default_possition=:append
|
26
|
+
@branches=[]
|
27
|
+
end
|
28
|
+
|
29
|
+
def each
|
30
|
+
@branches.each do |branch|
|
31
|
+
yield branch
|
32
|
+
if branch.children.any?
|
33
|
+
branch.children.each do |child|
|
34
|
+
yield child
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def root?
|
41
|
+
!parent
|
42
|
+
end
|
43
|
+
|
44
|
+
def visible?(view)
|
45
|
+
self.branches.inject([]){|result,branch|
|
46
|
+
if branch.visible?(view)
|
47
|
+
result << true
|
48
|
+
else
|
49
|
+
result
|
50
|
+
end
|
51
|
+
}.any?
|
52
|
+
end
|
53
|
+
|
54
|
+
def populate_urls_in_branches(view)
|
55
|
+
self.each do |branch|
|
56
|
+
branch.populate_url(view)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def method_missing method_name, *args
|
61
|
+
@branches.send(method_name.to_sym,*args)
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
def append(*branch)
|
66
|
+
adding_branch(*branch) do |fixed_branch|
|
67
|
+
@branches<<fixed_branch
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def prepend(*branch)
|
72
|
+
adding_branch(*branch) do |fixed_branch|
|
73
|
+
@branches.unshift(fixed_branch)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def after(given_branch,*other_branch)
|
78
|
+
index=get_branch_index(given_branch)
|
79
|
+
|
80
|
+
adding_branch(*other_branch) do |fixed_branch|
|
81
|
+
put_in_branches(fixed_branch,index)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def before(given_branch,*other_branch)
|
86
|
+
index=get_branch_index(given_branch)
|
87
|
+
|
88
|
+
adding_branch(*other_branch) do |fixed_branch|
|
89
|
+
put_in_branches(fixed_branch,index-1)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def get_branch_index(given_branch)
|
94
|
+
@branches.each_with_index{|branch,index|
|
95
|
+
return index if given_branch==branch
|
96
|
+
}
|
97
|
+
raise ArgumentError, "Branch #{given_branch.inspect} not exists in #{self.inspect}"
|
98
|
+
end
|
99
|
+
|
100
|
+
def set_parent(new_parent)
|
101
|
+
@parent=new_parent
|
102
|
+
end
|
103
|
+
|
104
|
+
private
|
105
|
+
|
106
|
+
def adding_branch *branch
|
107
|
+
self.run(:before_branch_added,*branch)
|
108
|
+
fixed_branch=fix_branch(*branch)
|
109
|
+
yield fixed_branch
|
110
|
+
@last_branch=fixed_branch
|
111
|
+
self.run(:after_branch_added,fixed_branch)
|
112
|
+
fixed_branch
|
113
|
+
end
|
114
|
+
|
115
|
+
def fix_branch(*branch)
|
116
|
+
unless branch[0].is_a?(Lolita::Navigation::Branch)
|
117
|
+
options=branch.extract_options!
|
118
|
+
Lolita::Navigation::Branch.get_or_create(*branch,options.merge(:tree=>self))
|
119
|
+
else
|
120
|
+
branch[0].tree=self
|
121
|
+
branch[0]
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
def put_in_branches branch,index
|
126
|
+
before_part=@branches.slice(0,index+1) || []
|
127
|
+
after_part=@branches.slice(index+1,@branches.size-index) || []
|
128
|
+
@branches=before_part+[branch]+after_part
|
129
|
+
end
|
130
|
+
|
131
|
+
end
|
132
|
+
end
|
133
133
|
end
|
data/lib/lolita/rails/engine.rb
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
require 'lolita/controllers'
|
2
|
-
|
3
|
-
ActiveSupport.on_load(:action_controller) {
|
4
|
-
include Lolita::Controllers::UrlHelpers
|
5
|
-
include Lolita::Controllers::ComponentHelpers
|
6
|
-
include Lolita::Extensions
|
7
|
-
}
|
8
|
-
ActiveSupport.on_load(:action_view) {
|
9
|
-
include Lolita::Controllers::UrlHelpers
|
10
|
-
include Lolita::Controllers::ComponentHelpers
|
11
|
-
include Lolita::Controllers::RailsHelpers
|
12
|
-
include Lolita::Extensions
|
13
|
-
}
|
14
|
-
|
15
|
-
module Lolita
|
16
|
-
class Engine < Rails::Engine
|
17
|
-
config.lolita=Lolita
|
18
|
-
config.i18n.load_path += Dir[File.join(Lolita.root,'config', 'locales','default', '*.{yml}')]
|
19
|
-
config.before_initialize do
|
20
|
-
Haml.init_rails(binding)
|
21
|
-
Haml::Template.options[:format] = :html5
|
22
|
-
end
|
23
|
-
end
|
1
|
+
require 'lolita/controllers'
|
2
|
+
|
3
|
+
ActiveSupport.on_load(:action_controller) {
|
4
|
+
include Lolita::Controllers::UrlHelpers
|
5
|
+
include Lolita::Controllers::ComponentHelpers
|
6
|
+
include Lolita::Extensions
|
7
|
+
}
|
8
|
+
ActiveSupport.on_load(:action_view) {
|
9
|
+
include Lolita::Controllers::UrlHelpers
|
10
|
+
include Lolita::Controllers::ComponentHelpers
|
11
|
+
include Lolita::Controllers::RailsHelpers
|
12
|
+
include Lolita::Extensions
|
13
|
+
}
|
14
|
+
|
15
|
+
module Lolita
|
16
|
+
class Engine < Rails::Engine
|
17
|
+
config.lolita=Lolita
|
18
|
+
config.i18n.load_path += Dir[File.join(Lolita.root,'config', 'locales','default', '*.{yml}')]
|
19
|
+
config.before_initialize do
|
20
|
+
Haml.init_rails(binding)
|
21
|
+
Haml::Template.options[:format] = :html5
|
22
|
+
end
|
23
|
+
end
|
24
24
|
end
|
data/lib/lolita/rails/routes.rb
CHANGED
@@ -1,129 +1,129 @@
|
|
1
|
-
module ActionDispatch::Routing
|
2
|
-
|
3
|
-
class RouteSet
|
4
|
-
|
5
|
-
# Each time when #draw method is called this is called as well.
|
6
|
-
# It creates :left_side_navigation tree and call callbacks
|
7
|
-
# Lolita#before_routes_loaded and Lolita#after_routes_loaded
|
8
|
-
def draw_with_lolita *args,&block
|
9
|
-
Lolita.run(:before_routes_loaded)
|
10
|
-
draw_without_lolita *args,&block
|
11
|
-
Lolita.run(:after_routes_loaded)
|
12
|
-
end
|
13
|
-
|
14
|
-
alias_method_chain :draw, :lolita
|
15
|
-
end
|
16
|
-
|
17
|
-
class Mapper
|
18
|
-
|
19
|
-
# Every module, that is used with lolita and has routes, need to have
|
20
|
-
# <code>resource method</code>, for example, lolita_rest, that should be added
|
21
|
-
# to ActionDispatch::Routing::Mapper class, as a *protected* method.
|
22
|
-
# Module can automaticliy add resource route or allow user to do it.
|
23
|
-
# It accepts some useful options
|
24
|
-
# * <tt>:module</tt>
|
25
|
-
# * <tt>:path</tt>
|
26
|
-
# * <tt>:as</tt>
|
27
|
-
# * <tt>:path_prefix</tt>
|
28
|
-
# * <tt>:controller</tt>
|
29
|
-
# * <tt>:class_name</tt>
|
30
|
-
# * <tt>:singular</tt>
|
31
|
-
# ====Example
|
32
|
-
# Lolita.add_module Lolita::Gallery,:route=>:gallery
|
33
|
-
# # in route.rb
|
34
|
-
# lolita_for :galleries
|
35
|
-
# # lolita_for try to call :lolita_gallery in Mapper class
|
36
|
-
def lolita_for *resources
|
37
|
-
|
38
|
-
return if migrating? || generating?
|
39
|
-
options = resources.extract_options!
|
40
|
-
|
41
|
-
options[:as] ||= @scope[:as] if @scope[:as].present?
|
42
|
-
options[:module] ||= @scope[:module] if @scope[:module].present?
|
43
|
-
options[:path_prefix] ||= @scope[:path] if @scope[:path].present?
|
44
|
-
resources.map!(&:to_sym)
|
45
|
-
all_resource_classes=[]
|
46
|
-
resources.each{|resource|
|
47
|
-
mapping = Lolita.add_mapping(resource,options)
|
48
|
-
Lolita.resources[mapping.name] = mapping
|
49
|
-
target_class = mapping.to
|
50
|
-
|
51
|
-
#TODO refactor all these variables
|
52
|
-
all_resource_classes<<target_class
|
53
|
-
|
54
|
-
lolita_scope mapping.name do
|
55
|
-
yield if block_given?
|
56
|
-
|
57
|
-
with_lolita_exclusive_scope mapping.fullpath,mapping.path do
|
58
|
-
|
59
|
-
# if not defined lolita default configuration in model, than can't use :rest
|
60
|
-
|
61
|
-
# if !target_class.respond_to?(:lolita) && !Lolita::routes[mapping.name]
|
62
|
-
# raise Lolita::NotFound, "Lolita not found in #{target_class}. Include Lolita::Configuration"
|
63
|
-
# elsif target_class.respond_to?(:lolita) && target_class.instance_variable_get(:@lolita).nil?
|
64
|
-
# warn("Lolita is not initialized, call `lolita` in #{target_class}")
|
65
|
-
# route = Lolita.routes[mapping.name] || Lolita.default_route
|
66
|
-
# #raise Lolita::NotInitialized, "Call lolita method in #{target_class}."
|
67
|
-
# else
|
68
|
-
# route=Lolita.routes[mapping.name] || Lolita.default_route
|
69
|
-
# end
|
70
|
-
route = Lolita.routes[mapping.name] || Lolita.default_route
|
71
|
-
unless route
|
72
|
-
raise Lolita::ModuleNotFound, "Module #{mapping.name.to_s.capitalize} not found!"
|
73
|
-
end
|
74
|
-
send(:"lolita_#{route}_route",mapping,mapping.controllers)
|
75
|
-
|
76
|
-
Lolita.conditional_routes(target_class).each do |route_name|
|
77
|
-
send(:"lolita_#{route_name}_route",mapping,mapping.controllers)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
end
|
82
|
-
|
83
|
-
mapping.add_to_navigation_tree
|
84
|
-
}
|
85
|
-
Lolita.common_routes(all_resource_classes).each do |route_name|
|
86
|
-
send(:"lolita_#{route_name}_route")
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
protected
|
91
|
-
|
92
|
-
def lolita_scope scope
|
93
|
-
constraint = lambda do |request|
|
94
|
-
request.env["lolita.mapping"] = Lolita.mappings[scope]
|
95
|
-
true
|
96
|
-
end
|
97
|
-
|
98
|
-
constraints(constraint) do
|
99
|
-
yield
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
def with_lolita_exclusive_scope new_path,new_as
|
104
|
-
old_as, old_path, old_module = @scope[:as], @scope[:path], @scope[:module]
|
105
|
-
@scope[:as], @scope[:path], @scope[:module] = new_as, new_path, nil
|
106
|
-
yield
|
107
|
-
ensure
|
108
|
-
@scope[:as], @scope[:path], @scope[:module] = old_as, old_path, old_module
|
109
|
-
end
|
110
|
-
|
111
|
-
private
|
112
|
-
|
113
|
-
def migrating?
|
114
|
-
if Lolita.application.skip_routes.respond_to?(:call)
|
115
|
-
Lolita.application.skip_routes.call
|
116
|
-
else
|
117
|
-
File.basename($0).match(/^rake/) && (ARGV.detect{|arg| arg.to_s.match(/db|apartment/)})
|
118
|
-
end
|
119
|
-
end
|
120
|
-
|
121
|
-
def generating?
|
122
|
-
if Lolita.application.skip_routes.respond_to?(:call)
|
123
|
-
Lolita.application.skip_routes.call
|
124
|
-
else
|
125
|
-
Lolita.application.skip_routes || File.basename($0).match(/^rails/) && !caller.detect{|line| line.match(/commands\/(server|console)\.rb/)}
|
126
|
-
end
|
127
|
-
end
|
128
|
-
end
|
129
|
-
end
|
1
|
+
module ActionDispatch::Routing
|
2
|
+
|
3
|
+
class RouteSet
|
4
|
+
|
5
|
+
# Each time when #draw method is called this is called as well.
|
6
|
+
# It creates :left_side_navigation tree and call callbacks
|
7
|
+
# Lolita#before_routes_loaded and Lolita#after_routes_loaded
|
8
|
+
def draw_with_lolita *args,&block
|
9
|
+
Lolita.run(:before_routes_loaded)
|
10
|
+
draw_without_lolita *args,&block
|
11
|
+
Lolita.run(:after_routes_loaded)
|
12
|
+
end
|
13
|
+
|
14
|
+
alias_method_chain :draw, :lolita
|
15
|
+
end
|
16
|
+
|
17
|
+
class Mapper
|
18
|
+
|
19
|
+
# Every module, that is used with lolita and has routes, need to have
|
20
|
+
# <code>resource method</code>, for example, lolita_rest, that should be added
|
21
|
+
# to ActionDispatch::Routing::Mapper class, as a *protected* method.
|
22
|
+
# Module can automaticliy add resource route or allow user to do it.
|
23
|
+
# It accepts some useful options
|
24
|
+
# * <tt>:module</tt>
|
25
|
+
# * <tt>:path</tt>
|
26
|
+
# * <tt>:as</tt>
|
27
|
+
# * <tt>:path_prefix</tt>
|
28
|
+
# * <tt>:controller</tt>
|
29
|
+
# * <tt>:class_name</tt>
|
30
|
+
# * <tt>:singular</tt>
|
31
|
+
# ====Example
|
32
|
+
# Lolita.add_module Lolita::Gallery,:route=>:gallery
|
33
|
+
# # in route.rb
|
34
|
+
# lolita_for :galleries
|
35
|
+
# # lolita_for try to call :lolita_gallery in Mapper class
|
36
|
+
def lolita_for *resources
|
37
|
+
|
38
|
+
return if migrating? || generating?
|
39
|
+
options = resources.extract_options!
|
40
|
+
|
41
|
+
options[:as] ||= @scope[:as] if @scope[:as].present?
|
42
|
+
options[:module] ||= @scope[:module] if @scope[:module].present?
|
43
|
+
options[:path_prefix] ||= @scope[:path] if @scope[:path].present?
|
44
|
+
resources.map!(&:to_sym)
|
45
|
+
all_resource_classes=[]
|
46
|
+
resources.each{|resource|
|
47
|
+
mapping = Lolita.add_mapping(resource,options)
|
48
|
+
Lolita.resources[mapping.name] = mapping
|
49
|
+
target_class = mapping.to
|
50
|
+
|
51
|
+
#TODO refactor all these variables
|
52
|
+
all_resource_classes<<target_class
|
53
|
+
|
54
|
+
lolita_scope mapping.name do
|
55
|
+
yield if block_given?
|
56
|
+
|
57
|
+
with_lolita_exclusive_scope mapping.fullpath,mapping.path do
|
58
|
+
|
59
|
+
# if not defined lolita default configuration in model, than can't use :rest
|
60
|
+
|
61
|
+
# if !target_class.respond_to?(:lolita) && !Lolita::routes[mapping.name]
|
62
|
+
# raise Lolita::NotFound, "Lolita not found in #{target_class}. Include Lolita::Configuration"
|
63
|
+
# elsif target_class.respond_to?(:lolita) && target_class.instance_variable_get(:@lolita).nil?
|
64
|
+
# warn("Lolita is not initialized, call `lolita` in #{target_class}")
|
65
|
+
# route = Lolita.routes[mapping.name] || Lolita.default_route
|
66
|
+
# #raise Lolita::NotInitialized, "Call lolita method in #{target_class}."
|
67
|
+
# else
|
68
|
+
# route=Lolita.routes[mapping.name] || Lolita.default_route
|
69
|
+
# end
|
70
|
+
route = Lolita.routes[mapping.name] || Lolita.default_route
|
71
|
+
unless route
|
72
|
+
raise Lolita::ModuleNotFound, "Module #{mapping.name.to_s.capitalize} not found!"
|
73
|
+
end
|
74
|
+
send(:"lolita_#{route}_route",mapping,mapping.controllers)
|
75
|
+
|
76
|
+
Lolita.conditional_routes(target_class).each do |route_name|
|
77
|
+
send(:"lolita_#{route_name}_route",mapping,mapping.controllers)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
mapping.add_to_navigation_tree
|
84
|
+
}
|
85
|
+
Lolita.common_routes(all_resource_classes).each do |route_name|
|
86
|
+
send(:"lolita_#{route_name}_route")
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
protected
|
91
|
+
|
92
|
+
def lolita_scope scope
|
93
|
+
constraint = lambda do |request|
|
94
|
+
request.env["lolita.mapping"] = Lolita.mappings[scope]
|
95
|
+
true
|
96
|
+
end
|
97
|
+
|
98
|
+
constraints(constraint) do
|
99
|
+
yield
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def with_lolita_exclusive_scope new_path,new_as
|
104
|
+
old_as, old_path, old_module = @scope[:as], @scope[:path], @scope[:module]
|
105
|
+
@scope[:as], @scope[:path], @scope[:module] = new_as, new_path, nil
|
106
|
+
yield
|
107
|
+
ensure
|
108
|
+
@scope[:as], @scope[:path], @scope[:module] = old_as, old_path, old_module
|
109
|
+
end
|
110
|
+
|
111
|
+
private
|
112
|
+
|
113
|
+
def migrating?
|
114
|
+
if Lolita.application.skip_routes.respond_to?(:call)
|
115
|
+
Lolita.application.skip_routes.call
|
116
|
+
else
|
117
|
+
File.basename($0).match(/^rake/) && (ARGV.detect{|arg| arg.to_s.match(/db|apartment/)})
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
def generating?
|
122
|
+
if Lolita.application.skip_routes.respond_to?(:call)
|
123
|
+
Lolita.application.skip_routes.call
|
124
|
+
else
|
125
|
+
Lolita.application.skip_routes || File.basename($0).match(/^rails/) && !caller.detect{|line| line.match(/commands\/(server|console)\.rb/)}
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|