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
<action-menu data-select-variant="single" data-view-component="true">
<focus-group direction="vertical" mnemonics retain>
<button id="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-button" popovertarget="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-overlay" aria-controls="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-list" aria-haspopup="true" type="button" data-view-component="true" class="Button--secondary Button--medium Button"> <span class="Button-content">
<span class="Button-label">Group By</span>
</span>
</button>
<anchored-position id="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-overlay" anchor="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-button" align="start" side="outside-bottom" anchor-offset="normal" popover="auto" data-view-component="true">
<div data-view-component="true" class="Overlay Overlay--size-auto">
<div data-view-component="true" class="Overlay-body Overlay-body--paddingNone"> <action-list>
<div data-view-component="true">
<ul aria-labelledby="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-button" id="action-menu-03d94fca-f6cb-4b75-a334-b045f6a68ec5-list" role="menu" data-view-component="true" class="ActionListWrap--inset ActionListWrap">
<li data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
<form action="/view-components/rails-app/action_menu/form_action.html" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="r3HZcd_vY56M8ycCVt6Pn83Y8lSb6tw64fv2hQvoczmtF89DD4XEmsiWVx61l9Jf93uOshT-wq94TdN8Ju6Lgw" autocomplete="off" />
<input name="query" value="query" type="hidden" data-list-item-input="true" data-view-component="true" />
<input name="foo" value="group-by-repository" type="hidden" data-list-item-input="true" data-view-component="true" />
<button tabindex="-1" id="item-2d79c7cd-5426-43f5-823d-d48da4635792" type="submit" role="menuitemradio" aria-checked="false" data-view-component="true" class="ActionListContent">
<span class="ActionListItem-visual ActionListItem-action--leading">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-check ActionListItem-singleSelectCheckmark">
<path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path>
</svg>
</span>
<span data-view-component="true" class="ActionListItem-label">
Repository
</span></button>
</form>
</li>
<li data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
<form action="/view-components/rails-app/action_menu/form_action.html" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="Ng9IfnFfUa1k1EZL5xC8mgInpg1zvyfWBCddyq8rNGc0aV5MoTX2qSCxNlcEWeFaOITa6_yrOUOdkXgzgi3M3Q" autocomplete="off" />
<input name="query" value="query" type="hidden" data-list-item-input="true" data-view-component="true" />
<input name="foo" value="sort-by-date" type="hidden" data-list-item-input="true" data-view-component="true" />
<button tabindex="-1" id="item-fd5585b1-2260-4a34-a07e-f1c34a08ec61" type="submit" role="menuitemradio" aria-checked="false" data-view-component="true" class="ActionListContent">
<span class="ActionListItem-visual ActionListItem-action--leading">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-check ActionListItem-singleSelectCheckmark">
<path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path>
</svg>
</span>
<span data-view-component="true" class="ActionListItem-label">
Date
</span></button>
</form>
</li>
</ul>
</div>
</action-list>
</div>
</div>
</anchored-position> </focus-group>
</action-menu>
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 %>

No assets to display.