lolita 3.2.0.rc.17 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +22 -17
- data/Rakefile +3 -0
- data/app/assets/javascripts/lolita/list.js +2 -2
- data/app/assets/javascripts/lolita/main.js +2 -2
- data/app/assets/javascripts/lolita/tab.js +7 -7
- 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 +4 -1
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- 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/filter/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- 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/app/views/lolita/rest/index.html.haml +1 -1
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +2 -4
- data/lib/generators/lolita/uninstall_generator.rb +3 -8
- data/lib/generators/templates/lolita.rb +13 -16
- data/lib/lolita.rb +4 -5
- data/lib/lolita/adapter/active_record.rb +4 -4
- data/lib/lolita/adapter/common_helper.rb +45 -71
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +8 -8
- 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 +6 -0
- data/lib/lolita/configuration/list.rb +10 -10
- data/lib/lolita/configuration/nested_form.rb +104 -104
- data/lib/lolita/configuration/search.rb +104 -104
- data/lib/lolita/configuration/tab/content.rb +3 -3
- data/lib/lolita/controllers/component_helpers.rb +9 -9
- data/lib/lolita/controllers/rails_helpers.rb +5 -5
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks.rb +16 -16
- 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 +2 -2
- data/lib/lolita/rails/routes.rb +9 -9
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/ruby_ext/lolita_model_name.rb +10 -2
- 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/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +2 -2
- data/spec/adapter/common_helper_spec.rb +96 -0
- data/spec/adapter_helper.rb +3 -4
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +1 -1
- data/spec/configuration/column_spec.rb +1 -1
- data/spec/configuration/columns_spec.rb +1 -1
- data/spec/configuration/core_spec.rb +1 -1
- data/spec/configuration/field_set_spec.rb +1 -1
- data/spec/configuration/field_spec.rb +1 -1
- data/spec/configuration/filter_spec.rb +30 -1
- data/spec/configuration/list_spec.rb +44 -145
- data/spec/configuration/nested_list_spec.rb +1 -1
- data/spec/configuration/search_spec.rb +1 -1
- data/spec/configuration/tab_spec.rb +1 -1
- data/spec/configuration/tabs_spec.rb +1 -2
- data/spec/controllers/component_helpers_spec.rb +1 -1
- data/spec/controllers/configuration_spec.rb +1 -1
- data/spec/controllers/internal_helpers_spec.rb +1 -1
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +1 -1
- data/spec/controllers/lolita_rest_spec.rb +2 -2
- data/spec/dbi/base_spec.rb +1 -4
- data/spec/extensions/authorization/cancan_adapter_spec.rb +4 -4
- data/spec/extensions/extensions_spec.rb +1 -1
- data/spec/generators/lolita/install_generator_spec.rb +55 -0
- data/spec/generators/lolita/uninstall_generator_spec.rb +49 -0
- data/spec/hooks_spec.rb +25 -25
- data/spec/mapping_spec.rb +1 -1
- data/spec/navigation/branch_spec.rb +1 -1
- data/spec/navigation/tree_spec.rb +1 -1
- 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/comment.rb +5 -5
- 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/boot.rb +4 -9
- data/spec/rails_app/config/environment.rb +5 -5
- 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 +1 -1
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/log/development.log +12940 -43222
- 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/routing/routes_spec.rb +1 -1
- data/spec/search/simple_spec.rb +1 -1
- data/spec/simple_spec_helper.rb +1 -1
- data/spec/spec_helper.rb +6 -4
- data/spec/support/formatter_spec.rb +1 -1
- data/spec/tmp/config/routes.rb +0 -0
- 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 +380 -395
- data/spec/rails_app/coverage.data +0 -1
- data/spec/rails_app/log/test.log +0 -370
@@ -1,12 +1,12 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class BigDecimal < Lolita::Configuration::Field::Base
|
5
|
-
def initialize dbi,name,*args, &block
|
6
|
-
|
7
|
-
super
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class BigDecimal < Lolita::Configuration::Field::Base
|
5
|
+
def initialize dbi,name,*args, &block
|
6
|
+
|
7
|
+
super
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class Boolean < Lolita::Configuration::Field::Base
|
5
|
-
def initialize dbi,name,*args, &block
|
6
|
-
|
7
|
-
super
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class Boolean < Lolita::Configuration::Field::Base
|
5
|
+
def initialize dbi,name,*args, &block
|
6
|
+
|
7
|
+
super
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -1,13 +1,13 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class Date < Lolita::Configuration::Field::Base
|
5
|
-
attr_accessor :format
|
6
|
-
def initialize dbi,name,*args, &block
|
7
|
-
|
8
|
-
super
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class Date < Lolita::Configuration::Field::Base
|
5
|
+
attr_accessor :format
|
6
|
+
def initialize dbi,name,*args, &block
|
7
|
+
|
8
|
+
super
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
13
|
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class Hidden < Lolita::Configuration::Field::Base
|
5
|
-
def initialize dbi,name,type,options, &block
|
6
|
-
|
7
|
-
super
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class Hidden < Lolita::Configuration::Field::Base
|
5
|
+
def initialize dbi,name,type,options, &block
|
6
|
+
|
7
|
+
super
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class Integer< Lolita::Configuration::Field::Base
|
5
|
-
def initialize dbi,name,*args, &block
|
6
|
-
super
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class Integer< Lolita::Configuration::Field::Base
|
5
|
+
def initialize dbi,name,*args, &block
|
6
|
+
super
|
7
|
+
end
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -1,16 +1,16 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class String < Lolita::Configuration::Field::Base
|
5
|
-
lolita_accessor :simple, :rows
|
6
|
-
def initialize dbi,name,*args, &block
|
7
|
-
super
|
8
|
-
if self.dbi_field && self.dbi_field.options[:native_type] == "text"
|
9
|
-
self.builder = :text unless @builder
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class String < Lolita::Configuration::Field::Base
|
5
|
+
lolita_accessor :simple, :rows
|
6
|
+
def initialize dbi,name,*args, &block
|
7
|
+
super
|
8
|
+
if self.dbi_field && self.dbi_field.options[:native_type] == "text"
|
9
|
+
self.builder = :text unless @builder
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -1,13 +1,13 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
module Field
|
4
|
-
class Time < Lolita::Configuration::Field::Base
|
5
|
-
attr_accessor :format
|
6
|
-
def initialize dbi,name,*args, &block
|
7
|
-
|
8
|
-
super
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
module Field
|
4
|
+
class Time < Lolita::Configuration::Field::Base
|
5
|
+
attr_accessor :format
|
6
|
+
def initialize dbi,name,*args, &block
|
7
|
+
|
8
|
+
super
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -1,26 +1,26 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
class FieldSet
|
4
|
-
|
5
|
-
@@last_fieldset=0
|
6
|
-
|
7
|
-
attr_reader :parent
|
8
|
-
attr_accessor :name
|
9
|
-
|
10
|
-
def initialize parent,name=nil
|
11
|
-
@parent=parent
|
12
|
-
self.name=name || "fieldset_#{next_fieldset}"
|
13
|
-
end
|
14
|
-
|
15
|
-
def fields
|
16
|
-
self.parent.fields.reject{|f| f.field_set!=self}
|
17
|
-
end
|
18
|
-
|
19
|
-
private
|
20
|
-
|
21
|
-
def next_fieldset
|
22
|
-
@@last_fieldset+=1
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
class FieldSet
|
4
|
+
|
5
|
+
@@last_fieldset=0
|
6
|
+
|
7
|
+
attr_reader :parent
|
8
|
+
attr_accessor :name
|
9
|
+
|
10
|
+
def initialize parent,name=nil
|
11
|
+
@parent=parent
|
12
|
+
self.name=name || "fieldset_#{next_fieldset}"
|
13
|
+
end
|
14
|
+
|
15
|
+
def fields
|
16
|
+
self.parent.fields.reject{|f| f.field_set!=self}
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def next_fieldset
|
22
|
+
@@last_fieldset+=1
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
26
|
end
|
@@ -110,6 +110,12 @@ module Lolita
|
|
110
110
|
@search
|
111
111
|
end
|
112
112
|
end
|
113
|
+
|
114
|
+
def resource(params)
|
115
|
+
if klass = fields.any? ? fields.first.dbi.klass : nil
|
116
|
+
klass.new(params[klass.to_s.underscore.to_sym]).extend(Module.new{def persisted?; true; end})
|
117
|
+
end
|
118
|
+
end
|
113
119
|
|
114
120
|
end
|
115
121
|
end
|
@@ -3,15 +3,15 @@ module Lolita
|
|
3
3
|
class List < Lolita::Configuration::Base
|
4
4
|
include Observable
|
5
5
|
include Lolita::Builder
|
6
|
-
|
6
|
+
|
7
7
|
attr_reader :initialized_attributes,:page_criteria
|
8
8
|
attr_writer :title
|
9
9
|
|
10
10
|
lolita_accessor :per_page, :pagination_method, :actions
|
11
|
-
|
11
|
+
|
12
12
|
def initialize(dbp,*args,&block)
|
13
13
|
set_and_validate_dbp(dbp)
|
14
|
-
set_list_attributes do
|
14
|
+
set_list_attributes do
|
15
15
|
set_attributes(*args)
|
16
16
|
self.instance_eval(&block) if block_given?
|
17
17
|
end
|
@@ -67,7 +67,7 @@ module Lolita
|
|
67
67
|
@columns = possible_columns
|
68
68
|
@columns.parent = self
|
69
69
|
elsif possible_columns.respond_to?(:each)
|
70
|
-
possible_columns.each{|possible_column|
|
70
|
+
possible_columns.each{|possible_column|
|
71
71
|
column(possible_column)
|
72
72
|
}
|
73
73
|
else
|
@@ -123,7 +123,7 @@ module Lolita
|
|
123
123
|
yield if block_given?
|
124
124
|
create_default_actions
|
125
125
|
end
|
126
|
-
|
126
|
+
|
127
127
|
def init_default_attributes
|
128
128
|
initialize_actions
|
129
129
|
@per_page = Lolita.application.per_page || 10
|
@@ -165,7 +165,7 @@ module Lolita
|
|
165
165
|
end
|
166
166
|
end
|
167
167
|
|
168
|
-
def create_action name, options = {}, &block
|
168
|
+
def create_action name, options = {}, &block
|
169
169
|
Lolita::Configuration::Action.new(@dbi,name,options,&block)
|
170
170
|
end
|
171
171
|
|
@@ -182,18 +182,18 @@ module Lolita
|
|
182
182
|
end
|
183
183
|
|
184
184
|
def edit_action_block
|
185
|
-
Proc.new do
|
185
|
+
Proc.new do
|
186
186
|
title Proc.new{::I18n.t("lolita.shared.edit")}
|
187
187
|
url Proc.new{|view,record| view.send(:edit_lolita_resource_path, :id => record.id)}
|
188
|
-
end
|
188
|
+
end
|
189
189
|
end
|
190
190
|
|
191
191
|
def destroy_action_block
|
192
|
-
Proc.new do
|
192
|
+
Proc.new do
|
193
193
|
title Proc.new{::I18n.t("lolita.shared.delete")}
|
194
194
|
url Proc.new{|view,record| view.send(:lolita_resource_path,:id => record.id)}
|
195
195
|
html :method => :delete, :confirm => Proc.new{::I18n.t("lolita.list.confirm")}
|
196
|
-
end
|
196
|
+
end
|
197
197
|
end
|
198
198
|
|
199
199
|
end
|
@@ -1,105 +1,105 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Configuration
|
3
|
-
# Accept those attributes
|
4
|
-
# * <tt>:name</tt> - Name of nested relation, like :comments.
|
5
|
-
# * <tt>:field_style</tt> - Is fields rendered with as normal (with lable and staff) or like in table (:simple). Default :simple
|
6
|
-
# * <tt>:expandable</tt> - Show or not "Add new" and "Delete" links in form,
|
7
|
-
# by default, it is expandable if association macro is :many
|
8
|
-
# * <tt>:field_rejection_proc</tt> - Proc, that contains condition of how to reject field.
|
9
|
-
# By default form rejects all fields from parent tab that doesn't have current form as field nested_form
|
10
|
-
# ====Example
|
11
|
-
# form = Lolita::Configuration::NestedForm.new(Lolita::Configuration::Tab::Content.new,:comments)
|
12
|
-
# form.field_rejection_proc = Proc.new{|field|
|
13
|
-
# field.name.to_s.match(/_id$/)
|
14
|
-
# }
|
15
|
-
# # form exclude all fields that ends with _id
|
16
|
-
class NestedForm
|
17
|
-
include Lolita::Builder
|
18
|
-
@@last_nested_form=0
|
19
|
-
|
20
|
-
attr_reader :parent, :options, :field_style
|
21
|
-
attr_accessor :name, :expandable, :field_rejection_proc
|
22
|
-
attr_writer :build_method
|
23
|
-
|
24
|
-
def initialize parent,name=nil, options ={}
|
25
|
-
@parent=parent
|
26
|
-
@options = options
|
27
|
-
self.name=name || "nested_form_#{next_nested_form}"
|
28
|
-
set_attributes_from(options)
|
29
|
-
end
|
30
|
-
|
31
|
-
def allow_destroy?
|
32
|
-
dbi.klass.nested_attributes_options[name][:allow_destroy]
|
33
|
-
end
|
34
|
-
|
35
|
-
def update_only?
|
36
|
-
dbi.klass.nested_attributes_options[name][:update_only]
|
37
|
-
end
|
38
|
-
|
39
|
-
def build_method
|
40
|
-
@build_method || self.name
|
41
|
-
end
|
42
|
-
# Set field style - normal or simple. Default - normal.
|
43
|
-
def field_style=(value)
|
44
|
-
allowed_values = [:normal,:simple]
|
45
|
-
raise ArgumentError, "Only #{allowed_values.inspect} are allowed" unless allowed_values.include?(value)
|
46
|
-
@field_style = value
|
47
|
-
end
|
48
|
-
|
49
|
-
# Detect if it's possible to add more than one field group, like if model has many other objects.
|
50
|
-
def expandable?
|
51
|
-
@expandable == true || (@expandable == nil && macro == :many)
|
52
|
-
end
|
53
|
-
|
54
|
-
# Create field, that is not real field, but represents nested attributes as one.
|
55
|
-
# It is used to create label.
|
56
|
-
def as_field
|
57
|
-
Lolita::Configuration::Factory::Field.add(dbi,self.name, :string)
|
58
|
-
end
|
59
|
-
|
60
|
-
# Parent (a.k.a tab) dbi
|
61
|
-
def dbi
|
62
|
-
@parent.dbi
|
63
|
-
end
|
64
|
-
|
65
|
-
# Fields setter. Fields should be array and each element should be Lolita::Configuration::Field object.
|
66
|
-
def fields=(new_fields)
|
67
|
-
@fields = new_fields
|
68
|
-
end
|
69
|
-
|
70
|
-
# Return all fields. Each time fields ar returned from @fields if its defined or calculated by using #field_rejection_proc
|
71
|
-
# or collected from parent (tab) where fields nested form is same with self.
|
72
|
-
def fields
|
73
|
-
if @fields
|
74
|
-
@fields
|
75
|
-
elsif field_rejection_proc
|
76
|
-
self.parent.fields.reject(&field_rejection_proc)
|
77
|
-
else
|
78
|
-
self.parent.fields.reject{|f| f.nested_form!=self}
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
# Parent (tab) dbi klass
|
83
|
-
def klass
|
84
|
-
dbi.reflect_on_association(name).klass
|
85
|
-
end
|
86
|
-
|
87
|
-
# Parent (tab) dbi klass reflection with #name and macros of that.
|
88
|
-
def macro
|
89
|
-
dbi.reflect_on_association(name).macro
|
90
|
-
end
|
91
|
-
|
92
|
-
private
|
93
|
-
|
94
|
-
def next_nested_form
|
95
|
-
@@last_nested_form+=1
|
96
|
-
end
|
97
|
-
|
98
|
-
def set_attributes_from(options)
|
99
|
-
options.each{|key,value|
|
100
|
-
instance_variable_set(:"@#{key}",value)
|
101
|
-
}
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Configuration
|
3
|
+
# Accept those attributes
|
4
|
+
# * <tt>:name</tt> - Name of nested relation, like :comments.
|
5
|
+
# * <tt>:field_style</tt> - Is fields rendered with as normal (with lable and staff) or like in table (:simple). Default :simple
|
6
|
+
# * <tt>:expandable</tt> - Show or not "Add new" and "Delete" links in form,
|
7
|
+
# by default, it is expandable if association macro is :many
|
8
|
+
# * <tt>:field_rejection_proc</tt> - Proc, that contains condition of how to reject field.
|
9
|
+
# By default form rejects all fields from parent tab that doesn't have current form as field nested_form
|
10
|
+
# ====Example
|
11
|
+
# form = Lolita::Configuration::NestedForm.new(Lolita::Configuration::Tab::Content.new,:comments)
|
12
|
+
# form.field_rejection_proc = Proc.new{|field|
|
13
|
+
# field.name.to_s.match(/_id$/)
|
14
|
+
# }
|
15
|
+
# # form exclude all fields that ends with _id
|
16
|
+
class NestedForm
|
17
|
+
include Lolita::Builder
|
18
|
+
@@last_nested_form=0
|
19
|
+
|
20
|
+
attr_reader :parent, :options, :field_style
|
21
|
+
attr_accessor :name, :expandable, :field_rejection_proc
|
22
|
+
attr_writer :build_method
|
23
|
+
|
24
|
+
def initialize parent,name=nil, options ={}
|
25
|
+
@parent=parent
|
26
|
+
@options = options
|
27
|
+
self.name=name || "nested_form_#{next_nested_form}"
|
28
|
+
set_attributes_from(options)
|
29
|
+
end
|
30
|
+
|
31
|
+
def allow_destroy?
|
32
|
+
dbi.klass.nested_attributes_options[name][:allow_destroy]
|
33
|
+
end
|
34
|
+
|
35
|
+
def update_only?
|
36
|
+
dbi.klass.nested_attributes_options[name][:update_only]
|
37
|
+
end
|
38
|
+
|
39
|
+
def build_method
|
40
|
+
@build_method || self.name
|
41
|
+
end
|
42
|
+
# Set field style - normal or simple. Default - normal.
|
43
|
+
def field_style=(value)
|
44
|
+
allowed_values = [:normal,:simple]
|
45
|
+
raise ArgumentError, "Only #{allowed_values.inspect} are allowed" unless allowed_values.include?(value)
|
46
|
+
@field_style = value
|
47
|
+
end
|
48
|
+
|
49
|
+
# Detect if it's possible to add more than one field group, like if model has many other objects.
|
50
|
+
def expandable?
|
51
|
+
@expandable == true || (@expandable == nil && macro == :many)
|
52
|
+
end
|
53
|
+
|
54
|
+
# Create field, that is not real field, but represents nested attributes as one.
|
55
|
+
# It is used to create label.
|
56
|
+
def as_field
|
57
|
+
Lolita::Configuration::Factory::Field.add(dbi,self.name, :string)
|
58
|
+
end
|
59
|
+
|
60
|
+
# Parent (a.k.a tab) dbi
|
61
|
+
def dbi
|
62
|
+
@parent.dbi
|
63
|
+
end
|
64
|
+
|
65
|
+
# Fields setter. Fields should be array and each element should be Lolita::Configuration::Field object.
|
66
|
+
def fields=(new_fields)
|
67
|
+
@fields = new_fields
|
68
|
+
end
|
69
|
+
|
70
|
+
# Return all fields. Each time fields ar returned from @fields if its defined or calculated by using #field_rejection_proc
|
71
|
+
# or collected from parent (tab) where fields nested form is same with self.
|
72
|
+
def fields
|
73
|
+
if @fields
|
74
|
+
@fields
|
75
|
+
elsif field_rejection_proc
|
76
|
+
self.parent.fields.reject(&field_rejection_proc)
|
77
|
+
else
|
78
|
+
self.parent.fields.reject{|f| f.nested_form!=self}
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# Parent (tab) dbi klass
|
83
|
+
def klass
|
84
|
+
dbi.reflect_on_association(name).klass
|
85
|
+
end
|
86
|
+
|
87
|
+
# Parent (tab) dbi klass reflection with #name and macros of that.
|
88
|
+
def macro
|
89
|
+
dbi.reflect_on_association(name).macro
|
90
|
+
end
|
91
|
+
|
92
|
+
private
|
93
|
+
|
94
|
+
def next_nested_form
|
95
|
+
@@last_nested_form+=1
|
96
|
+
end
|
97
|
+
|
98
|
+
def set_attributes_from(options)
|
99
|
+
options.each{|key,value|
|
100
|
+
instance_variable_set(:"@#{key}",value)
|
101
|
+
}
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
105
|
end
|