super 0.0.8 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +0 -7
- data/README.md +53 -79
- data/app/assets/javascripts/super/application.js +2728 -96
- data/app/assets/stylesheets/super/application.css +6405 -0
- data/app/controllers/super/application_controller.rb +19 -13
- data/app/helpers/super/form_builder_helper.rb +25 -0
- data/app/views/layouts/super/application.html.erb +11 -5
- data/app/views/super/application/{_super_schema_display_actions.html.erb → _display_actions.html.erb} +0 -0
- data/app/views/super/application/{_super_schema_display_index.html.erb → _display_index.html.erb} +5 -5
- data/app/views/super/application/_display_rich_text.html.erb +1 -0
- data/app/views/super/application/_display_show.html.erb +8 -0
- data/app/views/super/application/_filter.html.erb +5 -13
- data/app/views/super/application/_filter_type_select.html.erb +9 -19
- data/app/views/super/application/_filter_type_text.html.erb +7 -11
- data/app/views/super/application/_filter_type_timestamp.html.erb +6 -17
- data/app/views/super/application/_form.html.erb +15 -0
- data/app/views/super/application/_form_field__destroy.html.erb +1 -9
- data/app/views/super/application/_form_field_checkbox.html.erb +1 -0
- data/app/views/super/application/_form_field_flatpickr_date.html.erb +8 -0
- data/app/views/super/application/_form_field_flatpickr_datetime.html.erb +8 -0
- data/app/views/super/application/_form_field_flatpickr_time.html.erb +8 -0
- data/app/views/super/application/_form_field_rich_text_area.html.erb +1 -0
- data/app/views/super/application/_form_field_select.html.erb +1 -23
- data/app/views/super/application/_form_field_text.html.erb +1 -13
- data/app/views/super/application/{_super_layout.html.erb → _layout.html.erb} +7 -7
- data/app/views/super/application/{_super_pagination.html.erb → _pagination.html.erb} +1 -1
- data/app/views/super/application/{_super_panel.html.erb → _panel.html.erb} +2 -2
- data/app/views/super/application/_query.html.erb +18 -0
- data/app/views/super/application/_sort.html.erb +18 -0
- data/app/views/super/application/_sort_expression.html.erb +25 -0
- data/app/views/super/application/edit.html.erb +1 -0
- data/app/views/super/application/index.html.erb +1 -0
- data/app/views/super/application/new.html.erb +1 -0
- data/app/views/super/application/show.html.erb +1 -0
- data/app/views/super/feather/README.md +1 -0
- data/app/views/super/feather/_x.html +15 -0
- data/config/routes.rb +2 -0
- data/docs/cheat.md +8 -8
- data/frontend/super-frontend/dist/application.css +6405 -0
- data/frontend/super-frontend/dist/application.js +2728 -96
- data/lib/generators/super/action_text/USAGE +23 -0
- data/lib/generators/super/action_text/action_text_generator.rb +32 -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 +18 -7
- data/lib/generators/super/install/templates/base_controller.rb.tt +9 -1
- data/lib/generators/super/install/templates/initializer.rb.tt +9 -2
- data/lib/generators/super/resource/resource_generator.rb +107 -30
- data/lib/generators/super/resource/templates/resources_controller.rb.tt +3 -9
- data/lib/generators/super/webpacker/USAGE +5 -4
- data/lib/generators/super/webpacker/webpacker_generator.rb +2 -0
- data/lib/super.rb +7 -1
- data/lib/super/action_inquirer.rb +2 -0
- data/lib/super/assets.rb +6 -0
- data/lib/super/client_error.rb +2 -0
- data/lib/super/compatibility.rb +2 -0
- data/lib/super/configuration.rb +16 -24
- data/lib/super/controls.rb +11 -2
- data/lib/super/controls/optional.rb +35 -1
- data/lib/super/controls/steps.rb +27 -35
- data/lib/super/controls/view.rb +55 -0
- data/lib/super/display.rb +29 -13
- data/lib/super/display/guesser.rb +4 -0
- data/lib/super/display/schema_types.rb +74 -28
- data/lib/super/engine.rb +4 -0
- data/lib/super/error.rb +21 -0
- data/lib/super/filter.rb +2 -0
- data/lib/super/filter/form_object.rb +5 -8
- data/lib/super/filter/guesser.rb +2 -0
- data/lib/super/filter/operator.rb +2 -0
- data/lib/super/filter/schema_types.rb +2 -0
- data/lib/super/form.rb +3 -1
- data/lib/super/form/builder.rb +289 -39
- data/lib/super/form/guesser.rb +12 -1
- data/lib/super/form/inline_errors.rb +28 -0
- data/lib/super/form/schema_types.rb +25 -0
- data/lib/super/form/strong_params.rb +2 -0
- data/lib/super/layout.rb +3 -1
- data/lib/super/link.rb +7 -0
- data/lib/super/navigation/automatic.rb +4 -2
- data/lib/super/pagination.rb +3 -1
- data/lib/super/panel.rb +3 -1
- data/lib/super/partial.rb +2 -0
- data/lib/super/partial/resolving.rb +2 -0
- data/lib/super/plugin.rb +2 -0
- data/lib/super/query/form_object.rb +48 -0
- data/lib/super/schema.rb +2 -0
- data/lib/super/schema/common.rb +2 -0
- data/lib/super/schema/guesser.rb +2 -0
- data/lib/super/sort.rb +110 -0
- data/lib/super/useful/builder.rb +25 -0
- data/lib/super/useful/enum.rb +63 -0
- data/lib/super/version.rb +3 -1
- data/lib/super/view_helper.rb +2 -19
- metadata +56 -38
- data/CONTRIBUTING.md +0 -56
- data/Rakefile +0 -34
- data/STABILITY.md +0 -50
- data/app/views/super/application/_form_inline_errors.html.erb +0 -10
- data/app/views/super/application/_super_schema_display_show.html.erb +0 -8
- data/app/views/super/application/_super_schema_form.html.erb +0 -15
- data/docs/README.md +0 -6
- data/docs/faq.md +0 -44
- data/docs/quick_start.md +0 -45
- data/docs/webpacker.md +0 -17
- data/docs/yard_customizations.rb +0 -41
- data/frontend/super-frontend/build.js +0 -36
- data/frontend/super-frontend/package.json +0 -21
- data/frontend/super-frontend/postcss.config.js +0 -6
- data/frontend/super-frontend/src/javascripts/super/application.ts +0 -15
- data/frontend/super-frontend/src/javascripts/super/apply_template_controller.ts +0 -19
- data/frontend/super-frontend/src/javascripts/super/rails__ujs.d.ts +0 -1
- data/frontend/super-frontend/src/javascripts/super/toggle_pending_destruction_controller.ts +0 -15
- data/frontend/super-frontend/src/stylesheets/super/application.css +0 -77
- data/frontend/super-frontend/tailwind.config.js +0 -15
- data/frontend/super-frontend/tsconfig.json +0 -13
- data/frontend/super-frontend/yarn.lock +0 -5448
- data/lib/super/controls/required.rb +0 -13
- data/lib/super/filter/plugin.rb +0 -47
data/lib/super/form/guesser.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Super
|
2
4
|
class Form
|
3
5
|
class Guesser
|
@@ -20,7 +22,16 @@ module Super
|
|
20
22
|
private
|
21
23
|
|
22
24
|
def attribute_type_for(attribute_name)
|
23
|
-
@type
|
25
|
+
case @model.type_for_attribute(attribute_name).type
|
26
|
+
when :datetime
|
27
|
+
@type.flatpickr_datetime
|
28
|
+
when :time
|
29
|
+
@type.flatpickr_time
|
30
|
+
when :date
|
31
|
+
@type.flatpickr_date
|
32
|
+
else
|
33
|
+
@type.string
|
34
|
+
end
|
24
35
|
end
|
25
36
|
end
|
26
37
|
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Super
|
4
|
+
class Form
|
5
|
+
module InlineErrors
|
6
|
+
module_function
|
7
|
+
|
8
|
+
def error_messages(model_instance, column_or_association)
|
9
|
+
errable_fields(model_instance, column_or_association)
|
10
|
+
.flat_map { |field| Compatability.errable_fields(field) }
|
11
|
+
.flat_map { |field| model_instance.errors.full_messages_for(field) }
|
12
|
+
.uniq
|
13
|
+
end
|
14
|
+
|
15
|
+
def errable_fields(model_instance, column_or_association)
|
16
|
+
column_or_association = column_or_association.to_s
|
17
|
+
reflection = model_instance.class.reflect_on_association(column_or_association)
|
18
|
+
reflection ||= model_instance.class.reflections.values.find { |r| r.foreign_key == column_or_association }
|
19
|
+
|
20
|
+
if reflection
|
21
|
+
[reflection.name.to_s, reflection.foreign_key.to_s]
|
22
|
+
else
|
23
|
+
[column_or_association]
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Super
|
2
4
|
class Form
|
3
5
|
class SchemaTypes
|
@@ -9,6 +11,7 @@ module Super
|
|
9
11
|
end
|
10
12
|
|
11
13
|
attr_reader :nested_fields
|
14
|
+
attr_reader :extras
|
12
15
|
|
13
16
|
def each_attribute
|
14
17
|
if block_given?
|
@@ -74,6 +77,28 @@ module Super
|
|
74
77
|
Generic.new(partial_path: "form_field_text", extras: extras, nested: {})
|
75
78
|
end
|
76
79
|
|
80
|
+
alias text string
|
81
|
+
|
82
|
+
def rich_text_area(**extras)
|
83
|
+
Generic.new(partial_path: "form_field_rich_text_area", extras: extras, nested: {})
|
84
|
+
end
|
85
|
+
|
86
|
+
def checkbox(**extras)
|
87
|
+
Generic.new(partial_path: "form_field_checkbox", extras: extras, nested: {})
|
88
|
+
end
|
89
|
+
|
90
|
+
def flatpickr_date(**extras)
|
91
|
+
Generic.new(partial_path: "form_field_flatpickr_date", extras: extras, nested: {})
|
92
|
+
end
|
93
|
+
|
94
|
+
def flatpickr_datetime(**extras)
|
95
|
+
Generic.new(partial_path: "form_field_flatpickr_datetime", extras: extras, nested: {})
|
96
|
+
end
|
97
|
+
|
98
|
+
def flatpickr_time(**extras)
|
99
|
+
Generic.new(partial_path: "form_field_flatpickr_time", extras: extras, nested: {})
|
100
|
+
end
|
101
|
+
|
77
102
|
def has_many(reader, **extras)
|
78
103
|
nested = @fields.nested do
|
79
104
|
yield
|
data/lib/super/layout.rb
CHANGED
data/lib/super/link.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Super
|
2
4
|
# Links have three required attributes that are passed directly into Rails'
|
3
5
|
# `link_to` helper
|
@@ -78,6 +80,11 @@ module Super
|
|
78
80
|
}
|
79
81
|
end
|
80
82
|
|
83
|
+
def self.polymorphic_parts(*parts_tail)
|
84
|
+
parts_head = Super.configuration.path.strip.gsub(%r{\A/+}, "").gsub(%r{/+\z}, "").strip.split("/")
|
85
|
+
parts_head + parts_tail
|
86
|
+
end
|
87
|
+
|
81
88
|
def initialize(text, href, **options)
|
82
89
|
@text = text
|
83
90
|
@href = href
|
@@ -1,10 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Super
|
2
4
|
class Navigation
|
3
5
|
# Traverses the defined Rails Routes and attempts to build a list of links.
|
4
6
|
# This is used for building the nav bar on each admin page.
|
5
7
|
class Automatic
|
6
|
-
def initialize(route_namespace:)
|
7
|
-
route_namespace = route_namespace.
|
8
|
+
def initialize(route_namespace: Super.configuration.path)
|
9
|
+
route_namespace = route_namespace.strip.gsub(%r{\A/+}, "").gsub(%r{/+\z}, "").strip
|
8
10
|
|
9
11
|
if route_namespace.include?("/")
|
10
12
|
raise "Can't be nested namespace"
|
data/lib/super/pagination.rb
CHANGED
data/lib/super/panel.rb
CHANGED
data/lib/super/partial.rb
CHANGED
data/lib/super/plugin.rb
CHANGED
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Super
|
4
|
+
class Query
|
5
|
+
class FormObject
|
6
|
+
def initialize(model:, params:, namespace:, current_path:)
|
7
|
+
@model = model
|
8
|
+
@all_params = params.dup
|
9
|
+
@namespace = namespace
|
10
|
+
@params = params[namespace] || ActionController::Parameters.new
|
11
|
+
@path = current_path
|
12
|
+
@addons = {}
|
13
|
+
end
|
14
|
+
|
15
|
+
attr_reader :namespace
|
16
|
+
attr_reader :path
|
17
|
+
attr_reader :addons
|
18
|
+
|
19
|
+
def add(klass, namespace:, **additional_initialization_arguments)
|
20
|
+
instance = klass.new(
|
21
|
+
model: @model,
|
22
|
+
params: params_dig(namespace),
|
23
|
+
**additional_initialization_arguments
|
24
|
+
)
|
25
|
+
|
26
|
+
addons[namespace] = instance
|
27
|
+
end
|
28
|
+
|
29
|
+
def apply_changes(records)
|
30
|
+
addons.each_value do |addon|
|
31
|
+
records = addon.apply_changes(records)
|
32
|
+
end
|
33
|
+
|
34
|
+
records
|
35
|
+
end
|
36
|
+
|
37
|
+
def to_partial_path
|
38
|
+
"query"
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def params_dig(*keys)
|
44
|
+
@params.dig(*keys) || ActionController::Parameters.new
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/lib/super/schema.rb
CHANGED
data/lib/super/schema/common.rb
CHANGED
data/lib/super/schema/guesser.rb
CHANGED
data/lib/super/sort.rb
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Super
|
4
|
+
module Sort
|
5
|
+
class FormObject
|
6
|
+
DIRECTIONS = ["asc", "desc"]
|
7
|
+
|
8
|
+
def initialize(model:, params:, default:, sortable_columns:)
|
9
|
+
@model = model
|
10
|
+
@params = params.dup
|
11
|
+
@default = default
|
12
|
+
@sortable_columns = sortable_columns.map(&:to_s)
|
13
|
+
|
14
|
+
@params.permit!
|
15
|
+
end
|
16
|
+
|
17
|
+
attr_reader :sortable_columns
|
18
|
+
|
19
|
+
def to_partial_path
|
20
|
+
"sort"
|
21
|
+
end
|
22
|
+
|
23
|
+
def exprs
|
24
|
+
sanitized_expr_params.map { |ordering| Expression.new(**ordering) }
|
25
|
+
end
|
26
|
+
|
27
|
+
def new_expr
|
28
|
+
Expression.new(a: nil, d: :desc)
|
29
|
+
end
|
30
|
+
|
31
|
+
class Expression
|
32
|
+
attr_accessor :a # attribute
|
33
|
+
attr_accessor :d # direction
|
34
|
+
|
35
|
+
def initialize(a:, d:)
|
36
|
+
@a = a
|
37
|
+
@d = d.to_s
|
38
|
+
end
|
39
|
+
|
40
|
+
def with_index(index)
|
41
|
+
@index = index
|
42
|
+
self
|
43
|
+
end
|
44
|
+
|
45
|
+
# This is for `fields_for` to work
|
46
|
+
def id
|
47
|
+
@index
|
48
|
+
end
|
49
|
+
|
50
|
+
def persisted?
|
51
|
+
false
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def persisted?
|
56
|
+
false
|
57
|
+
end
|
58
|
+
|
59
|
+
def apply_changes(query)
|
60
|
+
exprs.each do |expr|
|
61
|
+
query = query.order(expr.a => expr.d)
|
62
|
+
end
|
63
|
+
|
64
|
+
query
|
65
|
+
end
|
66
|
+
|
67
|
+
private
|
68
|
+
|
69
|
+
# Stringifies the values
|
70
|
+
def sanitized_expr_params
|
71
|
+
seen = {}
|
72
|
+
normalized_expr_params
|
73
|
+
.each do |p|
|
74
|
+
p[:a] = p[:a].presence&.to_s&.strip
|
75
|
+
p[:d] = p[:d].presence&.to_s&.strip
|
76
|
+
end
|
77
|
+
.select { |p| p[:a].present? && DIRECTIONS.include?(p[:d]) }
|
78
|
+
.select { |p| @sortable_columns.include?(p[:a]) }
|
79
|
+
.select do |p|
|
80
|
+
next false if seen.key?(p[:a])
|
81
|
+
|
82
|
+
seen[p[:a]] = true
|
83
|
+
true
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# Symbolizes the keys
|
88
|
+
def normalized_expr_params
|
89
|
+
from_params = @params[:exprs]
|
90
|
+
|
91
|
+
return default_as_query if from_params.nil?
|
92
|
+
|
93
|
+
if from_params.is_a?(Array)
|
94
|
+
return from_params.map(&:to_h).map(&:symbolize_keys)
|
95
|
+
end
|
96
|
+
|
97
|
+
from_params.to_h.values.map(&:symbolize_keys)
|
98
|
+
end
|
99
|
+
|
100
|
+
def default_as_query
|
101
|
+
@default.map do |attribute_name, direction|
|
102
|
+
{
|
103
|
+
a: attribute_name,
|
104
|
+
d: direction,
|
105
|
+
}
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Super
|
4
|
+
module Useful
|
5
|
+
module Builder
|
6
|
+
def builder(method_name)
|
7
|
+
alias_method("original_#{method_name}", method_name)
|
8
|
+
|
9
|
+
define_method(method_name) do
|
10
|
+
send("original_#{method_name}")
|
11
|
+
self
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def builder_with_block(method_name)
|
16
|
+
alias_method("original_#{method_name}", method_name)
|
17
|
+
|
18
|
+
define_method(method_name) do |&block|
|
19
|
+
send("original_#{method_name}", &block)
|
20
|
+
self
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Super
|
4
|
+
module Useful
|
5
|
+
class Enum
|
6
|
+
def initialize(*choices)
|
7
|
+
@choices = choices.flatten.map { |choice| [choice, nil] }.to_h
|
8
|
+
end
|
9
|
+
|
10
|
+
def case(chosen)
|
11
|
+
Case.new(@choices, chosen)
|
12
|
+
end
|
13
|
+
|
14
|
+
class Case
|
15
|
+
def initialize(choices, chosen)
|
16
|
+
if !choices.key?(chosen)
|
17
|
+
raise Error::Enum::ImpossibleValue,
|
18
|
+
"`#{chosen}` isn't in: #{choices.keys.map(&:inspect).join(", ")}"
|
19
|
+
end
|
20
|
+
|
21
|
+
@choices = choices
|
22
|
+
@chosen = chosen
|
23
|
+
@whens = {}
|
24
|
+
end
|
25
|
+
|
26
|
+
def when(*keys, &block)
|
27
|
+
if !block_given?
|
28
|
+
raise Error::ArgumentError, "must receive block"
|
29
|
+
end
|
30
|
+
|
31
|
+
keys.each do |key|
|
32
|
+
if !@choices.key?(key)
|
33
|
+
raise Error::Enum::ImpossibleValue, "`#{key.inspect}` is not a possibility"
|
34
|
+
end
|
35
|
+
|
36
|
+
@whens[key] = block
|
37
|
+
end
|
38
|
+
|
39
|
+
self
|
40
|
+
end
|
41
|
+
|
42
|
+
def result
|
43
|
+
if @choices.size != @whens.size
|
44
|
+
missing_keys = @choices.keys - @whens.keys
|
45
|
+
raise Error::Enum::UndefinedCase, "Unset cases: #{missing_keys.join(", ")}"
|
46
|
+
end
|
47
|
+
|
48
|
+
@whens[@chosen].call(@value)
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def matching_possibilities_and_checks?
|
54
|
+
if @whens.size == @choices.size
|
55
|
+
return true
|
56
|
+
end
|
57
|
+
|
58
|
+
false
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|