Previews

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
<%# With dynamic label %>
<% subject_id = SecureRandom.hex %>
<%= render(Primer::Alpha::SelectPanel.new(
data: { interaction_subject: subject_id },
id: "with_avatar_items",
title: "Select users",
select_variant: :single,
fetch_strategy: :local,
dynamic_label: true,
dynamic_label_prefix: "Item",
open_on_load: open_on_load
)) do |panel| %>
<% panel.with_show_button { "Choose item" } %>
<% panel.with_item(label: "Item 1") %>
<% panel.with_item(label: "Item 2") %>
<% panel.with_item(label: "Item 3") %>
<% panel.with_item(label: "Item 4") %>
<% panel.with_item(label: "Item 5") %>
<% panel.with_item(label: "Item 6") %>
<% end %>
<%= render partial: "primer/alpha/select_panel_preview/interaction_subject_js", locals: { subject_id: subject_id } %>
<%# With dynamic label and aria prefix %>
<% subject_id = SecureRandom.hex %>
<%= render(Primer::Alpha::SelectPanel.new(
data: { interaction_subject: subject_id },
id: "with_avatar_items",
title: "Select users",
select_variant: :single,
fetch_strategy: :local,
dynamic_label: true,
dynamic_label_prefix: "Item",
dynamic_aria_label_prefix: "Your item",
open_on_load: open_on_load
)) do |panel| %>
<% panel.with_show_button { "Choose item" } %>
<% panel.with_item(label: "Item 1") %>
<% panel.with_item(label: "Item 2") %>
<% panel.with_item(label: "Item 3") %>
<% panel.with_item(label: "Item 4") %>
<% panel.with_item(label: "Item 5") %>
<% panel.with_item(label: "Item 6") %>
<% end %>
<%= render partial: "primer/alpha/select_panel_preview/interaction_subject_js", locals: { subject_id: subject_id } %>