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
<form action="/view-components/rails-app/form_handler" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="DWXksq9DK03rRdy3bN0N30khYiGnI-w_YqmYHN80YSWGGtfxznP2cutkv8DyNeJUsmH_K6HNqd55v2maP7FNtw" autocomplete="off" />
<div class="FormControl-spacingWrapper">
<auto-complete src="/view-components/rails-app/auto_complete" for="fruit-list" data-view-component="true">
<div class="FormControl">
<label for="fruit" class="FormControl-label ">
Fruit
</label>
<input aria-invalid="true" aria-describedby="validation-c9c41a11-e325-4e45-a8a3-866025e3c9f3 caption-c9c41a11-e325-4e45-a8a3-866025e3c9f3" type="text" id="fruit" name="fruit" autocomplete="off" invalid="true" data-view-component="true" class="FormControl-input FormControl-medium" />
</div>
<anchored-position anchor="fruit" side="outside-bottom" allow-out-of-bounds="" id="fruit-list" popover="" data-view-component="true" class="ActionListWrap ActionListWrap--inset Overlay Overlay--height-auto Overlay--width-auto"></anchored-position>
<div id="fruit-list-feedback" class="sr-only"></div>
</auto-complete>
<div class="FormControl-inlineValidation" id="validation-c9c41a11-e325-4e45-a8a3-866025e3c9f3">
<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>Something went wrong</span>
</div>
<span class="FormControl-caption" id="caption-c9c41a11-e325-4e45-a8a3-866025e3c9f3">Please enter your favorite fruit</span>
<button name="submit" value="Submit" data-disable-with="Submit" type="submit" data-view-component="true" class="FormField-input flex-self-start Button--secondary Button--medium Button"> <span class="Button-content">
<span class="Button-label">Submit</span>
</span>
</button>
</div>
</form>
1
2
3
<%= primer_form_with(url: generic_form_submission_path) do |f| %>
<%= render(AutoCompleteForm.new(f)) %>
<% end %>

app/forms/auto_complete_form.rb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true
require_relative "../../previews/primer/url_helpers"
# :nodoc:
class AutoCompleteForm < ApplicationForm
form do |auto_complete_form|
auto_complete_form.auto_complete(
name: :fruit,
label: "Fruit",
caption: "Please enter your favorite fruit",
src: Primer::UrlHelpers.autocomplete_index_path,
validation_message: "Something went wrong"
)
auto_complete_form.submit(label: "Submit", name: :submit)
end
end