ariadne_view_components 0.0.59 → 0.0.64
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +68 -0
- data/LICENSE.txt +661 -49
- data/README.md +52 -4
- data/app/assets/javascripts/ariadne_view_components.js +98 -7
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
- data/app/assets/stylesheets/ariadne_view_components.css +1 -7
- data/app/components/ariadne/base_component.rb +79 -27
- data/app/components/ariadne/behaviors/tooltipable.rb +120 -0
- data/app/components/ariadne/conditional_wrapper.rb +21 -0
- data/app/components/ariadne/form/base_component.rb +74 -0
- data/app/components/ariadne/form/base_input_component.rb +60 -0
- data/app/components/ariadne/form/caption/component.html.erb +10 -0
- data/app/components/ariadne/form/caption/component.rb +29 -0
- data/app/components/ariadne/form/form_control/component.html.erb +19 -0
- data/app/components/ariadne/form/form_control/component.rb +27 -0
- data/app/components/ariadne/form/form_reference/component.html.erb +1 -0
- data/app/components/ariadne/form/form_reference/component.rb +18 -0
- data/app/components/ariadne/form/group/component.html.erb +5 -0
- data/app/components/ariadne/form/group/component.rb +27 -0
- data/app/components/ariadne/form/hidden_field/component.html.erb +1 -0
- data/app/components/ariadne/form/hidden_field/component.rb +15 -0
- data/app/components/ariadne/form/separator/component.html.erb +1 -0
- data/app/components/ariadne/form/separator/component.rb +8 -0
- data/app/components/ariadne/form/spacing_wrapper/component.html.erb +3 -0
- data/app/components/ariadne/form/spacing_wrapper/component.rb +8 -0
- data/app/components/ariadne/form/text_field/component.html.erb +25 -0
- data/app/components/ariadne/form/text_field/component.rb +132 -0
- data/app/components/ariadne/form/validation_message/component.html.erb +5 -0
- data/app/components/ariadne/form/validation_message/component.rb +14 -0
- data/app/components/ariadne/layout/narrow/component.html.erb +10 -0
- data/app/components/ariadne/layout/narrow/component.rb +24 -0
- data/app/components/ariadne/layout/nav_bar/component.css +0 -0
- data/app/components/ariadne/layout/nav_bar/component.html.erb +123 -0
- data/app/components/ariadne/layout/nav_bar/component.rb +77 -0
- data/app/components/ariadne/ui/button/component.html.erb +5 -0
- data/app/components/ariadne/ui/button/component.rb +184 -0
- data/app/components/ariadne/ui/clipboard_copy/component.html.erb +8 -0
- data/app/components/ariadne/ui/clipboard_copy/component.rb +102 -0
- data/app/components/ariadne/ui/clipboard_copy/component.ts +54 -0
- data/app/components/ariadne/ui/combobox/component.html.erb +32 -0
- data/app/components/ariadne/ui/combobox/component.rb +83 -0
- data/app/components/ariadne/ui/combobox/component.ts +119 -0
- data/app/components/ariadne/ui/combobox/menu_item/component.html.erb +9 -0
- data/app/components/ariadne/ui/combobox/menu_item/component.rb +53 -0
- data/app/components/ariadne/ui/combobox/option/component.html.erb +11 -0
- data/app/components/ariadne/ui/combobox/option/component.rb +45 -0
- data/app/components/ariadne/ui/heroicon/component.html.erb +3 -0
- data/app/components/ariadne/ui/heroicon/component.rb +141 -0
- data/app/components/ariadne/ui/image/component.rb +69 -0
- data/app/components/ariadne/ui/link/component.html.erb +3 -0
- data/app/components/ariadne/ui/link/component.rb +56 -0
- data/app/components/ariadne/ui/typography/component.html.erb +3 -0
- data/app/components/ariadne/ui/typography/component.rb +41 -0
- data/app/lib/ariadne/attributes_helper.rb +119 -0
- data/app/lib/ariadne/fetch_or_fallback_helper.rb +1 -1
- data/app/lib/ariadne/form.rb +16 -0
- data/app/lib/ariadne/view_helper.rb +2 -5
- data/app/lib/view_components_contrib/html_attrs.rb +64 -0
- data/app/lib/view_components_contrib/style_variants.rb +14 -0
- data/lib/ariadne/forms/acts_as_component.rb +125 -0
- data/lib/ariadne/forms/base.html.erb +8 -0
- data/lib/ariadne/forms/base.rb +132 -0
- data/lib/ariadne/forms/buffer_rewriter.rb +51 -0
- data/lib/ariadne/forms/builder.rb +88 -0
- data/lib/ariadne/forms/dsl/button_input.rb +33 -0
- data/lib/ariadne/forms/dsl/form_object.rb +26 -0
- data/lib/ariadne/forms/dsl/input.rb +322 -0
- data/lib/ariadne/forms/dsl/input_group.rb +34 -0
- data/lib/ariadne/forms/dsl/input_methods.rb +157 -0
- data/lib/ariadne/forms/dsl/submit_button_input.rb +36 -0
- data/lib/ariadne/forms/dsl/text_field_input.rb +73 -0
- data/lib/ariadne/forms/utils.rb +34 -0
- data/lib/ariadne/generate.rb +11 -0
- data/lib/ariadne/view_components/engine.rb +24 -7
- data/lib/ariadne/view_components/version.rb +1 -1
- data/lib/ariadne/view_components.rb +1 -1
- data/lib/ariadne/yard/backend.rb +24 -0
- data/lib/ariadne/yard/component_manifest.rb +148 -0
- data/lib/ariadne/yard/component_ref.rb +49 -0
- data/lib/ariadne/yard/docs_helper.rb +98 -0
- data/lib/ariadne/yard/info_arch_docs_helper.rb +31 -0
- data/lib/ariadne/yard/lookbook_docs_helper.rb +32 -0
- data/lib/ariadne/yard/lookbook_pages_backend.rb +235 -0
- data/lib/ariadne/yard/registry.rb +136 -0
- data/lib/ariadne/yard/renders_many_handler.rb +23 -0
- data/lib/ariadne/yard/renders_one_handler.rb +23 -0
- data/lib/ariadne/yard.rb +19 -0
- data/static/arguments.yml +141 -48
- data/static/audited_at.json +0 -9
- data/static/classes.yml +210 -209
- data/static/constants.json +2 -209
- data/static/statuses.json +0 -9
- metadata +125 -210
- data/app/assets/builds/ariadne_view_components.css +0 -2202
- data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +0 -22
- data/app/assets/javascripts/components/ariadne/ariadne-form.d.ts +0 -22
- data/app/assets/javascripts/components/ariadne/ariadne.d.ts +0 -2
- data/app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +0 -4
- data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +0 -4
- data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +0 -39
- data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +0 -42
- data/app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts +0 -9
- data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +0 -27
- data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +0 -48
- data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts +0 -9
- data/app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts +0 -1
- data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +0 -34
- data/app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts +0 -24
- data/app/assets/stylesheets/dropdown.css +0 -46
- data/app/assets/stylesheets/prosemirror.css +0 -323
- data/app/assets/stylesheets/tooltip-component.css +0 -37
- data/app/components/ariadne/accumulator_controller/accumulator_controller.d.ts +0 -22
- data/app/components/ariadne/accumulator_controller/accumulator_controller.js +0 -39
- data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +0 -48
- data/app/components/ariadne/action_card_component.html.erb +0 -13
- data/app/components/ariadne/action_card_component.rb +0 -88
- data/app/components/ariadne/ariadne-form.d.ts +0 -22
- data/app/components/ariadne/ariadne-form.js +0 -85
- data/app/components/ariadne/ariadne.d.ts +0 -2
- data/app/components/ariadne/ariadne.js +0 -24
- data/app/components/ariadne/ariadne.ts +0 -29
- data/app/components/ariadne/avatar_component.rb +0 -81
- data/app/components/ariadne/avatar_stack_component/avatar_stack_component.html.erb +0 -12
- data/app/components/ariadne/avatar_stack_component.rb +0 -75
- data/app/components/ariadne/base_button.rb +0 -70
- data/app/components/ariadne/blankslate_component/blankslate_component.html.erb +0 -26
- data/app/components/ariadne/blankslate_component.rb +0 -148
- data/app/components/ariadne/body_component.rb +0 -30
- data/app/components/ariadne/bottom_tab_component.html.erb +0 -4
- data/app/components/ariadne/bottom_tab_component.rb +0 -44
- data/app/components/ariadne/bottom_tab_nav_component.html.erb +0 -5
- data/app/components/ariadne/bottom_tab_nav_component.rb +0 -33
- data/app/components/ariadne/breadcrumbs_component.html.erb +0 -13
- data/app/components/ariadne/breadcrumbs_component.rb +0 -31
- data/app/components/ariadne/button_component/button_component.html.erb +0 -4
- data/app/components/ariadne/button_component.rb +0 -165
- data/app/components/ariadne/checkbox_component.html.erb +0 -5
- data/app/components/ariadne/checkbox_component.rb +0 -43
- data/app/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +0 -4
- data/app/components/ariadne/clipboard_copy_component/clipboard-copy-component.js +0 -18
- data/app/components/ariadne/clipboard_copy_component/clipboard-copy-component.ts +0 -19
- data/app/components/ariadne/clipboard_copy_component/clipboard_copy_component.html.erb +0 -9
- data/app/components/ariadne/clipboard_copy_component.rb +0 -90
- data/app/components/ariadne/close_button_component.html.erb +0 -4
- data/app/components/ariadne/close_button_component.rb +0 -33
- data/app/components/ariadne/combobox_component.html.erb +0 -14
- data/app/components/ariadne/combobox_component.rb +0 -76
- data/app/components/ariadne/component.rb +0 -127
- data/app/components/ariadne/container_component/container_component.html.erb +0 -3
- data/app/components/ariadne/container_component.rb +0 -25
- data/app/components/ariadne/content.rb +0 -12
- data/app/components/ariadne/counter_component.rb +0 -100
- data/app/components/ariadne/details_component/details_component.html.erb +0 -4
- data/app/components/ariadne/details_component.rb +0 -81
- data/app/components/ariadne/dropdown/menu_component.d.ts +0 -1
- data/app/components/ariadne/dropdown/menu_component.html.erb +0 -20
- data/app/components/ariadne/dropdown/menu_component.js +0 -1
- data/app/components/ariadne/dropdown/menu_component.rb +0 -101
- data/app/components/ariadne/dropdown/menu_component.ts +0 -1
- data/app/components/ariadne/dropdown_component/dropdown_component.html.erb +0 -8
- data/app/components/ariadne/dropdown_component.rb +0 -172
- data/app/components/ariadne/events_controller/events_controller.d.ts +0 -4
- data/app/components/ariadne/events_controller/events_controller.js +0 -6
- data/app/components/ariadne/events_controller/events_controller.ts +0 -7
- data/app/components/ariadne/flash_component/flash_component.html.erb +0 -31
- data/app/components/ariadne/flash_component.rb +0 -128
- data/app/components/ariadne/flex_component/flex_component.html.erb +0 -5
- data/app/components/ariadne/flex_component.rb +0 -56
- data/app/components/ariadne/footer_component/footer_component.html.erb +0 -7
- data/app/components/ariadne/footer_component.rb +0 -23
- data/app/components/ariadne/grid_component/grid_component.html.erb +0 -26
- data/app/components/ariadne/grid_component.rb +0 -67
- data/app/components/ariadne/header_component/header_component.html.erb +0 -29
- data/app/components/ariadne/header_component.rb +0 -111
- data/app/components/ariadne/heading_component.rb +0 -49
- data/app/components/ariadne/heroicon_component/heroicon_component.html.erb +0 -4
- data/app/components/ariadne/heroicon_component.rb +0 -166
- data/app/components/ariadne/image_component.rb +0 -53
- data/app/components/ariadne/inline_flex_component/inline_flex_component.html.erb +0 -6
- data/app/components/ariadne/inline_flex_component.rb +0 -72
- data/app/components/ariadne/layout_component.html.erb +0 -21
- data/app/components/ariadne/layout_component.rb +0 -69
- data/app/components/ariadne/link_component.rb +0 -65
- data/app/components/ariadne/list_component/list_component.html.erb +0 -3
- data/app/components/ariadne/list_component.rb +0 -70
- data/app/components/ariadne/modal_component.html.erb +0 -11
- data/app/components/ariadne/modal_component.rb +0 -88
- data/app/components/ariadne/narrow_container_component/narrow_container_component.html.erb +0 -3
- data/app/components/ariadne/narrow_container_component.rb +0 -30
- data/app/components/ariadne/options_controller/options_controller.d.ts +0 -39
- data/app/components/ariadne/options_controller/options_controller.js +0 -89
- data/app/components/ariadne/options_controller/options_controller.ts +0 -122
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +0 -42
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +0 -237
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +0 -278
- data/app/components/ariadne/panel_bar_component/panel_bar_component.html.erb +0 -20
- data/app/components/ariadne/panel_bar_component.rb +0 -80
- data/app/components/ariadne/pill_component/pill_component.html.erb +0 -3
- data/app/components/ariadne/pill_component.rb +0 -44
- data/app/components/ariadne/popover_component.html.erb +0 -10
- data/app/components/ariadne/popover_component.rb +0 -81
- data/app/components/ariadne/progress_bar_component.html.erb +0 -5
- data/app/components/ariadne/progress_bar_component.rb +0 -63
- data/app/components/ariadne/relative_time_component.html.erb +0 -3
- data/app/components/ariadne/relative_time_component.rb +0 -61
- data/app/components/ariadne/show_more_button_component.html.erb +0 -11
- data/app/components/ariadne/show_more_button_component.rb +0 -47
- data/app/components/ariadne/slideover_component/slideover-component.d.ts +0 -9
- data/app/components/ariadne/slideover_component/slideover-component.js +0 -11
- data/app/components/ariadne/slideover_component/slideover-component.ts +0 -17
- data/app/components/ariadne/slideover_component/slideover_component.html.erb +0 -9
- data/app/components/ariadne/slideover_component.rb +0 -66
- data/app/components/ariadne/spinner_component.html.erb +0 -16
- data/app/components/ariadne/spinner_component.rb +0 -45
- data/app/components/ariadne/string_match_controller/string_match_controller.d.ts +0 -27
- data/app/components/ariadne/string_match_controller/string_match_controller.js +0 -51
- data/app/components/ariadne/string_match_controller/string_match_controller.ts +0 -65
- data/app/components/ariadne/subheader_component.html.erb +0 -11
- data/app/components/ariadne/subheader_component.rb +0 -65
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +0 -48
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +0 -207
- data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +0 -256
- data/app/components/ariadne/tab_component/tab_component.html.erb +0 -3
- data/app/components/ariadne/tab_component.rb +0 -98
- data/app/components/ariadne/tab_container_component/tab-container-component.d.ts +0 -1
- data/app/components/ariadne/tab_container_component/tab-container-component.js +0 -23
- data/app/components/ariadne/tab_container_component/tab-container-component.ts +0 -24
- data/app/components/ariadne/tab_container_component.erb +0 -10
- data/app/components/ariadne/tab_container_component.rb +0 -68
- data/app/components/ariadne/tab_nav_component/tab-nav-component.d.ts +0 -9
- data/app/components/ariadne/tab_nav_component/tab-nav-component.js +0 -33
- data/app/components/ariadne/tab_nav_component/tab-nav-component.ts +0 -34
- data/app/components/ariadne/tab_nav_component/tab_nav_component.html.erb +0 -7
- data/app/components/ariadne/tab_nav_component.rb +0 -72
- data/app/components/ariadne/table_nav_component/table_nav_component.html.erb +0 -52
- data/app/components/ariadne/table_nav_component.rb +0 -338
- data/app/components/ariadne/text.rb +0 -25
- data/app/components/ariadne/time_ago_component/time-ago-component.d.ts +0 -1
- data/app/components/ariadne/time_ago_component/time-ago-component.js +0 -1
- data/app/components/ariadne/time_ago_component/time-ago-component.ts +0 -1
- data/app/components/ariadne/time_ago_component.rb +0 -56
- data/app/components/ariadne/timeline_component/timeline_component.html.erb +0 -19
- data/app/components/ariadne/timeline_component.rb +0 -34
- data/app/components/ariadne/toggle_component/toggle_component.html.erb +0 -15
- data/app/components/ariadne/toggle_component.rb +0 -95
- data/app/components/ariadne/toggleable_controller/toggleable_controller.d.ts +0 -34
- data/app/components/ariadne/toggleable_controller/toggleable_controller.js +0 -54
- data/app/components/ariadne/toggleable_controller/toggleable_controller.ts +0 -77
- data/app/components/ariadne/tooltip_component/tooltip-component.d.ts +0 -24
- data/app/components/ariadne/tooltip_component/tooltip-component.js +0 -43
- data/app/components/ariadne/tooltip_component/tooltip-component.ts +0 -57
- data/app/components/ariadne/tooltip_component/tooltip_component.html.erb +0 -4
- data/app/components/ariadne/tooltip_component.rb +0 -108
- data/app/lib/ariadne/action_view_extensions/form_helper.rb +0 -30
- data/app/lib/ariadne/audited/dsl.rb +0 -32
- data/app/lib/ariadne/form_builder.rb +0 -80
- data/app/lib/ariadne/status/dsl.rb +0 -41
- data/config/importmap.rb +0 -3
- data/exe/tailwindcss +0 -21
- data/lib/rubocop/cop/ariadne/base_cop.rb +0 -26
- data/tailwind.config.js +0 -70
@@ -0,0 +1,51 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "ripper"
|
4
|
+
|
5
|
+
module Ariadne
|
6
|
+
module Forms
|
7
|
+
# :nodoc:
|
8
|
+
class BufferRewriter < Ripper
|
9
|
+
class << self
|
10
|
+
def rewrite(code)
|
11
|
+
parser = new(code, "(code)", 0)
|
12
|
+
parser.parse
|
13
|
+
|
14
|
+
line_offsets = calc_line_offsets(code)
|
15
|
+
|
16
|
+
code.dup.tap do |result|
|
17
|
+
parser.var_refs.reverse_each do |lineno, stop|
|
18
|
+
line_offset = line_offsets[lineno]
|
19
|
+
stop += line_offset
|
20
|
+
stop -= 1 if stop < code.length
|
21
|
+
start = stop - "@output_buffer".length
|
22
|
+
result[start...stop] = "output_buffer"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def calc_line_offsets(code)
|
30
|
+
idx = -1
|
31
|
+
|
32
|
+
[0].tap do |offsets|
|
33
|
+
while (idx = code.index(/\r?\n/, idx + 1))
|
34
|
+
offsets << Regexp.last_match.end(0)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def on_var_ref(var)
|
41
|
+
return unless var == "@output_buffer"
|
42
|
+
|
43
|
+
var_refs << [lineno, column]
|
44
|
+
end
|
45
|
+
|
46
|
+
def var_refs
|
47
|
+
@var_refs ||= []
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# See: https://github.com/rails/rails/pull/46666
|
4
|
+
ActionView::Helpers::Tags::Base.prepend(
|
5
|
+
Module.new do
|
6
|
+
def initialize(*args, **kwargs, &block)
|
7
|
+
super
|
8
|
+
|
9
|
+
return if defined?(@generate_error_markup)
|
10
|
+
|
11
|
+
@generate_error_markup = @options.delete(:generate_error_markup) { true }
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def error_wrapping(html_tag)
|
17
|
+
return html_tag unless @generate_error_markup
|
18
|
+
|
19
|
+
# :nocov:
|
20
|
+
super
|
21
|
+
# :nocov:
|
22
|
+
end
|
23
|
+
end,
|
24
|
+
)
|
25
|
+
|
26
|
+
module Ariadne
|
27
|
+
module Forms
|
28
|
+
module Tags
|
29
|
+
# :nodoc:
|
30
|
+
class TextField < ::ActionView::Helpers::Tags::TextField
|
31
|
+
def attributes
|
32
|
+
render
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
def tag(_name, options)
|
38
|
+
options
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# :nodoc:
|
44
|
+
class Builder < ActionView::Helpers::FormBuilder
|
45
|
+
alias_method :ariadne_fields_for, :fields_for
|
46
|
+
|
47
|
+
def label(method, text = nil, **options, &block)
|
48
|
+
super(method, text, classify(options).merge(generate_error_markup: false), &block)
|
49
|
+
end
|
50
|
+
|
51
|
+
def check_box(method, options = {}, checked_value = 1, unchecked_value = 0, &block)
|
52
|
+
super(
|
53
|
+
method,
|
54
|
+
classify(options).merge(generate_error_markup: false),
|
55
|
+
checked_value,
|
56
|
+
unchecked_value,
|
57
|
+
&block
|
58
|
+
)
|
59
|
+
end
|
60
|
+
|
61
|
+
def radio_button(*args, **options, &block)
|
62
|
+
super(*args, classify(options).merge(generate_error_markup: false), &block)
|
63
|
+
end
|
64
|
+
|
65
|
+
def select(method, choices = nil, options = {}, html_options = {}, &block)
|
66
|
+
super(method, choices, options.merge(generate_error_markup: false), classify(html_options), &block)
|
67
|
+
end
|
68
|
+
|
69
|
+
def text_field(*args, **options, &block)
|
70
|
+
super(*args, classify(options).merge(generate_error_markup: false), &block)
|
71
|
+
end
|
72
|
+
|
73
|
+
def text_field_attributes(method, options = {})
|
74
|
+
Tags::TextField.new(@object_name, method, @template, options).attributes
|
75
|
+
end
|
76
|
+
|
77
|
+
def text_area(*args, **options, &block)
|
78
|
+
super(*args, classify(options).merge(generate_error_markup: false), &block)
|
79
|
+
end
|
80
|
+
|
81
|
+
private
|
82
|
+
|
83
|
+
def classify(options)
|
84
|
+
Ariadne::Forms::Utils.classify(options)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ariadne
|
4
|
+
module Forms
|
5
|
+
module Dsl
|
6
|
+
# :nodoc:
|
7
|
+
class ButtonInput < Input
|
8
|
+
attr_reader :name, :label, :block
|
9
|
+
|
10
|
+
def initialize(name:, label:, **system_arguments, &block)
|
11
|
+
@name = name
|
12
|
+
@label = label
|
13
|
+
@block = block
|
14
|
+
|
15
|
+
super(**system_arguments)
|
16
|
+
end
|
17
|
+
|
18
|
+
def to_component
|
19
|
+
Ariadne::UI::Button::Component.new(label: @label).with_content(@label)
|
20
|
+
end
|
21
|
+
|
22
|
+
# :nocov:
|
23
|
+
def type
|
24
|
+
:button
|
25
|
+
end
|
26
|
+
|
27
|
+
def supports_validation?
|
28
|
+
false
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ariadne
|
4
|
+
module Forms
|
5
|
+
module Dsl
|
6
|
+
# :nodoc:
|
7
|
+
class FormObject
|
8
|
+
include InputMethods
|
9
|
+
|
10
|
+
attr_reader :builder, :form, :id
|
11
|
+
|
12
|
+
def initialize(builder:, form:, id: Ariadne::Generate.id)
|
13
|
+
@builder = builder
|
14
|
+
@form = form
|
15
|
+
@id = id
|
16
|
+
|
17
|
+
yield(self) if block_given?
|
18
|
+
end
|
19
|
+
|
20
|
+
def group(**options, &block)
|
21
|
+
add_input(InputGroup.new(builder: @builder, form: @form, **options, &block))
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,322 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ariadne
|
4
|
+
module Forms
|
5
|
+
module Dsl
|
6
|
+
# :nodoc:
|
7
|
+
class Input
|
8
|
+
# Use this macro anywhere you want to include the various params all inputs can receive.
|
9
|
+
#
|
10
|
+
# @!macro [new] form_input_attributes
|
11
|
+
# @param name [String] Value for the HTML name attribute.
|
12
|
+
# @param id [String] Value for the HTML id attribute.
|
13
|
+
# @param class [String] CSS classes to include in the input's HTML `class` attribute. Exists for compatibility with Rails form builders.
|
14
|
+
# @param classes [Array] CSS classes to include in the input's HTML `class` attribute. Combined with the `:class` argument. The list may contain strings, hashes, or `nil` values, and is automatically cleaned up by Ariadne's [`class_name` helper](https://github.com/primer/view_components/blob/c9cb95c98fee3e2e27f4a10683f555e22285e7f1/app/lib/primer/class_name_helper.rb) (`nils`, falsy entries, and blank strings are ignored).
|
15
|
+
# @param caption [String] A string describing the field and what sorts of input it expects. Displayed below the input.
|
16
|
+
# @param label [String] Label text displayed above the input.
|
17
|
+
# @param visually_hide_label [Boolean] When set to `true`, hides the label. Although the label will be hidden visually, it will still be visible to screen readers.
|
18
|
+
# @param disabled [Boolean] When set to `true`, the input will not accept keyboard or mouse input.
|
19
|
+
# @param hidden [Boolean] When set to `true`, visually hides the field.
|
20
|
+
# @param invalid [Boolean] If set to `true`, the input will be rendered with a red border. Implied if `validation_message` is truthy. This option is set to `true` automatically if the model object associated with the form reports that the input is invalid via Rails validations. It is provided for cases where the form does not have an associated model. If the input is invalid as determined by Rails validations, setting `invalid` to `false` will have no effect.
|
21
|
+
# @param validation_message [String] A string displayed between the caption and the input indicating the input's contents are invalid. This option is, by default, set to the first Rails validation message for the input (assuming the form is associated with a model object). Use `validation_message` to override the default or to provide a validation message in case there is no associated model object.
|
22
|
+
# @param label_attributes [Hash] Attributes that will be passed to Rails' `builder.label` method. These can be HTML attributes or any of the other label options Rails supports. They will appear as HTML attributes on the `<label>` tag.
|
23
|
+
# @param scope_name_to_model [Boolean] Default `true`. When set to `false`, prevents the model name from prefixing the field name. For example, if the field name is `my_field`, Rails will normally emit an HTML name attribute of `model[my_field]`. Setting `scope_name_to_model` to `false` will cause Rails to emit `my_field` instead.
|
24
|
+
# @param scope_id_to_model [Boolean] Default `true`. When set to `false`, prevents the model name from prefixing the field ID. For example, if the field name is `my_field`, Rails will normally emit an HTML ID attribute of `model_my_field`. Setting `scope_id_to_model` to `false` will cause Rails to emit `my_field` instead.
|
25
|
+
# @param required [Boolean] Default `false`. When set to `true`, causes an asterisk (*) to appear next to the field's label indicating it is a required field. Note that this option explicitly does _not_ add a `required` HTML attribute. Doing so would enable native browser validations, which are inaccessible and inconsistent with the Ariadne design system.
|
26
|
+
# @param aria [Hash] Key/value pairs that represent Aria attributes and their values. Eg. `aria: { current: true }` becomes `aria-current="true"`.
|
27
|
+
# @param data [Hash] Key/value pairs that represent data attributes and their values. Eg. `data: { foo: "bar" }` becomes `data-foo="bar"`.
|
28
|
+
# @macro form_system_arguments
|
29
|
+
|
30
|
+
# @!macro [new] form_size_arguments
|
31
|
+
# @param size [Symbol] The size of the field. <%= one_of(Ariadne::Forms::Dsl::Input::SIZE_OPTIONS) %>
|
32
|
+
|
33
|
+
# @!macro [new] form_full_width_arguments
|
34
|
+
# @param full_width [Boolean] When set to `true`, the field will take up all the horizontal space allowed by its container. Defaults to `true`.
|
35
|
+
|
36
|
+
# @!macro [new] form_system_arguments
|
37
|
+
# @param system_arguments [Hash] A hash of attributes passed to the underlying Rails builder methods. These options may mean something special depending on the type of input, otherwise they are emitted as HTML attributes. See the [Rails documentation](https://guides.rubyonrails.org/form_helpers.html) for more information. In addition, the usual Ariadne utility arguments are accepted in system arguments. For example, passing `mt: 2` will add the `mt-2` class to the input. See the Ariadne system arguments docs for details.
|
38
|
+
|
39
|
+
SPACE_DELIMITED_ARIA_ATTRIBUTES = [:describedby].freeze
|
40
|
+
DEFAULT_SIZE = :medium
|
41
|
+
SIZE_MAPPINGS = {
|
42
|
+
:small => "FormControl-small",
|
43
|
+
DEFAULT_SIZE => "FormControl-medium",
|
44
|
+
:large => "FormControl-large",
|
45
|
+
}.freeze
|
46
|
+
SIZE_OPTIONS = SIZE_MAPPINGS.keys
|
47
|
+
|
48
|
+
include Ariadne::ClassNameHelper
|
49
|
+
|
50
|
+
attr_reader :builder, :form, :input_attributes, :label_attributes, :caption, :validation_message, :ids, :form_control, :base_id
|
51
|
+
|
52
|
+
alias_method :form_control?, :form_control
|
53
|
+
|
54
|
+
def initialize(builder:, form:, **options)
|
55
|
+
@builder = builder
|
56
|
+
@form = form
|
57
|
+
|
58
|
+
@options = options
|
59
|
+
@input_attributes = @options.delete(:html_attrs) || {}
|
60
|
+
@input_attributes.delete(:id) if @input_attributes[:id].blank?
|
61
|
+
@label_attributes = @options[:label_html_attributes] || {}
|
62
|
+
@label_attributes[:for] = id if id.present?
|
63
|
+
|
64
|
+
@label_attributes[:class] = merge_class_names(
|
65
|
+
@label_attributes[:class],
|
66
|
+
@options.delete(:visually_hide_label) ? "sr-only" : nil,
|
67
|
+
)
|
68
|
+
|
69
|
+
@input_attributes.delete(:class) if @input_attributes[:class].blank?
|
70
|
+
@label_attributes.delete(:class) if @label_attributes[:class].blank?
|
71
|
+
|
72
|
+
@caption = @options.delete(:caption)
|
73
|
+
@validation_message = @options.delete(:validation_message)
|
74
|
+
@invalid = @options.delete(:invalid)
|
75
|
+
@full_width = @options.delete(:full_width) { true }
|
76
|
+
|
77
|
+
# If scope_name_to_model is false, the name of the input for eg. `my_field`
|
78
|
+
# will be `my_field` instead of the Rails default of `model[my_field]`.
|
79
|
+
#
|
80
|
+
# We achieve this by passing the `name` option to Rails form builder
|
81
|
+
# methods. These methods will use the passed name if provided instead
|
82
|
+
# of generating a scoped one.
|
83
|
+
#
|
84
|
+
unless @options.delete(:scope_name_to_model) { true }
|
85
|
+
@input_attributes[:name] = name
|
86
|
+
end
|
87
|
+
# rubocop:enable Style/IfUnlessModifier
|
88
|
+
|
89
|
+
# If scope_id_to_model is false, the name of the input for eg. `my_field`
|
90
|
+
# will be `my_field` instead of the Rails default of `model_my_field`.
|
91
|
+
#
|
92
|
+
# We achieve this by passing the `id` option to Rails form builder
|
93
|
+
# methods. These methods will use the passed id if provided instead
|
94
|
+
# of generating a scoped one. The id is the name of the field unless
|
95
|
+
# explicitly provided in system_arguments.
|
96
|
+
#
|
97
|
+
# rubocop:disable Style/IfUnlessModifier
|
98
|
+
unless @options.delete(:scope_id_to_model) { true }
|
99
|
+
@input_attributes[:id] = @input_attributes.delete(:id) { name }
|
100
|
+
end
|
101
|
+
# rubocop:enable Style/IfUnlessModifier
|
102
|
+
|
103
|
+
# Whether or not to wrap the component in a FormControl, which renders a
|
104
|
+
# label above and validation message beneath the input.
|
105
|
+
@form_control = @options.delete(:form_control) { true }
|
106
|
+
|
107
|
+
@options[:invalid] = "true" if invalid?
|
108
|
+
|
109
|
+
@base_id = Ariadne::Generate.id
|
110
|
+
|
111
|
+
@ids = {}.tap do |id_map|
|
112
|
+
id_map[:validation] = "validation-#{@base_id}" if supports_validation?
|
113
|
+
id_map[:caption] = "caption-#{@base_id}" if caption? || caption_template?
|
114
|
+
end
|
115
|
+
|
116
|
+
if required?
|
117
|
+
input_attributes[:required] = true
|
118
|
+
add_input_aria(:required, true)
|
119
|
+
end
|
120
|
+
|
121
|
+
add_input_aria(:invalid, true) if invalid?
|
122
|
+
add_input_aria(:describedby, ids.values) if ids.any?
|
123
|
+
end
|
124
|
+
|
125
|
+
def add_input_classes(*class_names)
|
126
|
+
input_attributes[:class] = merge_class_names(
|
127
|
+
input_attributes[:class], *class_names
|
128
|
+
)
|
129
|
+
end
|
130
|
+
|
131
|
+
def add_input_aria(key, value)
|
132
|
+
@input_attributes[:aria] ||= {}
|
133
|
+
|
134
|
+
@input_attributes[:aria][key] = if space_delimited_aria_attribute?(key)
|
135
|
+
aria_join(@input_attributes[:aria][key], *Array(value))
|
136
|
+
else
|
137
|
+
value
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
def add_input_data(key, value)
|
142
|
+
input_data[key] = value
|
143
|
+
end
|
144
|
+
|
145
|
+
# :nocov:
|
146
|
+
def remove_input_data(key)
|
147
|
+
input_data.delete(key)
|
148
|
+
end
|
149
|
+
# :nocov:
|
150
|
+
|
151
|
+
def merge_input_attributes!(arguments)
|
152
|
+
arguments.each do |k, v|
|
153
|
+
case k
|
154
|
+
when :class, :classes, "class", "classes"
|
155
|
+
add_input_classes(v)
|
156
|
+
when :aria, "aria"
|
157
|
+
v.each do |aria_k, aria_v|
|
158
|
+
add_input_aria(aria_k, aria_v)
|
159
|
+
end
|
160
|
+
when :data, "data"
|
161
|
+
v.each do |data_k, data_v|
|
162
|
+
add_input_data(data_k, data_v)
|
163
|
+
end
|
164
|
+
else
|
165
|
+
@input_attributes[k] = v
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
def validation_id
|
171
|
+
ids[:validation]
|
172
|
+
end
|
173
|
+
|
174
|
+
def caption_id
|
175
|
+
ids[:caption]
|
176
|
+
end
|
177
|
+
|
178
|
+
def caption?
|
179
|
+
caption.present?
|
180
|
+
end
|
181
|
+
|
182
|
+
def caption_template?
|
183
|
+
return false unless form
|
184
|
+
|
185
|
+
form.caption_template?(caption_template_name)
|
186
|
+
end
|
187
|
+
|
188
|
+
def render_caption_template
|
189
|
+
form.render_caption_template(caption_template_name)
|
190
|
+
end
|
191
|
+
|
192
|
+
def valid?
|
193
|
+
supports_validation? && validation_messages.empty? && !@invalid
|
194
|
+
end
|
195
|
+
|
196
|
+
def invalid?
|
197
|
+
supports_validation? && !valid?
|
198
|
+
end
|
199
|
+
|
200
|
+
def hidden?
|
201
|
+
!!input_attributes[:hidden]
|
202
|
+
end
|
203
|
+
|
204
|
+
def required?
|
205
|
+
@options[:required] ||
|
206
|
+
input_attributes[:aria_required] ||
|
207
|
+
input_attributes[:"aria-required"] ||
|
208
|
+
input_attributes.dig(:aria, :required)
|
209
|
+
end
|
210
|
+
|
211
|
+
def disabled?
|
212
|
+
!!@input_attributes[:disabled]
|
213
|
+
end
|
214
|
+
|
215
|
+
def size
|
216
|
+
@size ||= SIZE_MAPPINGS.include?(@size) ? @size : DEFAULT_SIZE
|
217
|
+
end
|
218
|
+
|
219
|
+
def validation_messages
|
220
|
+
@validation_messages ||=
|
221
|
+
if validation_message
|
222
|
+
[validation_message]
|
223
|
+
elsif builder.object.respond_to?(:errors)
|
224
|
+
name ? builder.object.errors.full_messages_for(name) : []
|
225
|
+
else
|
226
|
+
[]
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|
230
|
+
def autofocus!
|
231
|
+
@input_attributes[:autofocus] = true
|
232
|
+
end
|
233
|
+
|
234
|
+
def id
|
235
|
+
@input_attributes[:id]
|
236
|
+
end
|
237
|
+
|
238
|
+
# :nocov:
|
239
|
+
def name
|
240
|
+
raise_for_abstract_method!(__method__)
|
241
|
+
end
|
242
|
+
|
243
|
+
def label
|
244
|
+
raise_for_abstract_method!(__method__)
|
245
|
+
end
|
246
|
+
|
247
|
+
def type
|
248
|
+
raise_for_abstract_method!(__method__)
|
249
|
+
end
|
250
|
+
|
251
|
+
def to_component
|
252
|
+
raise_for_abstract_method!(__method__)
|
253
|
+
end
|
254
|
+
# :nocov:
|
255
|
+
|
256
|
+
def focusable?
|
257
|
+
false
|
258
|
+
end
|
259
|
+
|
260
|
+
def input?
|
261
|
+
true
|
262
|
+
end
|
263
|
+
|
264
|
+
def supports_validation?
|
265
|
+
true
|
266
|
+
end
|
267
|
+
|
268
|
+
def validation_arguments
|
269
|
+
{
|
270
|
+
class: "FormControl-inlineValidation",
|
271
|
+
id: validation_id,
|
272
|
+
hidden: valid? || validation_messages.empty?,
|
273
|
+
}
|
274
|
+
end
|
275
|
+
|
276
|
+
def validation_message_arguments
|
277
|
+
{}
|
278
|
+
end
|
279
|
+
|
280
|
+
def validation_success_icon_target
|
281
|
+
""
|
282
|
+
end
|
283
|
+
|
284
|
+
def validation_error_icon_target
|
285
|
+
""
|
286
|
+
end
|
287
|
+
|
288
|
+
private
|
289
|
+
|
290
|
+
def input_data
|
291
|
+
@input_attributes[:data] ||= {}
|
292
|
+
end
|
293
|
+
|
294
|
+
def caption_template_name
|
295
|
+
return unless name
|
296
|
+
|
297
|
+
@caption_template_name ||= if respond_to?(:value)
|
298
|
+
:"#{name}_#{value}"
|
299
|
+
else
|
300
|
+
name.to_sym
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
304
|
+
def space_delimited_aria_attribute?(attrib)
|
305
|
+
SPACE_DELIMITED_ARIA_ATTRIBUTES.include?(attrib)
|
306
|
+
end
|
307
|
+
|
308
|
+
def aria_join(*values)
|
309
|
+
values = values.flat_map { |v| v.to_s.split }
|
310
|
+
values.reject!(&:empty?)
|
311
|
+
values.join(" ")
|
312
|
+
end
|
313
|
+
|
314
|
+
# :nocov:
|
315
|
+
def raise_for_abstract_method!(method_name)
|
316
|
+
raise NotImplementedError, "subclasses must implement ##{method_name}."
|
317
|
+
end
|
318
|
+
# :nocov:
|
319
|
+
end
|
320
|
+
end
|
321
|
+
end
|
322
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Ariadne
|
4
|
+
module Forms
|
5
|
+
module Dsl
|
6
|
+
# :nodoc:
|
7
|
+
class InputGroup
|
8
|
+
include InputMethods
|
9
|
+
|
10
|
+
attr_reader :builder, :form, :system_arguments
|
11
|
+
|
12
|
+
def initialize(builder:, form:, **system_arguments)
|
13
|
+
@builder = builder
|
14
|
+
@form = form
|
15
|
+
@system_arguments = system_arguments
|
16
|
+
|
17
|
+
yield(self) if block_given?
|
18
|
+
end
|
19
|
+
|
20
|
+
def to_component
|
21
|
+
Ariadne::Form::Group::Component.new(inputs: inputs, builder: builder, form: form, **@system_arguments)
|
22
|
+
end
|
23
|
+
|
24
|
+
def type
|
25
|
+
:group
|
26
|
+
end
|
27
|
+
|
28
|
+
def input?
|
29
|
+
true
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|