@primer/view-components 0.28.0-rc.22557eac → 0.28.0-rc.538292aa
Sign up to get free protection for your applications and to get access to all the features.
- package/app/assets/javascripts/app/components/primer/alpha/select_panel_element.d.ts +3 -1
- package/app/assets/javascripts/primer_view_components.js +1 -1
- package/app/assets/javascripts/primer_view_components.js.map +1 -1
- package/app/components/primer/alpha/select_panel_element.d.ts +3 -1
- package/app/components/primer/alpha/select_panel_element.js +71 -66
- package/package.json +1 -1
- package/static/info_arch.json +1 -27
- package/static/previews.json +0 -26
@@ -20,7 +20,7 @@ export declare class SelectPanelElement extends HTMLElement {
|
|
20
20
|
ariaLiveContainer: HTMLElement;
|
21
21
|
noResults: HTMLElement;
|
22
22
|
fragmentErrorElement: HTMLElement;
|
23
|
-
|
23
|
+
errorBannerElement: HTMLElement;
|
24
24
|
bodySpinner: HTMLElement;
|
25
25
|
filterFn?: FilterFn;
|
26
26
|
get open(): boolean;
|
@@ -52,6 +52,8 @@ export declare class SelectPanelElement extends HTMLElement {
|
|
52
52
|
disableItem(item: SelectPanelItem | null): void;
|
53
53
|
enableItem(item: SelectPanelItem | null): void;
|
54
54
|
isItemHidden(item: SelectPanelItem | null): boolean;
|
55
|
+
hideItem(item: SelectPanelItem | null): void;
|
56
|
+
showItem(item: SelectPanelItem | null): void;
|
55
57
|
isItemChecked(item: SelectPanelItem | null): boolean;
|
56
58
|
checkItem(item: SelectPanelItem | null): void;
|
57
59
|
uncheckItem(item: SelectPanelItem | null): void;
|
@@ -15,7 +15,7 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (
|
|
15
15
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
16
16
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
17
17
|
};
|
18
|
-
var _SelectPanelElement_instances, _SelectPanelElement_dialogIntersectionObserver, _SelectPanelElement_abortController, _SelectPanelElement_originalLabel, _SelectPanelElement_inputName, _SelectPanelElement_selectedItems, _SelectPanelElement_loadingDelayTimeoutId, _SelectPanelElement_loadingAnnouncementTimeoutId,
|
18
|
+
var _SelectPanelElement_instances, _SelectPanelElement_dialogIntersectionObserver, _SelectPanelElement_abortController, _SelectPanelElement_originalLabel, _SelectPanelElement_inputName, _SelectPanelElement_selectedItems, _SelectPanelElement_loadingDelayTimeoutId, _SelectPanelElement_loadingAnnouncementTimeoutId, _SelectPanelElement_softDisableItems, _SelectPanelElement_updateTabIndices, _SelectPanelElement_potentiallyDisallowActivation, _SelectPanelElement_isAnchorActivationViaSpace, _SelectPanelElement_isActivation, _SelectPanelElement_checkSelectedItems, _SelectPanelElement_addSelectedItem, _SelectPanelElement_removeSelectedItem, _SelectPanelElement_setTextFieldLoadingSpinnerTimer, _SelectPanelElement_handleIncludeFragmentEvent, _SelectPanelElement_toggleIncludeFragmentElements, _SelectPanelElement_handleRemoteInputEvent, _SelectPanelElement_defaultFilterFn, _SelectPanelElement_handleSearchFieldEvent, _SelectPanelElement_updateItemVisibility, _SelectPanelElement_inErrorState, _SelectPanelElement_setErrorState, _SelectPanelElement_clearErrorState, _SelectPanelElement_maybeAnnounce, _SelectPanelElement_fetchStrategy_get, _SelectPanelElement_filterInputTextFieldElement_get, _SelectPanelElement_performFilteringLocally, _SelectPanelElement_handleInvokerActivated, _SelectPanelElement_handleDialogItemActivated, _SelectPanelElement_handleItemActivated, _SelectPanelElement_setDynamicLabel, _SelectPanelElement_updateInput, _SelectPanelElement_firstItem_get, _SelectPanelElement_getItemContent;
|
19
19
|
import { getAnchoredPosition } from '@primer/behaviors';
|
20
20
|
import { controller, target } from '@github/catalyst';
|
21
21
|
import { announceFromElement, announce } from '../aria_live';
|
@@ -170,35 +170,64 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
170
170
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateInput).call(this);
|
171
171
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_softDisableItems).call(this);
|
172
172
|
updateWhenVisible(this);
|
173
|
-
|
173
|
+
if (this.remoteInput) {
|
174
174
|
this.remoteInput.addEventListener('loadstart', this, { signal });
|
175
175
|
this.remoteInput.addEventListener('loadend', this, { signal });
|
176
|
-
}
|
177
|
-
|
176
|
+
}
|
177
|
+
else {
|
178
|
+
const mutationObserver = new MutationObserver(() => {
|
179
|
+
if (this.remoteInput) {
|
180
|
+
this.remoteInput.addEventListener('loadstart', this, { signal });
|
181
|
+
this.remoteInput.addEventListener('loadend', this, { signal });
|
182
|
+
mutationObserver.disconnect();
|
183
|
+
}
|
184
|
+
});
|
185
|
+
mutationObserver.observe(this, { childList: true, subtree: true });
|
186
|
+
}
|
187
|
+
if (this.includeFragment) {
|
178
188
|
this.includeFragment.addEventListener('include-fragment-replaced', this, { signal });
|
179
189
|
this.includeFragment.addEventListener('error', this, { signal });
|
180
190
|
this.includeFragment.addEventListener('loadend', this, { signal });
|
181
|
-
}
|
191
|
+
}
|
192
|
+
else {
|
193
|
+
const mutationObserver = new MutationObserver(() => {
|
194
|
+
if (this.includeFragment) {
|
195
|
+
this.includeFragment.addEventListener('include-fragment-replaced', this, { signal });
|
196
|
+
this.includeFragment.addEventListener('error', this, { signal });
|
197
|
+
this.includeFragment.addEventListener('loadend', this, { signal });
|
198
|
+
mutationObserver.disconnect();
|
199
|
+
}
|
200
|
+
});
|
201
|
+
mutationObserver.observe(this, { childList: true, subtree: true });
|
202
|
+
}
|
182
203
|
__classPrivateFieldSet(this, _SelectPanelElement_dialogIntersectionObserver, new IntersectionObserver(entries => {
|
183
204
|
for (const entry of entries) {
|
184
205
|
const elem = entry.target;
|
185
206
|
if (entry.isIntersecting && elem === this.dialog) {
|
186
207
|
this.updateAnchorPosition();
|
208
|
+
if (__classPrivateFieldGet(this, _SelectPanelElement_instances, "a", _SelectPanelElement_fetchStrategy_get) === FetchStrategy.LOCAL) {
|
209
|
+
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateItemVisibility).call(this);
|
210
|
+
}
|
187
211
|
}
|
188
212
|
}
|
189
213
|
}), "f");
|
190
|
-
|
214
|
+
if (this.dialog) {
|
191
215
|
if (this.getAttribute('data-open-on-load') === 'true') {
|
192
216
|
this.show();
|
193
217
|
}
|
194
218
|
__classPrivateFieldGet(this, _SelectPanelElement_dialogIntersectionObserver, "f").observe(this.dialog);
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
219
|
+
}
|
220
|
+
else {
|
221
|
+
const mutationObserver = new MutationObserver(() => {
|
222
|
+
if (this.dialog) {
|
223
|
+
if (this.getAttribute('data-open-on-load') === 'true') {
|
224
|
+
this.show();
|
225
|
+
}
|
226
|
+
__classPrivateFieldGet(this, _SelectPanelElement_dialogIntersectionObserver, "f").observe(this.dialog);
|
227
|
+
mutationObserver.disconnect();
|
228
|
+
}
|
201
229
|
});
|
230
|
+
mutationObserver.observe(this, { childList: true, subtree: true });
|
202
231
|
}
|
203
232
|
}
|
204
233
|
disconnectedCallback() {
|
@@ -233,14 +262,7 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
233
262
|
return;
|
234
263
|
}
|
235
264
|
if (targetIsCloseButton && eventIsActivation) {
|
236
|
-
// hide
|
237
|
-
return;
|
238
|
-
}
|
239
|
-
if (event.target === this.dialog && event.type === 'close') {
|
240
|
-
this.dispatchEvent(new CustomEvent('panelClosed', {
|
241
|
-
detail: { panel: this },
|
242
|
-
bubbles: true,
|
243
|
-
}));
|
265
|
+
// #hide will automatically be called by dialog event triggered from `data-close-dialog-id`
|
244
266
|
return;
|
245
267
|
}
|
246
268
|
const item = event.target.closest(visibleMenuItemSelectors)?.parentElement;
|
@@ -293,6 +315,10 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
293
315
|
}
|
294
316
|
hide() {
|
295
317
|
this.dialog.close();
|
318
|
+
this.dispatchEvent(new CustomEvent('panelClosed', {
|
319
|
+
detail: { panel: this },
|
320
|
+
bubbles: true,
|
321
|
+
}));
|
296
322
|
}
|
297
323
|
get visibleItems() {
|
298
324
|
return Array.from(this.querySelectorAll(visibleMenuItemSelectors)).map(element => element.parentElement);
|
@@ -341,6 +367,16 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
341
367
|
return false;
|
342
368
|
}
|
343
369
|
}
|
370
|
+
hideItem(item) {
|
371
|
+
if (item) {
|
372
|
+
item.setAttribute('hidden', 'hidden');
|
373
|
+
}
|
374
|
+
}
|
375
|
+
showItem(item) {
|
376
|
+
if (item) {
|
377
|
+
item.removeAttribute('hidden');
|
378
|
+
}
|
379
|
+
}
|
344
380
|
isItemChecked(item) {
|
345
381
|
if (item) {
|
346
382
|
return __classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_getItemContent).call(this, item).getAttribute(this.ariaSelectionType) === 'true';
|
@@ -372,18 +408,6 @@ _SelectPanelElement_selectedItems = new WeakMap();
|
|
372
408
|
_SelectPanelElement_loadingDelayTimeoutId = new WeakMap();
|
373
409
|
_SelectPanelElement_loadingAnnouncementTimeoutId = new WeakMap();
|
374
410
|
_SelectPanelElement_instances = new WeakSet();
|
375
|
-
_SelectPanelElement_waitForCondition = function _SelectPanelElement_waitForCondition(condition, body) {
|
376
|
-
if (condition()) {
|
377
|
-
body();
|
378
|
-
}
|
379
|
-
else {
|
380
|
-
const mutationObserver = new MutationObserver(() => {
|
381
|
-
body();
|
382
|
-
mutationObserver.disconnect();
|
383
|
-
});
|
384
|
-
mutationObserver.observe(this, { childList: true, subtree: true });
|
385
|
-
}
|
386
|
-
};
|
387
411
|
_SelectPanelElement_softDisableItems = function _SelectPanelElement_softDisableItems() {
|
388
412
|
const { signal } = __classPrivateFieldGet(this, _SelectPanelElement_abortController, "f");
|
389
413
|
for (const item of this.querySelectorAll(validSelectors.join(','))) {
|
@@ -459,28 +483,23 @@ _SelectPanelElement_isActivation = function _SelectPanelElement_isActivation(eve
|
|
459
483
|
};
|
460
484
|
_SelectPanelElement_checkSelectedItems = function _SelectPanelElement_checkSelectedItems() {
|
461
485
|
for (const item of this.items) {
|
462
|
-
const
|
463
|
-
if (!itemContent)
|
464
|
-
continue;
|
465
|
-
const value = itemContent.getAttribute('data-value');
|
486
|
+
const value = item.getAttribute('data-value');
|
466
487
|
if (value) {
|
467
488
|
if (__classPrivateFieldGet(this, _SelectPanelElement_selectedItems, "f").has(value)) {
|
468
|
-
|
489
|
+
item.setAttribute(this.ariaSelectionType, 'true');
|
469
490
|
}
|
470
491
|
}
|
471
492
|
}
|
472
493
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateInput).call(this);
|
473
494
|
};
|
474
495
|
_SelectPanelElement_addSelectedItem = function _SelectPanelElement_addSelectedItem(item) {
|
475
|
-
const
|
476
|
-
|
477
|
-
return;
|
478
|
-
const value = itemContent.getAttribute('data-value');
|
496
|
+
const button = item.querySelector('button');
|
497
|
+
const value = item.getAttribute('data-value');
|
479
498
|
if (value) {
|
480
499
|
__classPrivateFieldGet(this, _SelectPanelElement_selectedItems, "f").set(value, {
|
481
500
|
value,
|
482
|
-
label:
|
483
|
-
inputName:
|
501
|
+
label: button.querySelector('.ActionListItem-label')?.textContent?.trim(),
|
502
|
+
inputName: button.getAttribute('data-input-name'),
|
484
503
|
element: item,
|
485
504
|
});
|
486
505
|
}
|
@@ -614,11 +633,11 @@ _SelectPanelElement_updateItemVisibility = function _SelectPanelElement_updateIt
|
|
614
633
|
const filter = this.filterFn || __classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_defaultFilterFn);
|
615
634
|
for (const item of this.items) {
|
616
635
|
if (filter(item, query)) {
|
617
|
-
|
636
|
+
this.showItem(item);
|
618
637
|
atLeastOneResult = true;
|
619
638
|
}
|
620
639
|
else {
|
621
|
-
|
640
|
+
this.hideItem(item);
|
622
641
|
}
|
623
642
|
}
|
624
643
|
}
|
@@ -628,10 +647,7 @@ _SelectPanelElement_updateItemVisibility = function _SelectPanelElement_updateIt
|
|
628
647
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateTabIndices).call(this);
|
629
648
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_maybeAnnounce).call(this);
|
630
649
|
for (const item of this.items) {
|
631
|
-
const
|
632
|
-
if (!itemContent)
|
633
|
-
continue;
|
634
|
-
const value = itemContent.getAttribute('data-value');
|
650
|
+
const value = item.getAttribute('data-value');
|
635
651
|
if (value && !__classPrivateFieldGet(this, _SelectPanelElement_selectedItems, "f").has(value) && this.isItemChecked(item)) {
|
636
652
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_addSelectedItem).call(this, item);
|
637
653
|
}
|
@@ -656,17 +672,17 @@ _SelectPanelElement_inErrorState = function _SelectPanelElement_inErrorState() {
|
|
656
672
|
if (this.fragmentErrorElement && !this.fragmentErrorElement.hasAttribute('hidden')) {
|
657
673
|
return true;
|
658
674
|
}
|
659
|
-
return !this.
|
675
|
+
return !this.errorBannerElement.hasAttribute('hidden');
|
660
676
|
};
|
661
677
|
_SelectPanelElement_setErrorState = function _SelectPanelElement_setErrorState(type) {
|
662
678
|
let errorElement = this.fragmentErrorElement;
|
663
679
|
if (type === ErrorStateType.BODY) {
|
664
680
|
this.fragmentErrorElement?.removeAttribute('hidden');
|
665
|
-
this.
|
681
|
+
this.errorBannerElement.setAttribute('hidden', '');
|
666
682
|
}
|
667
683
|
else {
|
668
|
-
errorElement = this.
|
669
|
-
this.
|
684
|
+
errorElement = this.errorBannerElement;
|
685
|
+
this.errorBannerElement?.removeAttribute('hidden');
|
670
686
|
this.fragmentErrorElement?.setAttribute('hidden', '');
|
671
687
|
}
|
672
688
|
// check if the errorElement is visible in the dom
|
@@ -677,7 +693,7 @@ _SelectPanelElement_setErrorState = function _SelectPanelElement_setErrorState(t
|
|
677
693
|
};
|
678
694
|
_SelectPanelElement_clearErrorState = function _SelectPanelElement_clearErrorState() {
|
679
695
|
this.fragmentErrorElement?.setAttribute('hidden', '');
|
680
|
-
this.
|
696
|
+
this.errorBannerElement.setAttribute('hidden', '');
|
681
697
|
};
|
682
698
|
_SelectPanelElement_maybeAnnounce = function _SelectPanelElement_maybeAnnounce() {
|
683
699
|
if (this.open && this.list) {
|
@@ -798,7 +814,6 @@ _SelectPanelElement_handleItemActivated = function _SelectPanelElement_handleIte
|
|
798
814
|
}
|
799
815
|
}
|
800
816
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateInput).call(this);
|
801
|
-
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateTabIndices).call(this);
|
802
817
|
this.dispatchEvent(new CustomEvent('itemActivated', {
|
803
818
|
bubbles: true,
|
804
819
|
detail: { item, checked },
|
@@ -869,16 +884,6 @@ _SelectPanelElement_updateInput = function _SelectPanelElement_updateInput() {
|
|
869
884
|
_SelectPanelElement_firstItem_get = function _SelectPanelElement_firstItem_get() {
|
870
885
|
return (this.querySelector(visibleMenuItemSelectors)?.parentElement || null);
|
871
886
|
};
|
872
|
-
_SelectPanelElement_hideItem = function _SelectPanelElement_hideItem(item) {
|
873
|
-
if (item) {
|
874
|
-
item.setAttribute('hidden', 'hidden');
|
875
|
-
}
|
876
|
-
};
|
877
|
-
_SelectPanelElement_showItem = function _SelectPanelElement_showItem(item) {
|
878
|
-
if (item) {
|
879
|
-
item.removeAttribute('hidden');
|
880
|
-
}
|
881
|
-
};
|
882
887
|
_SelectPanelElement_getItemContent = function _SelectPanelElement_getItemContent(item) {
|
883
888
|
return item.querySelector('.ActionListContent');
|
884
889
|
};
|
@@ -908,7 +913,7 @@ __decorate([
|
|
908
913
|
], SelectPanelElement.prototype, "fragmentErrorElement", void 0);
|
909
914
|
__decorate([
|
910
915
|
target
|
911
|
-
], SelectPanelElement.prototype, "
|
916
|
+
], SelectPanelElement.prototype, "errorBannerElement", void 0);
|
912
917
|
__decorate([
|
913
918
|
target
|
914
919
|
], SelectPanelElement.prototype, "bodySpinner", void 0);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@primer/view-components",
|
3
|
-
"version": "0.28.0-rc.
|
3
|
+
"version": "0.28.0-rc.538292aa",
|
4
4
|
"description": "ViewComponents for the Primer Design System",
|
5
5
|
"main": "app/assets/javascripts/primer_view_components.js",
|
6
6
|
"module": "app/components/primer/primer.js",
|
package/static/info_arch.json
CHANGED
@@ -7511,7 +7511,7 @@
|
|
7511
7511
|
},
|
7512
7512
|
{
|
7513
7513
|
"fully_qualified_name": "Primer::Alpha::SelectPanel",
|
7514
|
-
"description": "Select panels allow for selecting from a large number of options and can be thought of as a more capable\nversion of the traditional HTML `<select>` element.\n\nSelect panels:\n\n1. feature an input field at the top that allows an end user to filter the list of results.\n1. can render their items statically or dynamically by fetching results from the server.\n1. allow selecting a single item or multiple items.\n1. permit leading visuals like Octicons, avatars, and custom SVGs.\n1. can be used as form inputs in Rails forms.\n\n## Static list items\n\nThe Rails `SelectPanel` component allows items to be provided statically or loaded dynamically from the\nserver. Providing items statically is done using a fetch strategy of `:local` in combination with the\n`item` slot:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel.new(fetch_strategy: :local))) do |panel| %>\n <% panel.with_show_button { \"Select item\" } %>\n <% panel.with_item(label: \"Item 1\") %>\n <% panel.with_item(label: \"Item 2\") %>\n<% end %>\n```\n\n## Dynamic list items\n\nList items can also be fetched dynamically from the server and will require creating a Rails controller action\nto respond with the list of items in addition to rendering the `SelectPanel` instance. Render the instance as\nnormal, providing your desired [fetch strategy](#fetch-strategies):\n\n```erb\n<%= render(\n Primer::Alpha::SelectPanel.new(\n fetch_strategy: :remote,\n src: search_items_path # perhaps a Rails URL helper\n )\n) %>\n```\n\nDefine a controller action to serve the list of items. The `SelectPanel` component passes any filter text in\nthe `q=` URL parameter.\n\n```ruby\nclass SearchItemsController < ApplicationController\n def show\n # NOTE: params[:q] may be nil since there is no filter string available\n # when the panel is first opened\n @results = SomeModel.search(params[:q] || \"\")\n end\nend\n```\n\nResponses must be HTML fragments, eg. have a content type of `text/html+fragment`. This content type isn't\navailable by default in Rails, so you may have to register it eg. in an initializer:\n\n```ruby\nMime::Type.register(\"text/fragment+html\", :html_fragment)\n```\n\nRender a `Primer::Alpha::SelectPanel::ItemList` in the action's template, search_items/show.html_fragment.erb:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel::ItemList.new) do |list| %>\n <% @results.each do |result| %>\n <% list.with_item(label: result.title) do |item| %>\n <% item.with_description(result.description) %>\n <% end %>\n <% end %>\n<% end %>\n```\n\n### Selection consistency\n\nThe `SelectPanel` component automatically \"remembers\" which items have been selected across item fetch requests,\nmeaning the controller that renders dynamic list items does not (and should not) remember these selections or\npersist them until the user has confirmed them, either by submitting the form or otherwise indicating completion.\nThe `SelectPanel` component does not include unconfirmed selection data in requests.\n\n## Fetch strategies\n\nThe list of items can be fetched from a remote URL, or provided as a static list, configured using the\n`fetch_strategy` attribute. Fetch strategies are summarized below.\n\n1. `:remote`: a query is made to the URL in the `src` attribute every time the input field changes.\n\n2. `:eventually_local`: a query is made to the URL in the `src` attribute when the panel is first opened. The\n results are \"remembered\" and filtered in-memory for all subsequent filter operations, i.e. when the input\n field changes.\n\n3. `:local`: the list of items is provided statically ahead of time and filtered in-memory. No requests are made\n to the server.\n\n## Customizing filter behavior\n\nIf the fetch strategy is `:remote`, then filtering is handled server-side. The server should render a\n`Primer::Alpha::SelectPanel::ItemList` (an alias of {{#link_to_component}}Primer::Alpha::ActionList{{/link_to_component}})\nin the response containing the filtered list of items. The component achieves remote fetching via the\n[remote-input-element](https://github.com/github/remote-input-element), which sends a request to the\nserver with the filter string in the `q=` parameter. Responses must be HTML fragments, eg. have a content\ntype of `text/html+fragment`.\n\n### Local filtering\n\nIf the fetch strategy is `:local` or `:eventually_local`, filtering is performed client-side. Filter behavior can\nbe customized in JavaScript by setting the `filterFn` attribute on the instance of `SelectPanelElement`, eg:\n\n```javascript\ndocument.querySelector(\"select-panel\").filterFn = (item: HTMLElement, query: string): boolean => {\n // return true if the item should be displayed, false otherwise\n}\n```\n\nThe element's default filter function uses the value of the `data-filter-string` attribute, falling back to the\nelement's `innerText` property. It performs a case-insensitive substring match against the filter string.\n\n### `SelectPanel`s as form inputs\n\n`SelectPanel`s can be used as form inputs. They behave very similarly to how HTML `<select>` boxes behave, and\nplay nicely with Rails' built-in form mechanisms. Pass arguments via the `form_arguments:` argument, including\nthe Rails form builder object and the name of the field. Each list item must also have a value specified in\n`content_arguments: { data: { value: } }`.\n\n```erb\n<% form_with(model: Address.new) do |f| %>\n <%= render(Primer::Alpha::SelectPanel.new(form_arguments: { builder: f, name: \"country\" })) do |menu| %>\n <% countries.each do |country|\n <% menu.with_item(label: country.name, content_arguments: { data: { value: country.code } }) %>\n <% end %>\n <% end %>\n<% end %>\n```\n\nThe value of the `data: { value: ... }` argument is sent to the server on submit, keyed using the name provided above\n(eg. `\"country\"`). If no value is provided for an item, the value of that item is the item's label. Here's the\ncorresponding `AddressesController` that might be written to handle the form above:\n\n```ruby\nclass AddressesController < ApplicationController\n def create\n puts \"You chose #{address_params[:country]} as your country\"\n end\n\n private\n\n def address_params\n params.require(:address).permit(:country)\n end\nend\n```\n\nIf items are provided dynamically, things become a bit more complicated. The `form_for` or `form_with` method call\nhappens in the view that renders the `SelectPanel`, which means the form builder object but isn't available in the\nview that renders the list items. In such a case, it can be useful to create an instance of the form builder maually:\n\n```erb\n<% builder = ActionView::Helpers::FormBuilder.new(\n \"address\", # the name of the model, used to wrap input names, eg 'address[country_code]'\n nil, # object (eg. the Address instance, which we can omit)\n self, # template\n {} # options\n) %>\n<%= render(Primer::Alpha::SelectPanel::ItemList.new(\n form_arguments: { builder: builder, name: \"country\" }\n)) do |list| %>\n <% countries.each do |country| %>\n <% menu.with_item(label: country.name, data: { value: country.code }) %>\n <% end %>\n<% end %>\n```\n\n### JavaScript API\n\n`SelectPanel`s render a `<select-panel>` custom element that exposes behavior to the client.\n\n#### Utility methods\n\n* `show()`: Manually open the panel. Under normal circumstances, a show button is used to show the panel, but this method exists to support unusual use-cases.\n* `hide()`: Manually hides (closes) the panel.\n\n#### Query methods\n\n* `getItemById(itemId: string): Element`: Returns the item's HTML `<li>` element. The return value can be passed as the `item` argument to the other methods listed below.\n* `isItemChecked(item: Element): boolean`: Returns `true` if the item is checked, `false` otherwise.\n* `isItemHidden(item: Element): boolean`: Returns `true` if the item is hidden, `false` otherwise.\n* `isItemDisabled(item: Element): boolean`: Returns `true` if the item is disabled, `false` otherwise.\n\nNOTE: Item IDs are special values provided by the user that are attached to `SelectPanel` list items as the `data-item-id`\nHTML attribute. Item IDs can be provided by passing an `item_id:` attribute when adding items to the panel, eg:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel.new) do |panel| %>\n <% panel.with_item(item_id: \"my-id\") %>\n<% end %>\n```\n\nThe same is true when rendering `ItemList`s:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel::ItemList.new) do |list| %>\n <% list.with_item(item_id: \"my-id\") %>\n<% end %>\n```\n\n#### State methods\n\n* `enableItem(item: Element)`: Enables the item, i.e. makes it clickable by the mouse and keyboard.\n* `disableItem(item: Element)`: Disables the item, i.e. makes it unclickable by the mouse and keyboard.\n* `checkItem(item: Element)`: Checks the item. Only has an effect in single- and multi-select modes.\n* `uncheckItem(item: Element)`: Unchecks the item. Only has an effect in multi-select mode, since items cannot be unchecked in single-select mode.\n\n#### Events\n\n|Name |Type |Bubbles |Cancelable |\n|:--------------------|:------------------------------------------|:-------|:----------|\n|`itemActivated` |`CustomEvent<ItemActivatedEvent>` |Yes |No |\n|`beforeItemActivated`|`CustomEvent<ItemActivatedEvent>` |Yes |Yes |\n|`dialog:open` |`CustomEvent<{dialog: HTMLDialogElement}>` |No |No |\n|`panelClosed` |`CustomEvent<{panel: SelectPanelElement}>` |Yes |No |\n\n_Item activation_\n\nThe `<select-panel>` element fires an `itemActivated` event whenever an item is activated (eg. clicked) via the mouse or keyboard.\n\n```typescript\ndocument.querySelector(\"select-panel\").addEventListener(\n \"itemActivated\",\n (event: CustomEvent<ItemActivatedEvent>) => {\n event.detail.item // Element: the <li> item that was activated\n event.detail.checked // boolean: whether or not the result of the activation checked the item\n }\n)\n```\n\nThe `beforeItemActivated` event fires before an item is activated. Canceling this event will prevent the item\nfrom being activated.\n\n```typescript\ndocument.querySelector(\"select-panel\").addEventListener(\n \"beforeItemActivated\",\n (event: CustomEvent<ItemActivatedEvent>) => {\n event.detail.item // Element: the <li> item that was activated\n event.detail.checked // boolean: whether or not the result of the activation checked the item\n event.preventDefault() // Cancel the event to prevent activation (eg. checking/unchecking)\n }\n)\n```",
|
7514
|
+
"description": "Select panels allow for selecting from a large number of options and can be thought of as a more capable\nversion of the traditional HTML `<select>` element.\n\nSelect panels:\n\n1. feature an input field at the top that allows an end user to filter the list of results.\n1. can render their items statically or dynamically by fetching results from the server.\n1. allow selecting a single item or multiple items.\n1. permit leading visuals like Octicons, avatars, and custom SVGs.\n1. can be used as form inputs in Rails forms.\n\n## Static list items\n\nThe Rails `SelectPanel` component allows items to be provided statically or loaded dynamically from the\nserver. Providing items statically is done using a fetch strategy of `:local` in combination with the\n`item` slot:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel.new(fetch_strategy: :local))) do |panel| %>\n <% panel.with_show_button { \"Select item\" } %>\n <% panel.with_item(label: \"Item 1\") %>\n <% panel.with_item(label: \"Item 2\") %>\n<% end %>\n```\n\n## Dynamic list items\n\nList items can also be fetched dynamically from the server and will require creating a Rails controller action\nto respond with the list of items in addition to rendering the `SelectPanel` instance. Render the instance as\nnormal, providing your desired [fetch strategy](#fetch-strategies):\n\n```erb\n<%= render(\n Primer::Alpha::SelectPanel.new(\n fetch_strategy: :remote,\n src: search_items_path # a Rails URL helper\n )\n) %>\n```\n\nDefine a controller action to serve the list of items. The `SelectPanel` component passes any filter text in\nthe `q=` URL parameter.\n\n```ruby\nclass SearchItemsController < ApplicationController\n def show\n # NOTE: params[:q] may be nil since there is no filter string available\n # when the panel is first opened\n @results = SomeModel.search(params[:q] || \"\")\n end\nend\n```\n\nResponses must be HTML fragments, eg. have a content type of `text/html+fragment`. This content type isn't\navailable by default in Rails, so you may have to register it eg. in an initializer:\n\n```ruby\nMime::Type.register(\"text/fragment+html\", :html_fragment)\n```\n\nRender a `Primer::Alpha::SelectPanel::ItemList` in the action's template, search_items/show.html_fragment.erb:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel::ItemList.new) do |list| %>\n <% @results.each do |result| %>\n <% list.with_item(label: result.title) do |item| %>\n <% item.with_description(result.description) %>\n <% end %>\n <% end %>\n<% end %>\n```\n\n### Selection consistency\n\nThe `SelectPanel` component automatically \"remembers\" which items have been selected across item fetch requests,\nmeaning the controller that renders dynamic list items does not (and should not) remember these selections or\npersist them until the user has confirmed them, either by submitting the form or otherwise indicating completion.\nThe `SelectPanel` component does not include unconfirmed selection data in requests.\n\n## Fetch strategies\n\nThe list of items can be fetched from a remote URL, or provided as a static list, configured using the\n`fetch_strategy` attribute. Fetch strategies are summarized below.\n\n1. `:remote`: a query is made to the URL in the `src` attribute every time the input field changes.\n\n2. `:eventually_local`: a query is made to the URL in the `src` attribute when the panel is first opened. The\n results are \"remembered\" and filtered in-memory for all subsequent filter operations, i.e. when the input\n field changes.\n\n3. `:local`: the list of items is provided statically ahead of time and filtered in-memory. No requests are made\n to the server.\n\n## Customizing filter behavior\n\nIf the fetch strategy is `:remote`, then filtering is handled server-side. The server should render a\n`Primer::Alpha::SelectPanel::ItemList` (an alias of {{#link_to_component}}Primer::Alpha::ActionList{{/link_to_component}})\nin the response containing the filtered list of items. The component achieves remote fetching via the\n[remote-input-element](https://github.com/github/remote-input-element), which sends a request to the\nserver with the filter string in the `q=` parameter. Responses must be HTML fragments, eg. have a content\ntype of `text/html+fragment`.\n\n### Local filtering\n\nIf the fetch strategy is `:local` or `:eventually_local`, filtering is performed client-side. Filter behavior can\nbe customized in JavaScript by setting the `filterFn` attribute on the instance of `SelectPanelElement`, eg:\n\n```javascript\ndocument.querySelector(\"select-panel\").filterFn = (item: HTMLElement, query: string): boolean => {\n // return true if the item should be displayed, false otherwise\n}\n```\n\nThe element's default filter function uses the value of the `data-filter-string` attribute, falling back to the\nelement's `innerText` property. It performs a case-insensitive substring match against the filter string.\n\n### `SelectPanel`s as form inputs\n\n`SelectPanel`s can be used as form inputs. They behave very similarly to how HTML `<select>` boxes behave, and\nplay nicely with Rails' built-in form mechanisms. Pass arguments via the `form_arguments:` argument, including\nthe Rails form builder object and the name of the field:\n\n```erb\n<% form_with(model: Address.new) do |f| %>\n <%= render(Primer::Alpha::SelectPanel.new(form_arguments: { builder: f, name: \"country\" })) do |menu| %>\n <% countries.each do |country|\n <% menu.with_item(label: country.name, data: { value: country.code }) %>\n <% end %>\n <% end %>\n<% end %>\n```\n\nThe value of the `data: { value: ... }` argument is sent to the server on submit, keyed using the name provided above\n(eg. `\"country\"`). If no value is provided for an item, the value of that item is the item's label. Here's the\ncorresponding `AddressesController` that might be written to handle the form above:\n\n```ruby\nclass AddressesController < ApplicationController\n def create\n puts \"You chose #{address_params[:country]} as your country\"\n end\n\n private\n\n def address_params\n params.require(:address).permit(:country)\n end\nend\n```\n\nIf items are provided dynamically, things become a bit more complicated. The `form_for` or `form_with` method call\nhappens in the view that renders the `SelectPanel`, which means the form builder object but isn't available in the\nview that renders the list items. In such a case, it can be useful to create an instance of the form builder maually:\n\n```erb\n<% builder = ActionView::Helpers::FormBuilder.new(\n \"address\", # the name of the model, used to wrap input names, eg 'address[country_code]'\n nil, # object (eg. the Address instance, which we can omit)\n self, # template\n {} # options\n) %>\n<%= render(Primer::Alpha::SelectPanel::ItemList.new(\n form_arguments: { builder: builder, name: \"country\" }\n)) do |list| %>\n <% countries.each do |country| %>\n <% menu.with_item(label: country.name, data: { value: country.code }) %>\n <% end %>\n<% end %>\n```\n\n### JavaScript API\n\n`SelectPanel`s render a `<select-panel>` custom element that exposes behavior to the client.\n\n#### Utility methods\n\n* `show()`: Manually open the panel. Under normal circumstances, a show button is used to show the panel, but this method exists to support unusual use-cases.\n* `hide()`: Manually hides (closes) the panel.\n\n#### Query methods\n\n* `getItemById(itemId: string): Element`: Returns the item's HTML `<li>` element. The return value can be passed as the `item` argument to the other methods listed below.\n* `isItemChecked(item: Element): boolean`: Returns `true` if the item is checked, `false` otherwise.\n* `isItemHidden(item: Element): boolean`: Returns `true` if the item is hidden, `false` otherwise.\n* `isItemDisabled(item: Element): boolean`: Returns `true` if the item is disabled, `false` otherwise.\n\nNOTE: Item IDs are special values provided by the user that are attached to `SelectPanel` list items as the `data-item-id`\nHTML attribute. Item IDs can be provided by passing an `item_id:` attribute when adding items to the panel, eg:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel.new) do |panel| %>\n <% panel.with_item(item_id: \"my-id\") %>\n<% end %>\n```\n\nThe same is true when rendering `ItemList`s:\n\n```erb\n<%= render(Primer::Alpha::SelectPanel::ItemList.new) do |list| %>\n <% list.with_item(item_id: \"my-id\") %>\n<% end %>\n```\n\n#### State methods\n\n* `showItem(item: Element)`: Shows the item, i.e. makes it visible.\n* `hideItem(item: Element)`: Hides the item, i.e. makes it invisible.\n* `enableItem(item: Element)`: Enables the item, i.e. makes it clickable by the mouse and keyboard.\n* `disableItem(item: Element)`: Disables the item, i.e. makes it unclickable by the mouse and keyboard.\n* `checkItem(item: Element)`: Checks the item. Only has an effect in single- and multi-select modes.\n* `uncheckItem(item: Element)`: Unchecks the item. Only has an effect in multi-select mode, since items cannot be unchecked in single-select mode.\n\n#### Events\n\n|Name |Type |Bubbles |Cancelable |\n|:--------------------|:------------------------------------------|:-------|:----------|\n|`itemActivated` |`CustomEvent<ItemActivatedEvent>` |Yes |No |\n|`beforeItemActivated`|`CustomEvent<ItemActivatedEvent>` |Yes |Yes |\n|`dialog:open` |`CustomEvent<{dialog: HTMLDialogElement}>` |No |No |\n|`panelClosed` |`CustomEvent<{panel: SelectPanelElement}>` |Yes |No |\n\n_Item activation_\n\nThe `<select-panel>` element fires an `itemActivated` event whenever an item is activated (eg. clicked) via the mouse or keyboard.\n\n```typescript\ndocument.querySelector(\"select-panel\").addEventListener(\n \"itemActivated\",\n (event: CustomEvent<ItemActivatedEvent>) => {\n event.detail.item // Element: the <li> item that was activated\n event.detail.checked // boolean: whether or not the result of the activation checked the item\n }\n)\n```\n\nThe `beforeItemActivated` event fires before an item is activated. Canceling this event will prevent the item\nfrom being activated.\n\n```typescript\ndocument.querySelector(\"select-panel\").addEventListener(\n \"beforeItemActivated\",\n (event: CustomEvent<ItemActivatedEvent>) => {\n event.detail.item // Element: the <li> item that was activated\n event.detail.checked // boolean: whether or not the result of the activation checked the item\n event.preventDefault() // Cancel the event to prevent activation (eg. checking/unchecking)\n }\n)\n```",
|
7515
7515
|
"accessibility_docs": null,
|
7516
7516
|
"is_form_component": false,
|
7517
7517
|
"is_published": true,
|
@@ -8051,32 +8051,6 @@
|
|
8051
8051
|
"color-contrast"
|
8052
8052
|
]
|
8053
8053
|
}
|
8054
|
-
},
|
8055
|
-
{
|
8056
|
-
"preview_path": "primer/alpha/select_panel/single_select_form",
|
8057
|
-
"name": "single_select_form",
|
8058
|
-
"snapshot": "interactive",
|
8059
|
-
"skip_rules": {
|
8060
|
-
"wont_fix": [
|
8061
|
-
"region"
|
8062
|
-
],
|
8063
|
-
"will_fix": [
|
8064
|
-
"color-contrast"
|
8065
|
-
]
|
8066
|
-
}
|
8067
|
-
},
|
8068
|
-
{
|
8069
|
-
"preview_path": "primer/alpha/select_panel/multiselect_form",
|
8070
|
-
"name": "multiselect_form",
|
8071
|
-
"snapshot": "interactive",
|
8072
|
-
"skip_rules": {
|
8073
|
-
"wont_fix": [
|
8074
|
-
"region"
|
8075
|
-
],
|
8076
|
-
"will_fix": [
|
8077
|
-
"color-contrast"
|
8078
|
-
]
|
8079
|
-
}
|
8080
8054
|
}
|
8081
8055
|
],
|
8082
8056
|
"subcomponents": [
|
package/static/previews.json
CHANGED
@@ -6134,32 +6134,6 @@
|
|
6134
6134
|
"color-contrast"
|
6135
6135
|
]
|
6136
6136
|
}
|
6137
|
-
},
|
6138
|
-
{
|
6139
|
-
"preview_path": "primer/alpha/select_panel/single_select_form",
|
6140
|
-
"name": "single_select_form",
|
6141
|
-
"snapshot": "interactive",
|
6142
|
-
"skip_rules": {
|
6143
|
-
"wont_fix": [
|
6144
|
-
"region"
|
6145
|
-
],
|
6146
|
-
"will_fix": [
|
6147
|
-
"color-contrast"
|
6148
|
-
]
|
6149
|
-
}
|
6150
|
-
},
|
6151
|
-
{
|
6152
|
-
"preview_path": "primer/alpha/select_panel/multiselect_form",
|
6153
|
-
"name": "multiselect_form",
|
6154
|
-
"snapshot": "interactive",
|
6155
|
-
"skip_rules": {
|
6156
|
-
"wont_fix": [
|
6157
|
-
"region"
|
6158
|
-
],
|
6159
|
-
"will_fix": [
|
6160
|
-
"color-contrast"
|
6161
|
-
]
|
6162
|
-
}
|
6163
6137
|
}
|
6164
6138
|
]
|
6165
6139
|
},
|