super 0.0.4 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +13 -0
  3. data/CONTRIBUTING.md +56 -0
  4. data/README.md +60 -85
  5. data/STABILITY.md +50 -0
  6. data/app/assets/javascripts/super/application.js +1169 -359
  7. data/app/assets/stylesheets/super/application.css +86648 -30707
  8. data/app/controllers/super/application_controller.rb +44 -71
  9. data/app/views/layouts/super/application.html.erb +26 -6
  10. data/app/views/super/application/{_resources_header.html.erb → _collection_header.html.erb} +5 -6
  11. data/app/views/super/application/_display_rich_text.html.erb +1 -0
  12. data/app/views/super/application/_filter.html.erb +14 -0
  13. data/app/views/super/application/_filter_type_select.html.erb +31 -0
  14. data/app/views/super/application/_filter_type_text.html.erb +22 -0
  15. data/app/views/super/application/_filter_type_timestamp.html.erb +35 -0
  16. data/app/views/super/application/_flash.html.erb +13 -13
  17. data/app/views/super/application/_form_field__destroy.html.erb +6 -2
  18. data/app/views/super/application/_form_field_checkbox.html.erb +15 -0
  19. data/app/views/super/application/_form_field_generic.html.erb +19 -0
  20. data/app/views/super/application/_form_field_rich_text_area.html.erb +13 -0
  21. data/app/views/super/application/_form_field_select.html.erb +11 -5
  22. data/app/views/super/application/_form_field_text.html.erb +13 -5
  23. data/app/views/super/application/_form_has_many.html.erb +3 -3
  24. data/app/views/super/application/_form_inline_errors.html.erb +1 -1
  25. data/app/views/super/application/{_resource_header.html.erb → _member_header.html.erb} +6 -6
  26. data/app/views/super/application/_super_layout.html.erb +12 -17
  27. data/app/views/super/application/_super_pagination.html.erb +16 -0
  28. data/app/views/super/application/_super_panel.html.erb +3 -7
  29. data/app/views/super/application/_super_schema_display_actions.html.erb +5 -0
  30. data/app/views/super/application/_super_schema_display_index.html.erb +24 -0
  31. data/app/views/super/application/_super_schema_display_show.html.erb +8 -0
  32. data/app/views/super/application/{_form.html.erb → _super_schema_form.html.erb} +2 -4
  33. data/app/views/super/application/edit.html.erb +1 -1
  34. data/app/views/super/application/index.html.erb +1 -1
  35. data/app/views/super/application/new.html.erb +1 -1
  36. data/app/views/super/application/show.html.erb +1 -1
  37. data/app/views/super/feather/{_chevron_down.svg → _chevron_down.html} +0 -0
  38. data/config/locales/en.yml +5 -0
  39. data/docs/README.md +8 -0
  40. data/docs/action_text.md +48 -0
  41. data/docs/cheat.md +41 -0
  42. data/docs/faq.md +44 -0
  43. data/docs/installation.md +21 -0
  44. data/docs/quick_start.md +30 -0
  45. data/docs/webpacker.md +25 -0
  46. data/docs/yard_customizations.rb +41 -0
  47. data/frontend/super-frontend/build.js +1 -1
  48. data/frontend/super-frontend/dist/application.css +86648 -30707
  49. data/frontend/super-frontend/dist/application.js +1169 -359
  50. data/frontend/super-frontend/package.json +2 -3
  51. data/frontend/super-frontend/src/javascripts/super/{application.ts → application.js} +5 -8
  52. data/frontend/super-frontend/src/javascripts/super/apply_template_controller.js +17 -0
  53. data/frontend/super-frontend/src/javascripts/super/{toggle_pending_destruction_controller.ts → toggle_pending_destruction_controller.js} +2 -2
  54. data/frontend/super-frontend/tailwind.config.js +7 -1
  55. data/frontend/super-frontend/yarn.lock +1368 -1391
  56. data/lib/generators/super/action_text/USAGE +23 -0
  57. data/lib/generators/super/action_text/action_text_generator.rb +30 -0
  58. data/lib/generators/super/action_text/templates/pack_super_action_text.css +23 -0
  59. data/lib/generators/super/action_text/templates/pack_super_action_text.js +4 -0
  60. data/lib/generators/super/install/install_generator.rb +16 -0
  61. data/lib/generators/super/resource/templates/resources_controller.rb.tt +1 -31
  62. data/lib/generators/super/webpacker/USAGE +5 -4
  63. data/lib/generators/super/webpacker/webpacker_generator.rb +10 -1
  64. data/lib/super.rb +22 -5
  65. data/lib/super/action_inquirer.rb +2 -2
  66. data/lib/super/assets.rb +112 -38
  67. data/lib/super/client_error.rb +43 -0
  68. data/lib/super/compatibility.rb +25 -0
  69. data/lib/super/configuration.rb +21 -69
  70. data/lib/super/controls.rb +9 -257
  71. data/lib/super/controls/optional.rb +79 -0
  72. data/lib/super/controls/required.rb +13 -0
  73. data/lib/super/controls/steps.rb +114 -0
  74. data/lib/super/display.rb +66 -3
  75. data/lib/super/display/guesser.rb +34 -0
  76. data/lib/super/display/schema_types.rb +61 -25
  77. data/lib/super/engine.rb +7 -1
  78. data/lib/super/error.rb +8 -9
  79. data/lib/super/filter.rb +12 -0
  80. data/lib/super/filter/form_object.rb +97 -0
  81. data/lib/super/filter/guesser.rb +30 -0
  82. data/lib/super/filter/operator.rb +103 -0
  83. data/lib/super/filter/plugin.rb +47 -0
  84. data/lib/super/filter/schema_types.rb +112 -0
  85. data/lib/super/form.rb +35 -0
  86. data/lib/super/form/builder.rb +48 -0
  87. data/lib/super/form/guesser.rb +27 -0
  88. data/lib/super/form/schema_types.rb +29 -22
  89. data/lib/super/form/strong_params.rb +29 -0
  90. data/lib/super/layout.rb +28 -0
  91. data/lib/super/link.rb +55 -32
  92. data/lib/super/pagination.rb +55 -0
  93. data/lib/super/panel.rb +13 -0
  94. data/lib/super/partial.rb +12 -0
  95. data/lib/super/partial/resolving.rb +24 -0
  96. data/lib/super/plugin.rb +34 -63
  97. data/lib/super/schema.rb +12 -22
  98. data/lib/super/schema/common.rb +25 -0
  99. data/lib/super/schema/guesser.rb +77 -0
  100. data/lib/super/version.rb +1 -1
  101. data/lib/super/view_helper.rb +43 -0
  102. metadata +138 -41
  103. data/app/helpers/super/application_helper.rb +0 -32
  104. data/app/views/super/application/_index.html.erb +0 -45
  105. data/app/views/super/application/_show.html.erb +0 -10
  106. data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +0 -21
  107. data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +0 -1
  108. data/frontend/super-frontend/tsconfig.json +0 -13
  109. data/lib/super/action.rb +0 -22
  110. data/lib/super/action/step.rb +0 -36
  111. data/lib/super/test_support/copy_app_templates/controllers/favorite_things_controller.rb +0 -50
  112. data/lib/super/test_support/copy_app_templates/controllers/members_controller.rb +0 -74
  113. data/lib/super/test_support/copy_app_templates/controllers/ships_controller.rb +0 -47
  114. data/lib/super/test_support/copy_app_templates/migrations/20190216224956_create_members.rb +0 -11
  115. data/lib/super/test_support/copy_app_templates/migrations/20190803143320_create_ships.rb +0 -11
  116. data/lib/super/test_support/copy_app_templates/migrations/20190806014121_add_ship_to_members.rb +0 -5
  117. data/lib/super/test_support/copy_app_templates/migrations/20191126050453_create_favorite_things.rb +0 -10
  118. data/lib/super/test_support/copy_app_templates/models/favorite_thing.rb +0 -7
  119. data/lib/super/test_support/copy_app_templates/models/member.rb +0 -23
  120. data/lib/super/test_support/copy_app_templates/models/ship.rb +0 -3
  121. data/lib/super/test_support/copy_app_templates/routes.rb +0 -11
  122. data/lib/super/test_support/copy_app_templates/seeds.rb +0 -2
  123. data/lib/super/test_support/copy_app_templates/views/members/_favorite_things.html.erb +0 -11
  124. data/lib/super/test_support/fixtures/favorite_things.yml +0 -9
  125. data/lib/super/test_support/fixtures/members.yml +0 -336
  126. data/lib/super/test_support/fixtures/ships.yml +0 -10
  127. data/lib/super/test_support/generate_copy_app.rb +0 -42
  128. data/lib/super/test_support/generate_dummy.rb +0 -93
  129. data/lib/super/test_support/starfleet_seeder.rb +0 -50
  130. data/lib/tasks/super_tasks.rake +0 -4
@@ -1,11 +0,0 @@
1
- Rails.application.routes.draw do
2
- namespace :admin do
3
- resources :members
4
- resources :ships
5
- resources :favorite_things
6
-
7
- root to: redirect("admin/members", status: 302)
8
- end
9
-
10
- root to: redirect("admin/members", status: 302)
11
- end
@@ -1,2 +0,0 @@
1
- require "super/test_support/starfleet_seeder"
2
- StarfleetSeeder.seed
@@ -1,11 +0,0 @@
1
- <% if @resource.favorite_things.any? %>
2
- <%= render(Super::Panel.new) do %>
3
- <h1 class="text-xl">Favorite Things</h1>
4
-
5
- <ul class="list-disc list-outside mt-4">
6
- <% @resource.favorite_things.each do |favorite_thing| %>
7
- <li class="ml-6"><%= favorite_thing.name %></li>
8
- <% end %>
9
- </ul>
10
- <% end %>
11
- <% end %>
@@ -1,9 +0,0 @@
1
- # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
-
3
- tea:
4
- member: picard
5
- name: Tea, earl grey, hot
6
-
7
- spot:
8
- member: data
9
- name: Spot
@@ -1,336 +0,0 @@
1
- ---
2
- picard:
3
- name: Jean-Luc Picard
4
- rank: Captain
5
- position: Commanding Officer
6
- ship: uss_enterprise_d
7
-
8
- riker:
9
- name: William T. Riker
10
- rank: Commander
11
- position: First Officer
12
- ship: uss_enterprise_d
13
-
14
- data:
15
- name: Data
16
- rank: Lieutenant Commander
17
- position: Second Officer
18
- ship: uss_enterprise_d
19
-
20
- crusher:
21
- name: Beverly Crusher
22
- rank: Commander
23
- position: Chief Medical Officer
24
- ship: uss_enterprise_d
25
-
26
- worf:
27
- name: Worf
28
- rank: Lieutenant Commander
29
- position: Chief of Security
30
- ship: uss_enterprise_d
31
-
32
- la_forge:
33
- name: Geordi La Forge
34
- rank: Lieutenant Commander
35
- position: Chief Engineering Officer
36
- ship: uss_enterprise_d
37
-
38
- troi:
39
- name: Deanna Troi
40
- rank: Commander
41
- position: Counselor
42
- ship: uss_enterprise_d
43
-
44
- tasha:
45
- name: Natasha Yar
46
- rank: Lieutenant
47
- position: Chief of Security
48
- ship: uss_enterprise_d
49
-
50
- miles:
51
- name: Miles O'Brien
52
- rank: NCO
53
- position: Transporter Chief
54
- ship: uss_enterprise_d
55
-
56
- guinan:
57
- name: Guinan
58
- rank: NCO
59
- position: Bartender
60
- ship: uss_enterprise_d
61
-
62
- sepulveda:
63
- name: Fernando Sepulveda
64
- rank: Lieutenant
65
- position: Ops engineer
66
- ship: uss_enterprise_d
67
-
68
- jaxa:
69
- name: Sito Jaxa
70
- rank: Ensign
71
- position: Security officer
72
- ship: uss_enterprise_d
73
-
74
- calloway:
75
- name: Maddy Calloway
76
- rank: Ensign
77
- position: Medical technician
78
- ship: uss_enterprise_d
79
-
80
- mayter:
81
- name: Van Mayter
82
- rank: NCO
83
- position: Engineer
84
- ship: uss_enterprise_d
85
-
86
- sutter:
87
- name: Daniel Sutter
88
- rank: Ensign
89
- position: Engineer
90
- ship: uss_enterprise_d
91
-
92
- bernard:
93
- name: Harry Bernard, Sr.
94
- rank: Lieutenant
95
- position: Oceanographer
96
- ship: uss_enterprise_d
97
-
98
- dangelo:
99
- name: Dick D'Angelo
100
- rank: Lieutenant
101
- position: Ops Engineer
102
- ship: uss_enterprise_d
103
-
104
- ogawa:
105
- name: Alyssa Ogawa
106
- rank: Lieutenant
107
- position: Nurse
108
- ship: uss_enterprise_d
109
-
110
- nesterowicz:
111
- name: John Nesterowicz
112
- rank: Lieutenant
113
- position: WarpField Tech 2
114
- ship: uss_enterprise_d
115
-
116
- keiko:
117
- name: Keiko O'Brien
118
- rank: NCO
119
- position: Botanist
120
- ship: uss_enterprise_d
121
-
122
- anaya:
123
- name: April Anaya
124
- rank: Ensign
125
- position: Flight controller
126
- ship: uss_enterprise_d
127
-
128
- ziff:
129
- name: Anaanda Ziff
130
- rank: Lieutenant
131
- position: Specialist
132
- ship: uss_enterprise_d
133
-
134
- tarses:
135
- name: Simon Tarses
136
- rank: NCO
137
- position: Medical technician
138
- ship: uss_enterprise_d
139
-
140
- wallace:
141
- name: Darien Wallace
142
- rank: Lieutenant
143
- position: Crewmember
144
- ship: uss_enterprise_d
145
-
146
- giddings:
147
- name: Diana Giddings
148
- rank: Lieutenant
149
- position: Junior engineer
150
- ship: uss_enterprise_d
151
-
152
- pulaski:
153
- name: Katherine Pulaski
154
- rank: Commander
155
- position: Medical officer
156
- ship: uss_enterprise_d
157
-
158
- dumont:
159
- name: Suzanne Dumont
160
- rank: Ensign
161
- position: Crewmember
162
- ship: uss_enterprise_d
163
-
164
- tsu:
165
- name: Lian T'Su
166
- rank: Ensign
167
- position: Operations officer
168
- ship: uss_enterprise_d
169
-
170
- lynch:
171
- name: Leland T. Lynch
172
- rank: Lieutenant Commander
173
- position: Chief engineer
174
- ship: uss_enterprise_d
175
-
176
- dsora:
177
- name: Jenna D'Sora
178
- rank: Lieutenant Junior Grade
179
- position: Security officer
180
- ship: uss_enterprise_d
181
-
182
- macdougal:
183
- name: Sarah MacDougal
184
- rank: Lieutenant Commander
185
- position: Chief engineer
186
- ship: uss_enterprise_d
187
-
188
- shimoda:
189
- name: Jim Shimoda
190
- rank: NCO
191
- position: Assistant chief engineer
192
- ship: uss_enterprise_d
193
-
194
- solis:
195
- name: Orfil Solis
196
- rank: Lieutenant Junior Grade
197
- position: Flight controller
198
- ship: uss_enterprise_d
199
-
200
- rhodes:
201
- name: Sandra Rhodes
202
- rank: Lieutenant
203
- position: Security officer
204
- ship: uss_enterprise_d
205
-
206
- fratis:
207
- name: Jeffrey Fratis
208
- rank: Lieutenant
209
- position: Crewmember
210
- ship: uss_enterprise_d
211
-
212
- mees:
213
- name: Jim Mees
214
- rank: Lieutenant Commander
215
- position: Crewmember
216
- ship: uss_enterprise_d
217
-
218
- hubbell:
219
- name: Maggie Hubbell
220
- rank: Ensign
221
- position: Transporter chief
222
- ship: uss_enterprise_d
223
-
224
- rager:
225
- name: Sariel Rager
226
- rank: Ensign
227
- position: Helmsman
228
- ship: uss_enterprise_d
229
-
230
- robinson:
231
- name: B.G. Robinson
232
- rank: Lieutenant
233
- position: Transporter chief
234
- ship: uss_enterprise_d
235
-
236
- allenby:
237
- name: Tess Allenby
238
- rank: Ensign
239
- position: Flight controller
240
- ship: uss_enterprise_d
241
-
242
- brooks:
243
- name: Janet Brooks
244
- rank: Ensign
245
- position: Crewmember
246
- ship: uss_enterprise_d
247
-
248
- foster:
249
- name: Don Foster, Jr.
250
- rank: Lieutenant
251
- position: WarpField Tech 1
252
- ship: uss_enterprise_d
253
-
254
- lefler:
255
- name: Robin Lefler
256
- rank: Ensign
257
- position: Mission Specialist
258
- ship: uss_enterprise_d
259
-
260
- lavelle:
261
- name: Sam Lavelle
262
- rank: Lieutenant Junior Grade
263
- position: Operations officer
264
- ship: uss_enterprise_d
265
-
266
- prieto:
267
- name: Ben Prieto
268
- rank: Lieutenant
269
- position: Shuttlecraft Pilot
270
- ship: uss_enterprise_d
271
-
272
- pacelli:
273
- name: Alfonse Pacelli
274
- rank: Ensign
275
- position: Specialist
276
- ship: uss_enterprise_d
277
-
278
- aster:
279
- name: Marla Aster
280
- rank: Lieutenant
281
- position: Archaeologist
282
- ship: uss_enterprise_d
283
-
284
- barclay:
285
- name: Reginald Barclay
286
- rank: Lieutenant
287
- position: Systems diagnostic engineer
288
- ship: uss_enterprise_d
289
-
290
- salvatore:
291
- name: Bruno Salvatore
292
- rank: Ensign
293
- position: Specialist in biomechanical research
294
- ship: uss_enterprise_d
295
-
296
- juarez:
297
- name: Francisca Juarez
298
- rank: Lieutenant
299
- position: Crewmember
300
- ship: uss_enterprise_d
301
-
302
- finks:
303
- name: Wilbur Finks
304
- rank: Lieutenant
305
- position: Safety officer
306
- ship: uss_enterprise_d
307
-
308
- larson:
309
- name: Linda Larson
310
- rank: Lieutenant Junior Grade
311
- position: Engineer
312
- ship: uss_enterprise_d
313
-
314
- gomez:
315
- name: Sonya Gomez
316
- rank: Ensign
317
- position: Engineer
318
- ship: uss_enterprise_d
319
-
320
- hagler:
321
- name: Edward Hagler
322
- rank: Lieutenant
323
- position: Crewmember
324
- ship: uss_enterprise_d
325
-
326
- lin:
327
- name: Peter Lin
328
- rank: Ensign
329
- position: Flight controller
330
- ship: uss_enterprise_d
331
-
332
- kwan:
333
- name: Daniel Kwan
334
- rank: Lieutenant Junior Grade
335
- position: Specialist
336
- ship: uss_enterprise_d
@@ -1,10 +0,0 @@
1
- ---
2
- uss_enterprise_d:
3
- name: USS Enterprise
4
- registry: NCC-1701-D
5
- class_name: Galaxy
6
-
7
- uss_jenolan:
8
- name: USS Jenolan
9
- registry: NCC-2010
10
- class_name: Sydney
@@ -1,42 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "rails/generators"
4
- require_relative "../../generators/super/install/install_generator"
5
-
6
- class SuperCopyAppGenerator < Rails::Generators::Base
7
- source_root(File.expand_path("copy_app_templates", __dir__))
8
-
9
- class_option :destination, required: true
10
-
11
- def set_destination_root
12
- self.destination_root = options[:destination]
13
- end
14
-
15
- def ensure_reasonable_directory
16
- app_path = File.join(destination_root, "app")
17
- if !File.directory?(app_path)
18
- raise "Can't find dir: #{app_path}"
19
- end
20
- end
21
-
22
- def install_super
23
- Super::InstallGenerator.start([], destination_root: destination_root)
24
- end
25
-
26
- def copy_app
27
- directory "models", "app/models"
28
- directory "controllers", "app/controllers/admin"
29
- directory "views/members", "app/views/admin/members"
30
- end
31
-
32
- def copy_db
33
- directory "migrations", "db/migrate"
34
- copy_file "seeds.rb", "db/seeds.rb"
35
- end
36
-
37
- def copy_config
38
- copy_file "routes.rb", "config/routes.rb"
39
- end
40
- end
41
-
42
- SuperCopyAppGenerator.start
@@ -1,93 +0,0 @@
1
- require "fileutils"
2
- require "tmpdir"
3
-
4
- require "rails"
5
- require "rails/generators/rails/app/app_generator"
6
- require "rails/generators/rails/plugin/plugin_generator"
7
- require "generators/super/install/install_generator"
8
-
9
- module Rails
10
- module Generators
11
- class AppGenerator
12
- def valid_const?
13
- true
14
- end
15
- end
16
-
17
- class PluginGenerator
18
- def valid_const?
19
- true
20
- end
21
- end
22
- end
23
- end
24
-
25
- class SuperDummyGenerator < Rails::Generators::Base
26
- source_root(File.expand_path("templates", __dir__))
27
-
28
- class_option :destination, required: true
29
-
30
- def create_new_plugin
31
- if plugin_name.blank?
32
- warn "Not currently in a plugin directory"
33
- exit
34
- end
35
-
36
- opts = {
37
- force: true,
38
- skip_active_storage: true,
39
- skip_action_mailer: true,
40
- skip_action_mailbox: true,
41
- skip_action_text: true,
42
- skip_active_storage: true,
43
- skip_action_cable: true,
44
- skip_puma: true,
45
- skip_coffee: true,
46
- database: "sqlite3",
47
- }
48
-
49
- Dir.mktmpdir do |dir|
50
- plugin_path = File.join(dir, plugin_name)
51
- generated_dummy_path = File.join(plugin_path, "test/dummy")
52
-
53
- invoke(Rails::Generators::PluginGenerator, [plugin_path], opts)
54
-
55
- inside(generated_dummy_path) do
56
- remove_file(".ruby-version")
57
- end
58
-
59
- FileUtils.rm_rf(dummy_path)
60
- FileUtils.mv(generated_dummy_path, dummy_path)
61
- end
62
- end
63
-
64
- def delete_unnecessary_files
65
- inside(dummy_path) do
66
- remove_file("app/assets/javascripts/cable.js")
67
- remove_file("app/channels/")
68
- remove_file("public/apple-touch-icon-precomposed.png")
69
- remove_file("public/apple-touch-icon.png")
70
- end
71
- end
72
-
73
- private
74
-
75
- def dummy_path
76
- @dummy_path ||= File.expand_path(options[:destination], destination_root)
77
- end
78
-
79
- def plugin_name
80
- @plugin_name ||=
81
- begin
82
- filename = Dir.glob("*.gemspec").first
83
-
84
- if filename.present?
85
- File.basename(filename, ".gemspec")
86
- else
87
- ""
88
- end
89
- end
90
- end
91
- end
92
-
93
- SuperDummyGenerator.start