super 0.0.4 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +13 -0
- data/CONTRIBUTING.md +56 -0
- data/README.md +60 -85
- data/STABILITY.md +50 -0
- data/app/assets/javascripts/super/application.js +1169 -359
- data/app/assets/stylesheets/super/application.css +86648 -30707
- data/app/controllers/super/application_controller.rb +44 -71
- data/app/views/layouts/super/application.html.erb +26 -6
- data/app/views/super/application/{_resources_header.html.erb → _collection_header.html.erb} +5 -6
- data/app/views/super/application/_display_rich_text.html.erb +1 -0
- data/app/views/super/application/_filter.html.erb +14 -0
- data/app/views/super/application/_filter_type_select.html.erb +31 -0
- data/app/views/super/application/_filter_type_text.html.erb +22 -0
- data/app/views/super/application/_filter_type_timestamp.html.erb +35 -0
- data/app/views/super/application/_flash.html.erb +13 -13
- data/app/views/super/application/_form_field__destroy.html.erb +6 -2
- data/app/views/super/application/_form_field_checkbox.html.erb +15 -0
- data/app/views/super/application/_form_field_generic.html.erb +19 -0
- data/app/views/super/application/_form_field_rich_text_area.html.erb +13 -0
- data/app/views/super/application/_form_field_select.html.erb +11 -5
- data/app/views/super/application/_form_field_text.html.erb +13 -5
- data/app/views/super/application/_form_has_many.html.erb +3 -3
- data/app/views/super/application/_form_inline_errors.html.erb +1 -1
- data/app/views/super/application/{_resource_header.html.erb → _member_header.html.erb} +6 -6
- data/app/views/super/application/_super_layout.html.erb +12 -17
- data/app/views/super/application/_super_pagination.html.erb +16 -0
- data/app/views/super/application/_super_panel.html.erb +3 -7
- data/app/views/super/application/_super_schema_display_actions.html.erb +5 -0
- data/app/views/super/application/_super_schema_display_index.html.erb +24 -0
- data/app/views/super/application/_super_schema_display_show.html.erb +8 -0
- data/app/views/super/application/{_form.html.erb → _super_schema_form.html.erb} +2 -4
- data/app/views/super/application/edit.html.erb +1 -1
- data/app/views/super/application/index.html.erb +1 -1
- data/app/views/super/application/new.html.erb +1 -1
- data/app/views/super/application/show.html.erb +1 -1
- data/app/views/super/feather/{_chevron_down.svg → _chevron_down.html} +0 -0
- data/config/locales/en.yml +5 -0
- data/docs/README.md +8 -0
- data/docs/action_text.md +48 -0
- data/docs/cheat.md +41 -0
- data/docs/faq.md +44 -0
- data/docs/installation.md +21 -0
- data/docs/quick_start.md +30 -0
- data/docs/webpacker.md +25 -0
- data/docs/yard_customizations.rb +41 -0
- data/frontend/super-frontend/build.js +1 -1
- data/frontend/super-frontend/dist/application.css +86648 -30707
- data/frontend/super-frontend/dist/application.js +1169 -359
- data/frontend/super-frontend/package.json +2 -3
- data/frontend/super-frontend/src/javascripts/super/{application.ts → application.js} +5 -8
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.js +17 -0
- data/frontend/super-frontend/src/javascripts/super/{toggle_pending_destruction_controller.ts → toggle_pending_destruction_controller.js} +2 -2
- data/frontend/super-frontend/tailwind.config.js +7 -1
- data/frontend/super-frontend/yarn.lock +1368 -1391
- data/lib/generators/super/action_text/USAGE +23 -0
- data/lib/generators/super/action_text/action_text_generator.rb +30 -0
- data/lib/generators/super/action_text/templates/pack_super_action_text.css +23 -0
- data/lib/generators/super/action_text/templates/pack_super_action_text.js +4 -0
- data/lib/generators/super/install/install_generator.rb +16 -0
- data/lib/generators/super/resource/templates/resources_controller.rb.tt +1 -31
- data/lib/generators/super/webpacker/USAGE +5 -4
- data/lib/generators/super/webpacker/webpacker_generator.rb +10 -1
- data/lib/super.rb +22 -5
- data/lib/super/action_inquirer.rb +2 -2
- data/lib/super/assets.rb +112 -38
- data/lib/super/client_error.rb +43 -0
- data/lib/super/compatibility.rb +25 -0
- data/lib/super/configuration.rb +21 -69
- data/lib/super/controls.rb +9 -257
- data/lib/super/controls/optional.rb +79 -0
- data/lib/super/controls/required.rb +13 -0
- data/lib/super/controls/steps.rb +114 -0
- data/lib/super/display.rb +66 -3
- data/lib/super/display/guesser.rb +34 -0
- data/lib/super/display/schema_types.rb +61 -25
- data/lib/super/engine.rb +7 -1
- data/lib/super/error.rb +8 -9
- data/lib/super/filter.rb +12 -0
- data/lib/super/filter/form_object.rb +97 -0
- data/lib/super/filter/guesser.rb +30 -0
- data/lib/super/filter/operator.rb +103 -0
- data/lib/super/filter/plugin.rb +47 -0
- data/lib/super/filter/schema_types.rb +112 -0
- data/lib/super/form.rb +35 -0
- data/lib/super/form/builder.rb +48 -0
- data/lib/super/form/guesser.rb +27 -0
- data/lib/super/form/schema_types.rb +29 -22
- data/lib/super/form/strong_params.rb +29 -0
- data/lib/super/layout.rb +28 -0
- data/lib/super/link.rb +55 -32
- data/lib/super/pagination.rb +55 -0
- data/lib/super/panel.rb +13 -0
- data/lib/super/partial.rb +12 -0
- data/lib/super/partial/resolving.rb +24 -0
- data/lib/super/plugin.rb +34 -63
- data/lib/super/schema.rb +12 -22
- data/lib/super/schema/common.rb +25 -0
- data/lib/super/schema/guesser.rb +77 -0
- data/lib/super/version.rb +1 -1
- data/lib/super/view_helper.rb +43 -0
- metadata +138 -41
- data/app/helpers/super/application_helper.rb +0 -32
- data/app/views/super/application/_index.html.erb +0 -45
- data/app/views/super/application/_show.html.erb +0 -10
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +0 -21
- data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +0 -1
- data/frontend/super-frontend/tsconfig.json +0 -13
- data/lib/super/action.rb +0 -22
- data/lib/super/action/step.rb +0 -36
- data/lib/super/test_support/copy_app_templates/controllers/favorite_things_controller.rb +0 -50
- data/lib/super/test_support/copy_app_templates/controllers/members_controller.rb +0 -74
- data/lib/super/test_support/copy_app_templates/controllers/ships_controller.rb +0 -47
- data/lib/super/test_support/copy_app_templates/migrations/20190216224956_create_members.rb +0 -11
- data/lib/super/test_support/copy_app_templates/migrations/20190803143320_create_ships.rb +0 -11
- data/lib/super/test_support/copy_app_templates/migrations/20190806014121_add_ship_to_members.rb +0 -5
- data/lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb +0 -10
- data/lib/super/test_support/copy_app_templates/models/favorite_thing.rb +0 -7
- data/lib/super/test_support/copy_app_templates/models/member.rb +0 -23
- data/lib/super/test_support/copy_app_templates/models/ship.rb +0 -3
- data/lib/super/test_support/copy_app_templates/routes.rb +0 -11
- data/lib/super/test_support/copy_app_templates/seeds.rb +0 -2
- data/lib/super/test_support/copy_app_templates/views/members/_favorite_things.html.erb +0 -11
- data/lib/super/test_support/fixtures/favorite_things.yml +0 -9
- data/lib/super/test_support/fixtures/members.yml +0 -336
- data/lib/super/test_support/fixtures/ships.yml +0 -10
- data/lib/super/test_support/generate_copy_app.rb +0 -42
- data/lib/super/test_support/generate_dummy.rb +0 -93
- data/lib/super/test_support/starfleet_seeder.rb +0 -50
- data/lib/tasks/super_tasks.rake +0 -4
@@ -0,0 +1,25 @@
|
|
1
|
+
module Super
|
2
|
+
module Compatability
|
3
|
+
module_function
|
4
|
+
|
5
|
+
# Rails 5.1 and after lets you find field errors using either a string or a
|
6
|
+
# symbol.
|
7
|
+
def errable_fields(field)
|
8
|
+
if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR == 0
|
9
|
+
[field.to_s, field.to_sym]
|
10
|
+
else
|
11
|
+
field
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def sanitize_sql_like(query)
|
16
|
+
if ActiveRecord::VERSION::MAJOR == 4
|
17
|
+
ActiveRecord::Base.send(:sanitize_sql_like, query)
|
18
|
+
elsif ActiveRecord::VERSION::MAJOR == 5 && ActiveRecord::VERSION::MINOR <= 1
|
19
|
+
ActiveRecord::Base.send(:sanitize_sql_like, query)
|
20
|
+
else
|
21
|
+
ActiveRecord::Base.sanitize_sql_like(query)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/lib/super/configuration.rb
CHANGED
@@ -19,81 +19,33 @@ module Super
|
|
19
19
|
# end
|
20
20
|
# ```
|
21
21
|
class Configuration
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
def initialize
|
23
|
+
self.title = "Super Admin"
|
24
|
+
self.index_records_per_page = 20
|
25
|
+
self.controller_namespace = "admin"
|
26
|
+
self.route_namespace = :admin
|
26
27
|
|
27
|
-
|
28
|
-
|
29
|
-
if value.respond_to?(:call)
|
30
|
-
value = value.call
|
31
|
-
end
|
28
|
+
controller_plugins.use(prepend: Super::Filter::ControllerMethods)
|
29
|
+
controller_plugins.use(prepend: Super::Pagination::ControllerMethods)
|
32
30
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
def configured?(attr)
|
38
|
-
instance_variable_defined?("@#{attr}")
|
39
|
-
end
|
40
|
-
|
41
|
-
module ClassMethods
|
42
|
-
def defaults
|
43
|
-
@defaults ||= {}
|
44
|
-
end
|
45
|
-
|
46
|
-
def wraps
|
47
|
-
@wraps ||= {}
|
48
|
-
end
|
49
|
-
|
50
|
-
def configure(attr, wrap: nil, enum: nil, **kwargs)
|
51
|
-
if kwargs.key?(:default)
|
52
|
-
defaults[attr] = kwargs[:default]
|
53
|
-
end
|
54
|
-
|
55
|
-
define_method(attr) do
|
56
|
-
if !configured?(attr)
|
57
|
-
raise Error::UnconfiguredConfiguration, "unconfigured: #{attr}"
|
58
|
-
end
|
59
|
-
|
60
|
-
result = instance_variable_get("@#{attr}")
|
61
|
-
|
62
|
-
if wrap.nil?
|
63
|
-
result
|
64
|
-
else
|
65
|
-
wrap.call(result)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
define_method("#{attr}=") do |value|
|
70
|
-
if enum.is_a?(Array)
|
71
|
-
if !enum.include?(value)
|
72
|
-
raise Error::InvalidConfiguration,
|
73
|
-
"tried to set `#{attr}` to `#{value.inspect}`, " \
|
74
|
-
"expected: #{enum.join(", ")}"
|
75
|
-
end
|
76
|
-
end
|
31
|
+
self.javascripts = [Super::Assets.auto("super/application")]
|
32
|
+
self.stylesheets = [Super::Assets.auto("super/application")]
|
33
|
+
end
|
77
34
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
35
|
+
attr_accessor :title
|
36
|
+
attr_accessor :index_records_per_page
|
37
|
+
attr_accessor :controller_namespace
|
38
|
+
attr_writer :route_namespace
|
39
|
+
def route_namespace
|
40
|
+
[@route_namespace].flatten
|
83
41
|
end
|
84
42
|
|
85
|
-
|
43
|
+
attr_accessor :javascripts
|
44
|
+
attr_accessor :stylesheets
|
86
45
|
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
configure :index_resources_per_page, default: 20
|
91
|
-
# @!attribute [rw]
|
92
|
-
configure :controller_namespace, default: "admin"
|
93
|
-
# @!attribute [rw]
|
94
|
-
configure :route_namespace, default: :admin, wrap: -> (val) { [val].flatten }
|
95
|
-
# @!attribute [rw]
|
96
|
-
configure :asset_handler, default: -> { Super::Assets.auto }
|
46
|
+
def controller_plugins
|
47
|
+
Plugin::Registry.controller
|
48
|
+
end
|
97
49
|
|
98
50
|
# @api private
|
99
51
|
def path_parts(*parts)
|
data/lib/super/controls.rb
CHANGED
@@ -1,261 +1,13 @@
|
|
1
|
+
require "super/controls/optional"
|
2
|
+
require "super/controls/required"
|
3
|
+
require "super/controls/steps"
|
4
|
+
|
1
5
|
module Super
|
2
|
-
#
|
3
|
-
#
|
4
|
-
# some default implementation.
|
6
|
+
# The base Controls class. Most parts of Super can be configured by
|
7
|
+
# customizing its methods.
|
5
8
|
class Controls
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
attr_reader :actual
|
11
|
-
|
12
|
-
# This is an optional method
|
13
|
-
#
|
14
|
-
# @return [String]
|
15
|
-
def title
|
16
|
-
if @actual.respond_to?(:title)
|
17
|
-
return @actual.title
|
18
|
-
end
|
19
|
-
|
20
|
-
model.name.pluralize
|
21
|
-
end
|
22
|
-
|
23
|
-
# Specifies the model. This is a required method
|
24
|
-
#
|
25
|
-
# @return [ActiveRecord::Base]
|
26
|
-
def model
|
27
|
-
@actual.model
|
28
|
-
end
|
29
|
-
|
30
|
-
# Configures the actions linked to on the index page. This is an optional
|
31
|
-
# method
|
32
|
-
#
|
33
|
-
# @param params [ActionController::Parameters]
|
34
|
-
# @param action [ActionInquirer]
|
35
|
-
# @return [Array<Link>]
|
36
|
-
def resources_actions(params:, action:)
|
37
|
-
actions =
|
38
|
-
if @actual.respond_to?(:resources_actions)
|
39
|
-
@actual.resources_actions(params: params, action: action)
|
40
|
-
else
|
41
|
-
[:new]
|
42
|
-
end
|
43
|
-
|
44
|
-
actions.map do |link|
|
45
|
-
link = Link.resolve(link)
|
46
|
-
|
47
|
-
link.call(params: params)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
# Configures the actions linked to on the show page as well as each row of
|
52
|
-
# the table on the index page. This is an optional method
|
53
|
-
#
|
54
|
-
# @param resource [ActiveRecord::Base]
|
55
|
-
# @param params [ActionController::Parameters]
|
56
|
-
# @param action [ActionInquirer]
|
57
|
-
# @return [Array<Link>]
|
58
|
-
def resource_actions(resource, params:, action:)
|
59
|
-
actions =
|
60
|
-
if @actual.respond_to?(:resource_actions)
|
61
|
-
@actual.resource_actions(resource, params: params, action: action)
|
62
|
-
else
|
63
|
-
if action.show?
|
64
|
-
[:edit, :destroy]
|
65
|
-
elsif action.edit?
|
66
|
-
[:show, :destroy]
|
67
|
-
else
|
68
|
-
[:show, :edit, :destroy]
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
actions.map do |link|
|
73
|
-
link = Link.resolve(link)
|
74
|
-
|
75
|
-
link.call(resource, params: params)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
# Configures what database records are visible on load. This is an optional
|
80
|
-
# method, it defaults to "`all`" methods
|
81
|
-
#
|
82
|
-
# @param action [ActionInquirer]
|
83
|
-
# @return [ActiveRecord::Relation]
|
84
|
-
def scope(action:)
|
85
|
-
if @actual.respond_to?(:scope)
|
86
|
-
return @actual.scope(action: action)
|
87
|
-
end
|
88
|
-
|
89
|
-
model.all
|
90
|
-
end
|
91
|
-
|
92
|
-
# Configures which parameters could be written to the database. This is a
|
93
|
-
# required method
|
94
|
-
#
|
95
|
-
# @param params [ActionController::Parameters]
|
96
|
-
# @param action [ActionInquirer]
|
97
|
-
# @return [ActionController::Parameters]
|
98
|
-
def permitted_params(params, action:)
|
99
|
-
@actual.permitted_params(params, action: action)
|
100
|
-
end
|
101
|
-
|
102
|
-
# Configures the fields that are displayed on the index and show actions.
|
103
|
-
# This is a required method
|
104
|
-
#
|
105
|
-
# @param action [ActionInquirer]
|
106
|
-
# @return [Schema]
|
107
|
-
def display_schema(action:)
|
108
|
-
@actual.display_schema(action: action)
|
109
|
-
end
|
110
|
-
|
111
|
-
# Configures the editable fields on the new and edit actions. This is a
|
112
|
-
# required method
|
113
|
-
#
|
114
|
-
# @param action [ActionInquirer]
|
115
|
-
# @return [Schema]
|
116
|
-
def form_schema(action:)
|
117
|
-
@actual.form_schema(action: action)
|
118
|
-
end
|
119
|
-
|
120
|
-
# @return [Action]
|
121
|
-
def index
|
122
|
-
if @actual.respond_to?(:index)
|
123
|
-
return @actual.index
|
124
|
-
end
|
125
|
-
|
126
|
-
Super::Action.new(
|
127
|
-
steps: [
|
128
|
-
:load_resources,
|
129
|
-
:paginate,
|
130
|
-
],
|
131
|
-
page: Super::Layout.new(
|
132
|
-
mains: [
|
133
|
-
Super::Panel.new(
|
134
|
-
Super::Partial.new("resources_header"),
|
135
|
-
Super::Partial.new("index")
|
136
|
-
)
|
137
|
-
]
|
138
|
-
)
|
139
|
-
)
|
140
|
-
end
|
141
|
-
|
142
|
-
# @return [Action]
|
143
|
-
def show
|
144
|
-
if @actual.respond_to?(:show)
|
145
|
-
return @actual.show
|
146
|
-
end
|
147
|
-
|
148
|
-
Super::Action.new(
|
149
|
-
steps: [
|
150
|
-
:load_resource,
|
151
|
-
],
|
152
|
-
page: Super::Layout.new(
|
153
|
-
mains: [
|
154
|
-
Super::Panel.new(
|
155
|
-
Super::Partial.new("resource_header"),
|
156
|
-
Super::Partial.new("show")
|
157
|
-
)
|
158
|
-
]
|
159
|
-
)
|
160
|
-
)
|
161
|
-
end
|
162
|
-
|
163
|
-
# @return [Action]
|
164
|
-
def new
|
165
|
-
if @actual.respond_to?(:new)
|
166
|
-
return @actual.new
|
167
|
-
end
|
168
|
-
|
169
|
-
Super::Action.new(
|
170
|
-
steps: [
|
171
|
-
:new_resource,
|
172
|
-
],
|
173
|
-
page: Super::Layout.new(
|
174
|
-
mains: [
|
175
|
-
Super::Panel.new(
|
176
|
-
Super::Partial.new("resources_header"),
|
177
|
-
Super::Partial.new("form")
|
178
|
-
)
|
179
|
-
]
|
180
|
-
)
|
181
|
-
)
|
182
|
-
end
|
183
|
-
|
184
|
-
# @return [Action]
|
185
|
-
def create
|
186
|
-
if @actual.respond_to?(:create)
|
187
|
-
return @actual.create
|
188
|
-
end
|
189
|
-
|
190
|
-
Super::Action.new(
|
191
|
-
steps: [
|
192
|
-
:create_resource,
|
193
|
-
],
|
194
|
-
page: Super::Layout.new(
|
195
|
-
mains: [
|
196
|
-
Super::Panel.new(
|
197
|
-
Super::Partial.new("resources_header"),
|
198
|
-
Super::Partial.new("form")
|
199
|
-
)
|
200
|
-
]
|
201
|
-
)
|
202
|
-
)
|
203
|
-
end
|
204
|
-
|
205
|
-
# @return [Action]
|
206
|
-
def edit
|
207
|
-
if @actual.respond_to?(:edit)
|
208
|
-
return @actual.edit
|
209
|
-
end
|
210
|
-
|
211
|
-
Super::Action.new(
|
212
|
-
steps: [
|
213
|
-
:load_resource,
|
214
|
-
],
|
215
|
-
page: Super::Layout.new(
|
216
|
-
mains: [
|
217
|
-
Super::Panel.new(
|
218
|
-
Super::Partial.new("resource_header"),
|
219
|
-
Super::Partial.new("form")
|
220
|
-
)
|
221
|
-
]
|
222
|
-
)
|
223
|
-
)
|
224
|
-
end
|
225
|
-
|
226
|
-
# @return [Action]
|
227
|
-
def update
|
228
|
-
if @actual.respond_to?(:update)
|
229
|
-
return @actual.update
|
230
|
-
end
|
231
|
-
|
232
|
-
Super::Action.new(
|
233
|
-
steps: [
|
234
|
-
:load_resource,
|
235
|
-
],
|
236
|
-
page: Super::Layout.new(
|
237
|
-
mains: [
|
238
|
-
Super::Panel.new(
|
239
|
-
Super::Partial.new("resource_header"),
|
240
|
-
Super::Partial.new("form")
|
241
|
-
)
|
242
|
-
]
|
243
|
-
)
|
244
|
-
)
|
245
|
-
end
|
246
|
-
|
247
|
-
# @return [Action]
|
248
|
-
def destroy
|
249
|
-
if @actual.respond_to?(:destroy)
|
250
|
-
return @actual.destroy
|
251
|
-
end
|
252
|
-
|
253
|
-
Super::Action.new(
|
254
|
-
steps: [
|
255
|
-
:load_resource,
|
256
|
-
],
|
257
|
-
page: Super::Layout.new
|
258
|
-
)
|
259
|
-
end
|
9
|
+
include Required
|
10
|
+
include Optional
|
11
|
+
include Steps
|
260
12
|
end
|
261
13
|
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
module Super
|
2
|
+
class Controls
|
3
|
+
# Methods for `Controls` that have a sane default implementation
|
4
|
+
module Optional
|
5
|
+
# This is an optional method
|
6
|
+
#
|
7
|
+
# @return [String]
|
8
|
+
def title
|
9
|
+
model.name.pluralize
|
10
|
+
end
|
11
|
+
|
12
|
+
# Configures what database records are visible on load. This is an optional
|
13
|
+
# method, it defaults to "`all`" methods
|
14
|
+
#
|
15
|
+
# @param action [ActionInquirer]
|
16
|
+
# @return [ActiveRecord::Relation]
|
17
|
+
def scope(action:)
|
18
|
+
model.all
|
19
|
+
end
|
20
|
+
|
21
|
+
# Configures the fields that are displayed on the index and show actions.
|
22
|
+
# This is a required method
|
23
|
+
#
|
24
|
+
# @param action [ActionInquirer]
|
25
|
+
# @return [Display]
|
26
|
+
def display_schema(action:)
|
27
|
+
Display.new(action: action) do |fields, type|
|
28
|
+
Display::Guesser.new(model: model, action: action, fields: fields, type: type).call
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
# Configures the editable fields on the new and edit actions. This is a
|
33
|
+
# required method
|
34
|
+
#
|
35
|
+
# @param action [ActionInquirer]
|
36
|
+
# @return [Form]
|
37
|
+
def form_schema(action:)
|
38
|
+
Form.new do |fields, type|
|
39
|
+
Form::Guesser.new(model: model, fields: fields, type: type).call
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# Configures which parameters could be written to the database. This is a
|
44
|
+
# required method
|
45
|
+
#
|
46
|
+
# @param params [ActionController::Parameters]
|
47
|
+
# @param action [ActionInquirer]
|
48
|
+
# @return [ActionController::Parameters]
|
49
|
+
def permitted_params(params, action:)
|
50
|
+
strong_params = Super::Form::StrongParams.new(form_schema(action: action))
|
51
|
+
params.require(strong_params.require(model)).permit(strong_params.permit)
|
52
|
+
end
|
53
|
+
|
54
|
+
# Configures the actions linked to on the index page. This is an optional
|
55
|
+
# method
|
56
|
+
#
|
57
|
+
# @param action [ActionInquirer]
|
58
|
+
# @return [Array<Link>]
|
59
|
+
def collection_actions(action:)
|
60
|
+
Super::Link.find_all(:new)
|
61
|
+
end
|
62
|
+
|
63
|
+
# Configures the actions linked to on the show page as well as each row of
|
64
|
+
# the table on the index page. This is an optional method
|
65
|
+
#
|
66
|
+
# @param action [ActionInquirer]
|
67
|
+
# @return [Array<Link>]
|
68
|
+
def member_actions(action:)
|
69
|
+
if action.show?
|
70
|
+
Super::Link.find_all(:edit, :destroy)
|
71
|
+
elsif action.edit?
|
72
|
+
Super::Link.find_all(:show, :destroy)
|
73
|
+
else
|
74
|
+
Super::Link.find_all(:show, :edit, :destroy)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|