Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<form action="/foo" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="cZ-xvIhCU6yBbDfxIAJlk3AUi8ZsxlI1SnCXg-DGl612UKw81S_PGI5pwNHPSCwtzzvkOWn3REpciNSFDHOdJw" autocomplete="off" />
<div class="FormControl-spacingWrapper">
<div class="FormControl-check-group-wrap">
<fieldset aria-describedby="validation-d56d1225-da53-44aa-bce9-6e60407f0ef6" class="">
<div class="FormControl-spacingWrapper">
<div class="FormControl-checkbox-wrap">
<input description="The capital city" class="FormControl-checkbox" type="checkbox" value="capital" name="city_categories[]" id="city_categories_capital" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="city_categories_capital">
Capital
</label>
</span>
</div>
<div class="FormControl-checkbox-wrap">
<input description="The five most-populous cities" class="FormControl-checkbox" type="checkbox" value="populous" name="city_categories[]" id="city_categories_populous" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="city_categories_populous">
Most-populous
</label>
</span>
</div>
<div class="FormControl-checkbox-wrap">
<input description="A custom list of cities" class="FormControl-checkbox" type="checkbox" value="custom" name="city_categories[]" id="city_categories_custom" />
<span class="FormControl-checkbox-labelWrap">
<label class="FormControl-label" for="city_categories_custom">
Custom
</label>
</span>
</div>
<div class="ml-4">
<div class="FormControl-spacingWrapper">
<primer-text-field class="FormControl width-full FormControl--fullWidth">
<label class="FormControl-label" for="custom_cities">
Custom cities
</label>
<div class="FormControl-input-wrap">
<input description="A space-separated list of cities" aria-describedby="validation-c254ac61-db1d-4c80-b448-671ff878b2b2" data-target="primer-text-field.inputElement " class="FormControl-input FormControl-medium" type="text" name="custom_cities" id="custom_cities" />
</div>
<div class="FormControl-inlineValidation" id="validation-c254ac61-db1d-4c80-b448-671ff878b2b2" hidden="hidden">
<span class="FormControl-inlineValidation--visual" data-target="primer-text-field.validationSuccessIcon" hidden><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill">
<path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path>
</svg></span>
<span class=" FormControl-inlineValidation--visual" data-target="primer-text-field.validationErrorIcon"><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">
<path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>
</svg></span>
<span></span>
</div>
</primer-text-field>
</div>
</div>
</div>
</fieldset>
<div class="mt-2">
<div class="FormControl-inlineValidation" id="validation-d56d1225-da53-44aa-bce9-6e60407f0ef6" hidden="hidden">
<span class="FormControl-inlineValidation--visual" data-target="" hidden><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-check-circle-fill">
<path d="M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z"></path>
</svg></span>
<span class=" FormControl-inlineValidation--visual" data-target=""><svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">
<path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>
</svg></span>
<span></span>
</div>
</div>
<div class="mt-2">
</div>
</div>
</div>
</form>
1
2
3
<%= primer_form_with(url: "/foo") do |f| %>
<%= render(CheckBoxWithNestedForm.new(f)) %>
<% end %>

app/forms/check_box_with_nested_form.rb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
# :nodoc:
class CustomCitiesForm < ApplicationForm
form do |custom_cities_form|
custom_cities_form.text_field(
name: :custom_cities,
label: "Custom cities",
description: "A space-separated list of cities"
)
end
end
# :nodoc:
class CheckBoxWithNestedForm < ApplicationForm
form do |check_form|
check_form.check_box_group(name: :city_categories) do |check_group|
check_group.check_box(
value: "capital",
label: "Capital",
description: "The capital city"
)
check_group.check_box(
value: "populous",
label: "Most-populous",
description: "The five most-populous cities"
)
check_group.check_box(
value: "custom",
label: "Custom",
description: "A custom list of cities"
) do |custom_check_box|
custom_check_box.nested_form do |builder|
CustomCitiesForm.new(builder)
end
end
end
end
end