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
<%= render(Primer::Alpha::ActionMenu.new(select_variant: :single)) do |menu| %>
<% menu.with_show_button { "Group By" } %>
<% menu.with_item(
label: "Repository",
href: action_menu_form_action_path(format: route_format),
form_arguments: {
method: :post,
inputs: [{
name: "query",
value: "query"
}, {
name: "foo", # use "foo" here because that's what the controller expects
value: "group-by-repository",
}],
}
) %>
<% menu.with_item(
label: "Date",
href: action_menu_form_action_path(format: route_format),
form_arguments: {
method: :post,
inputs: [{
name: "query",
value: "query"
}, {
name: "foo", # use "foo" here because that's what the controller expects
value: "sort-by-date"
}]
}
) %>
<% end %>