lolita 3.3.4 → 3.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/controllers/lolita/field_data_controller.rb~ +45 -0
- 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/autocomplete/_display.html.haml~ +16 -0
- 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/filter/_display.html.haml~ +9 -0
- 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/lib/lolita/adapter/field_helper.rb +18 -18
- 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 +1 -7
- data/lib/lolita/configuration/filter.rb~ +122 -0
- data/lib/lolita/configuration/nested_form.rb +104 -104
- data/lib/lolita/configuration/search.rb +104 -104
- 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/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/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +1 -1
- data/lib/lolita/version.rb~ +30 -0
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/filter_spec.rb +1 -30
- data/spec/configuration/filter_spec.rb~ +167 -0
- 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/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/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/log/development.log +753 -14016
- 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/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 +347 -340
@@ -1,19 +1,19 @@
|
|
1
|
-
module Lolita
|
2
|
-
module Adapter
|
3
|
-
module FieldHelper
|
4
|
-
def technical?
|
5
|
-
if self.name.to_s.match(/^created_at|updated_at|type$/)
|
6
|
-
true
|
7
|
-
elsif self.primary?
|
8
|
-
true
|
9
|
-
elsif adapter.klass.respond_to?(:uploaders)
|
10
|
-
adapter.klass.uploaders.keys.include?(name.to_sym)
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
def content?
|
15
|
-
!technical?
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
1
|
+
module Lolita
|
2
|
+
module Adapter
|
3
|
+
module FieldHelper
|
4
|
+
def technical?
|
5
|
+
if self.name.to_s.match(/^created_at|updated_at|type$/)
|
6
|
+
true
|
7
|
+
elsif self.primary?
|
8
|
+
true
|
9
|
+
elsif adapter.klass.respond_to?(:uploaders)
|
10
|
+
adapter.klass.uploaders.keys.include?(name.to_sym)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def content?
|
15
|
+
!technical?
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
19
|
end
|
@@ -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
|
@@ -111,12 +111,6 @@ module Lolita
|
|
111
111
|
end
|
112
112
|
end
|
113
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
|
119
|
-
|
120
114
|
end
|
121
115
|
end
|
122
|
-
end
|
116
|
+
end
|
@@ -0,0 +1,122 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
module Lolita
|
3
|
+
module Configuration
|
4
|
+
# Lolita::Configuration::Filter is for filtering data in list view.
|
5
|
+
# By now it supports these field types:
|
6
|
+
# - Array
|
7
|
+
# - Boolean
|
8
|
+
#
|
9
|
+
# To use it, call "filter" method in list block, filter method accepts field names
|
10
|
+
# as arguments. You can pass block and configure each field. Field configuration is just like in tab configuration.
|
11
|
+
#
|
12
|
+
# === Examples
|
13
|
+
#
|
14
|
+
# # this will build country select field and is_deleted checkbox
|
15
|
+
# list do
|
16
|
+
# filter :country, :is_deleted
|
17
|
+
# end
|
18
|
+
#
|
19
|
+
# # For example you have text field "status" with values opened,closed,rejected
|
20
|
+
# list do
|
21
|
+
# filter do
|
22
|
+
# field :status, :array, :values=> %w(open closed rejected)
|
23
|
+
# field :is_deleted, :title => "Deleted"
|
24
|
+
# end
|
25
|
+
# end
|
26
|
+
#
|
27
|
+
class Filter
|
28
|
+
include Lolita::Builder
|
29
|
+
attr_reader :dbi
|
30
|
+
|
31
|
+
def initialize(dbi,*args,&block)
|
32
|
+
@dbi = dbi
|
33
|
+
@fields=Lolita::Configuration::Fields.new
|
34
|
+
set_attributes(*args)
|
35
|
+
self.instance_eval(&block) if block_given?
|
36
|
+
end
|
37
|
+
|
38
|
+
def field *args, &block
|
39
|
+
field=Lolita::Configuration::Factory::Field.create(self.dbi,*args,&block)
|
40
|
+
field
|
41
|
+
@fields<<field
|
42
|
+
field
|
43
|
+
end
|
44
|
+
|
45
|
+
# Set all fields in tab. Accept <code>fields</code> as Array.
|
46
|
+
# Each array element can be Lolita::Configuration::Field object or
|
47
|
+
# Hash, that will be passed to #field method.
|
48
|
+
def fields=(fields)
|
49
|
+
if fields.is_a?(Array)
|
50
|
+
fields.each{|field_attr|
|
51
|
+
if field_attr.is_a?(Lolita::Configuration::Field)
|
52
|
+
@fields<<field_attr
|
53
|
+
else
|
54
|
+
self.field(field_attr)
|
55
|
+
end
|
56
|
+
}
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def fields(*args, &block)
|
61
|
+
if args && args.any? || block_given?
|
62
|
+
args.each do |field_name|
|
63
|
+
f = field(field_name)
|
64
|
+
f.instance_eval(&block) if block_given?
|
65
|
+
end
|
66
|
+
end
|
67
|
+
@fields
|
68
|
+
end
|
69
|
+
|
70
|
+
# Used to set attributes if block not given.
|
71
|
+
def set_attributes(*args)
|
72
|
+
if args && args[0]
|
73
|
+
if args[0].is_a?(Hash)
|
74
|
+
args[0].each{|m,value|
|
75
|
+
self.send("#{m}=".to_sym,value)
|
76
|
+
}
|
77
|
+
else
|
78
|
+
fields *args
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def html_option_for_select field
|
84
|
+
{
|
85
|
+
:include_blank => ::I18n.t('lolita.filter.include_blank_by_title', :title => field.title)
|
86
|
+
}
|
87
|
+
end
|
88
|
+
|
89
|
+
def update method_name, list, request
|
90
|
+
filter_params = request && request.params && request.params[:filter]
|
91
|
+
page_criteria = if method_name == :paginate && self.search && filter_params
|
92
|
+
search_criteria = self.search.run(nil,request)
|
93
|
+
page_criteria = if search_criteria.respond_to?(:where)
|
94
|
+
list.page_criteria.merge(search_criteria)
|
95
|
+
elsif search_criteria.nil?
|
96
|
+
list.page_criteria
|
97
|
+
else
|
98
|
+
search_criteria
|
99
|
+
end
|
100
|
+
else
|
101
|
+
list.page_criteria.merge(self.dbi.filter(filter_params || {}))
|
102
|
+
end
|
103
|
+
list.instance_variable_set(:@page_criteria,page_criteria)
|
104
|
+
end
|
105
|
+
|
106
|
+
def search *args, &block
|
107
|
+
if args && args.any? || block_given?
|
108
|
+
@search = Lolita::Configuration::Search.new(self.dbi,*args, &block)
|
109
|
+
else
|
110
|
+
@search
|
111
|
+
end
|
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
|
119
|
+
|
120
|
+
end
|
121
|
+
end
|
122
|
+
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
|