@angular/aria 22.0.0-next.2 → 22.0.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/_accordion-chunk.mjs.map +1 -1
- package/fesm2022/_click-event-manager-chunk.mjs +45 -0
- package/fesm2022/_click-event-manager-chunk.mjs.map +1 -0
- package/fesm2022/_combobox-chunk.mjs +4 -4
- package/fesm2022/_combobox-chunk.mjs.map +1 -1
- package/fesm2022/_combobox-listbox-chunk.mjs +22 -12
- package/fesm2022/_combobox-listbox-chunk.mjs.map +1 -1
- package/fesm2022/_combobox-tree-chunk.mjs +18 -8
- package/fesm2022/_combobox-tree-chunk.mjs.map +1 -1
- package/fesm2022/_deferred-content-chunk.mjs +7 -7
- package/fesm2022/_deferred-content-chunk.mjs.map +1 -1
- package/fesm2022/_expansion-chunk.mjs.map +1 -1
- package/fesm2022/_list-chunk.mjs.map +1 -1
- package/fesm2022/_list-navigation-chunk.mjs.map +1 -1
- package/fesm2022/_list-typeahead-chunk.mjs +10 -10
- package/fesm2022/_list-typeahead-chunk.mjs.map +1 -1
- package/fesm2022/_menu-chunk.mjs +34 -13
- package/fesm2022/_menu-chunk.mjs.map +1 -1
- package/fesm2022/_pointer-event-manager-chunk.mjs.map +1 -1
- package/fesm2022/_signal-like-chunk.mjs +1 -1
- package/fesm2022/_signal-like-chunk.mjs.map +1 -1
- package/fesm2022/_tabs-chunk.mjs +15 -5
- package/fesm2022/_tabs-chunk.mjs.map +1 -1
- package/fesm2022/_toolbar-widget-group-chunk.mjs +14 -2
- package/fesm2022/_toolbar-widget-group-chunk.mjs.map +1 -1
- package/fesm2022/_widget-chunk.mjs +6 -4
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +13 -13
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/aria.mjs +1 -1
- package/fesm2022/aria.mjs.map +1 -1
- package/fesm2022/combobox.mjs +15 -15
- package/fesm2022/combobox.mjs.map +1 -1
- package/fesm2022/grid.mjs +12 -12
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +25 -32
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +28 -32
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/private.mjs +9 -8
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/tabs.mjs +23 -31
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +22 -30
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +24 -32
- package/fesm2022/tree.mjs.map +1 -1
- package/package.json +2 -2
- package/resources/code-examples.db +0 -0
- package/types/_accordion-chunk.d.ts +2 -2
- package/types/_click-event-manager-chunk.d.ts +27 -0
- package/types/_combobox-chunk.d.ts +1 -1
- package/types/_grid-chunk.d.ts +2 -2
- package/types/_list-chunk.d.ts +1 -1
- package/types/_listbox-chunk.d.ts +12 -5
- package/types/_menu-chunk.d.ts +14 -10
- package/types/_tabs-chunk.d.ts +12 -6
- package/types/_toolbar-chunk.d.ts +6 -1
- package/types/_tree-chunk.d.ts +7 -1
- package/types/listbox.d.ts +4 -6
- package/types/menu.d.ts +2 -2
- package/types/private.d.ts +2 -1
- package/types/tabs.d.ts +1 -4
- package/types/toolbar.d.ts +2 -5
- package/types/tree.d.ts +2 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_list-navigation-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-focus/list-focus.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-navigation/list-navigation.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {computed, signal, SignalLike, WritableSignalLike} from '../signal-like/signal-like';\n\n/** Represents an item in a collection, such as a listbox option, than may receive focus. */\nexport interface ListFocusItem {\n /** A unique identifier for the item. */\n id: SignalLike<string>;\n\n /** The html element that should receive focus. */\n element: SignalLike<HTMLElement | undefined>;\n\n /** Whether an item is disabled. */\n disabled: SignalLike<boolean>;\n}\n\n/** Represents the required inputs for a collection that contains focusable items. */\nexport interface ListFocusInputs<T extends ListFocusItem> {\n /** The focus strategy used by the list. */\n focusMode: SignalLike<'roving' | 'activedescendant'>;\n\n /** Whether the list is disabled. */\n disabled: SignalLike<boolean>;\n\n /** The items in the list. */\n items: SignalLike<T[]>;\n\n /** The active item. */\n activeItem: WritableSignalLike<T | undefined>;\n\n /** Whether disabled items in the list should be focusable. */\n softDisabled: SignalLike<boolean>;\n\n /** The html element that should receive focus. */\n element: SignalLike<HTMLElement | undefined>;\n}\n\n/** Controls focus for a list of items. */\nexport class ListFocus<T extends ListFocusItem> {\n /** The last item that was active. */\n prevActiveItem = signal<T | undefined>(undefined);\n\n /** The index of the last item that was active. */\n prevActiveIndex = computed(() => {\n return this.prevActiveItem() ? this.inputs.items().indexOf(this.prevActiveItem()!) : -1;\n });\n\n /** The current active index in the list. */\n activeIndex = computed(() => {\n return this.inputs.activeItem() ? this.inputs.items().indexOf(this.inputs.activeItem()!) : -1;\n });\n\n constructor(readonly inputs: ListFocusInputs<T>) {}\n\n /** Whether the list is in a disabled state. */\n isListDisabled(): boolean {\n return this.inputs.disabled() || this.inputs.items().every(i => i.disabled());\n }\n\n /** The id of the current active item. */\n getActiveDescendant(): string | undefined {\n if (this.isListDisabled()) {\n return undefined;\n }\n if (this.inputs.focusMode() === 'roving') {\n return undefined;\n }\n return this.inputs.activeItem()?.id() ?? undefined;\n }\n\n /** The tab index for the list. */\n getListTabIndex(): -1 | 0 {\n if (this.isListDisabled()) {\n return 0;\n }\n return this.inputs.focusMode() === 'activedescendant' ? 0 : -1;\n }\n\n /** Returns the tab index for the given item. */\n getItemTabIndex(item: T): -1 | 0 {\n if (this.isListDisabled()) {\n return -1;\n }\n if (this.inputs.focusMode() === 'activedescendant') {\n return -1;\n }\n return this.inputs.activeItem() === item ? 0 : -1;\n }\n\n /** Moves focus to the given item if it is focusable. */\n focus(item: T, opts?: {focusElement?: boolean}): boolean {\n if (this.isListDisabled() || !this.isFocusable(item)) {\n return false;\n }\n\n this.prevActiveItem.set(this.inputs.activeItem());\n this.inputs.activeItem.set(item);\n\n if (opts?.focusElement || opts?.focusElement === undefined) {\n this.inputs.focusMode() === 'roving'\n ? item.element()?.focus()\n : this.inputs.element()?.focus();\n }\n\n return true;\n }\n\n /** Returns true if the given item can be navigated to. */\n isFocusable(item: T): boolean {\n return !item.disabled() || this.inputs.softDisabled();\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {SignalLike} from '../signal-like/signal-like';\nimport {ListFocus, ListFocusInputs, ListFocusItem} from '../list-focus/list-focus';\n\n/** Represents an item in a collection, such as a listbox option, than can be navigated to. */\nexport interface ListNavigationItem extends ListFocusItem {}\n\n/** Represents the required inputs for a collection that has navigable items. */\nexport interface ListNavigationInputs<T extends ListNavigationItem> extends ListFocusInputs<T> {\n /** Whether focus should wrap when navigating. */\n wrap: SignalLike<boolean>;\n\n /** Whether the list is vertically or horizontally oriented. */\n orientation: SignalLike<'vertical' | 'horizontal'>;\n\n /** The direction that text is read based on the users locale. */\n textDirection: SignalLike<'rtl' | 'ltr'>;\n}\n\n/** Options for list navigation. */\nexport interface ListNavigationOpts<T> {\n /**\n * Whether to focus the item's element.\n * Defaults to true.\n */\n focusElement?: boolean;\n\n /**\n * The list of items to navigate through.\n * Defaults to the list of items from the inputs.\n */\n items?: T[];\n}\n\n/** Controls navigation for a list of items. */\nexport class ListNavigation<T extends ListNavigationItem> {\n constructor(readonly inputs: ListNavigationInputs<T> & {focusManager: ListFocus<T>}) {}\n\n /** Navigates to the given item. */\n goto(item?: T, opts?: ListNavigationOpts<T>): boolean {\n return item ? this.inputs.focusManager.focus(item, opts) : false;\n }\n\n /** Navigates to the next item in the list. */\n next(opts?: ListNavigationOpts<T>): boolean {\n return this._advance(1, opts);\n }\n\n /** Peeks the next item in the list. */\n peekNext(opts?: ListNavigationOpts<T>): T | undefined {\n return this._peek(1, opts);\n }\n\n /** Navigates to the previous item in the list. */\n prev(opts?: ListNavigationOpts<T>): boolean {\n return this._advance(-1, opts);\n }\n\n /** Peeks the previous item in the list. */\n peekPrev(opts?: ListNavigationOpts<T>): T | undefined {\n return this._peek(-1, opts);\n }\n\n /** Navigates to the first item in the list. */\n first(opts?: ListNavigationOpts<T>): boolean {\n const item = this.peekFirst(opts);\n return item ? this.goto(item, opts) : false;\n }\n\n /** Navigates to the last item in the list. */\n last(opts?: ListNavigationOpts<T>): boolean {\n const item = this.peekLast(opts);\n return item ? this.goto(item, opts) : false;\n }\n\n /** Gets the first focusable item from the given list of items. */\n peekFirst(opts?: ListNavigationOpts<T>): T | undefined {\n const items = opts?.items ?? this.inputs.items();\n return items.find(i => this.inputs.focusManager.isFocusable(i));\n }\n\n /** Gets the last focusable item from the given list of items. */\n peekLast(opts?: ListNavigationOpts<T>): T | undefined {\n const items = opts?.items ?? this.inputs.items();\n for (let i = items.length - 1; i >= 0; i--) {\n if (this.inputs.focusManager.isFocusable(items[i])) {\n return items[i];\n }\n }\n return;\n }\n\n /** Advances to the next or previous focusable item in the list based on the given delta. */\n private _advance(delta: 1 | -1, opts?: ListNavigationOpts<T>): boolean {\n const item = this._peek(delta, opts);\n return item ? this.goto(item, opts) : false;\n }\n\n /** Peeks the next or previous focusable item in the list based on the given delta. */\n private _peek(delta: 1 | -1, opts?: ListNavigationOpts<T>): T | undefined {\n const items = opts?.items ?? this.inputs.items();\n const itemCount = items.length;\n const activeItem = this.inputs.focusManager.inputs.activeItem();\n const startIndex =\n opts?.items && activeItem\n ? items.indexOf(activeItem)\n : this.inputs.focusManager.activeIndex();\n\n const step = (i: number) =>\n this.inputs.wrap() ? (i + delta + itemCount) % itemCount : i + delta;\n\n // If wrapping is enabled, this loop ultimately terminates when `i` gets back to `startIndex`\n // in the case that all options are disabled. If wrapping is disabled, the loop terminates\n // when the index goes out of bounds.\n for (let i = step(startIndex); i !== startIndex && i < itemCount && i >= 0; i = step(i)) {\n if (this.inputs.focusManager.isFocusable(items[i])) {\n return items[i];\n }\n }\n\n return;\n }\n}\n"],"names":["ListFocus","inputs","prevActiveItem","signal","undefined","prevActiveIndex","computed","items","indexOf","activeIndex","activeItem","constructor","isListDisabled","disabled","every","i","getActiveDescendant","focusMode","id","getListTabIndex","getItemTabIndex","item","focus","opts","isFocusable","set","focusElement","element","softDisabled","ListNavigation","goto","focusManager","next","_advance","peekNext","_peek","prev","peekPrev","first","peekFirst","last","peekLast","find","length","delta","itemCount","startIndex","step","wrap"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"_list-navigation-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-focus/list-focus.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-navigation/list-navigation.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {computed, signal, SignalLike, WritableSignalLike} from '../signal-like/signal-like';\n\n/** Represents an item in a collection, such as a listbox option, than may receive focus. */\nexport interface ListFocusItem {\n /** A unique identifier for the item. */\n id: SignalLike<string>;\n\n /** The html element that should receive focus. */\n element: SignalLike<HTMLElement | undefined>;\n\n /** Whether an item is disabled. */\n disabled: SignalLike<boolean>;\n}\n\n/** Represents the required inputs for a collection that contains focusable items. */\nexport interface ListFocusInputs<T extends ListFocusItem> {\n /** The focus strategy used by the list. */\n focusMode: SignalLike<'roving' | 'activedescendant'>;\n\n /** Whether the list is disabled. */\n disabled: SignalLike<boolean>;\n\n /** The items in the list. */\n items: SignalLike<T[]>;\n\n /** The active item. */\n activeItem: WritableSignalLike<T | undefined>;\n\n /** Whether disabled items in the list should be focusable. */\n softDisabled: SignalLike<boolean>;\n\n /** The html element that should receive focus. */\n element: SignalLike<HTMLElement | undefined>;\n}\n\n/** Controls focus for a list of items. */\nexport class ListFocus<T extends ListFocusItem> {\n /** The last item that was active. */\n prevActiveItem = signal<T | undefined>(undefined);\n\n /** The index of the last item that was active. */\n prevActiveIndex = computed(() => {\n return this.prevActiveItem() ? this.inputs.items().indexOf(this.prevActiveItem()!) : -1;\n });\n\n /** The current active index in the list. */\n activeIndex = computed(() => {\n return this.inputs.activeItem() ? this.inputs.items().indexOf(this.inputs.activeItem()!) : -1;\n });\n\n constructor(readonly inputs: ListFocusInputs<T>) {}\n\n /** Whether the list is in a disabled state. */\n isListDisabled(): boolean {\n return this.inputs.disabled() || this.inputs.items().every(i => i.disabled());\n }\n\n /** The id of the current active item. */\n getActiveDescendant(): string | undefined {\n if (this.isListDisabled()) {\n return undefined;\n }\n if (this.inputs.focusMode() === 'roving') {\n return undefined;\n }\n return this.inputs.activeItem()?.id() ?? undefined;\n }\n\n /** The tab index for the list. */\n getListTabIndex(): -1 | 0 {\n if (this.isListDisabled()) {\n return 0;\n }\n return this.inputs.focusMode() === 'activedescendant' ? 0 : -1;\n }\n\n /** Returns the tab index for the given item. */\n getItemTabIndex(item: T): -1 | 0 {\n if (this.isListDisabled()) {\n return -1;\n }\n if (this.inputs.focusMode() === 'activedescendant') {\n return -1;\n }\n return this.inputs.activeItem() === item ? 0 : -1;\n }\n\n /** Moves focus to the given item if it is focusable. */\n focus(item: T, opts?: {focusElement?: boolean}): boolean {\n if (this.isListDisabled() || !this.isFocusable(item)) {\n return false;\n }\n\n this.prevActiveItem.set(this.inputs.activeItem());\n this.inputs.activeItem.set(item);\n\n if (opts?.focusElement || opts?.focusElement === undefined) {\n this.inputs.focusMode() === 'roving'\n ? item.element()?.focus()\n : this.inputs.element()?.focus();\n }\n\n return true;\n }\n\n /** Returns true if the given item can be navigated to. */\n isFocusable(item: T): boolean {\n return !item.disabled() || this.inputs.softDisabled();\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {SignalLike} from '../signal-like/signal-like';\nimport {ListFocus, ListFocusInputs, ListFocusItem} from '../list-focus/list-focus';\n\n/** Represents an item in a collection, such as a listbox option, than can be navigated to. */\nexport interface ListNavigationItem extends ListFocusItem {}\n\n/** Represents the required inputs for a collection that has navigable items. */\nexport interface ListNavigationInputs<T extends ListNavigationItem> extends ListFocusInputs<T> {\n /** Whether focus should wrap when navigating. */\n wrap: SignalLike<boolean>;\n\n /** Whether the list is vertically or horizontally oriented. */\n orientation: SignalLike<'vertical' | 'horizontal'>;\n\n /** The direction that text is read based on the users locale. */\n textDirection: SignalLike<'rtl' | 'ltr'>;\n}\n\n/** Options for list navigation. */\nexport interface ListNavigationOpts<T> {\n /**\n * Whether to focus the item's element.\n * Defaults to true.\n */\n focusElement?: boolean;\n\n /**\n * The list of items to navigate through.\n * Defaults to the list of items from the inputs.\n */\n items?: T[];\n}\n\n/** Controls navigation for a list of items. */\nexport class ListNavigation<T extends ListNavigationItem> {\n constructor(readonly inputs: ListNavigationInputs<T> & {focusManager: ListFocus<T>}) {}\n\n /** Navigates to the given item. */\n goto(item?: T, opts?: ListNavigationOpts<T>): boolean {\n return item ? this.inputs.focusManager.focus(item, opts) : false;\n }\n\n /** Navigates to the next item in the list. */\n next(opts?: ListNavigationOpts<T>): boolean {\n return this._advance(1, opts);\n }\n\n /** Peeks the next item in the list. */\n peekNext(opts?: ListNavigationOpts<T>): T | undefined {\n return this._peek(1, opts);\n }\n\n /** Navigates to the previous item in the list. */\n prev(opts?: ListNavigationOpts<T>): boolean {\n return this._advance(-1, opts);\n }\n\n /** Peeks the previous item in the list. */\n peekPrev(opts?: ListNavigationOpts<T>): T | undefined {\n return this._peek(-1, opts);\n }\n\n /** Navigates to the first item in the list. */\n first(opts?: ListNavigationOpts<T>): boolean {\n const item = this.peekFirst(opts);\n return item ? this.goto(item, opts) : false;\n }\n\n /** Navigates to the last item in the list. */\n last(opts?: ListNavigationOpts<T>): boolean {\n const item = this.peekLast(opts);\n return item ? this.goto(item, opts) : false;\n }\n\n /** Gets the first focusable item from the given list of items. */\n peekFirst(opts?: ListNavigationOpts<T>): T | undefined {\n const items = opts?.items ?? this.inputs.items();\n return items.find(i => this.inputs.focusManager.isFocusable(i));\n }\n\n /** Gets the last focusable item from the given list of items. */\n peekLast(opts?: ListNavigationOpts<T>): T | undefined {\n const items = opts?.items ?? this.inputs.items();\n for (let i = items.length - 1; i >= 0; i--) {\n if (this.inputs.focusManager.isFocusable(items[i])) {\n return items[i];\n }\n }\n return;\n }\n\n /** Advances to the next or previous focusable item in the list based on the given delta. */\n private _advance(delta: 1 | -1, opts?: ListNavigationOpts<T>): boolean {\n const item = this._peek(delta, opts);\n return item ? this.goto(item, opts) : false;\n }\n\n /** Peeks the next or previous focusable item in the list based on the given delta. */\n private _peek(delta: 1 | -1, opts?: ListNavigationOpts<T>): T | undefined {\n const items = opts?.items ?? this.inputs.items();\n const itemCount = items.length;\n const activeItem = this.inputs.focusManager.inputs.activeItem();\n const startIndex =\n opts?.items && activeItem\n ? items.indexOf(activeItem)\n : this.inputs.focusManager.activeIndex();\n\n const step = (i: number) =>\n this.inputs.wrap() ? (i + delta + itemCount) % itemCount : i + delta;\n\n // If wrapping is enabled, this loop ultimately terminates when `i` gets back to `startIndex`\n // in the case that all options are disabled. If wrapping is disabled, the loop terminates\n // when the index goes out of bounds.\n for (let i = step(startIndex); i !== startIndex && i < itemCount && i >= 0; i = step(i)) {\n if (this.inputs.focusManager.isFocusable(items[i])) {\n return items[i];\n }\n }\n\n return;\n }\n}\n"],"names":["ListFocus","inputs","prevActiveItem","signal","undefined","prevActiveIndex","computed","items","indexOf","activeIndex","activeItem","constructor","isListDisabled","disabled","every","i","getActiveDescendant","focusMode","id","getListTabIndex","getItemTabIndex","item","focus","opts","isFocusable","set","focusElement","element","softDisabled","ListNavigation","goto","focusManager","next","_advance","peekNext","_peek","prev","peekPrev","first","peekFirst","last","peekLast","find","length","delta","itemCount","startIndex","step","wrap"],"mappings":"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"}
|
|
@@ -4,7 +4,7 @@ class ListSelection {
|
|
|
4
4
|
inputs;
|
|
5
5
|
rangeStartIndex = signal(0);
|
|
6
6
|
rangeEndIndex = signal(0);
|
|
7
|
-
selectedItems = computed(() => this.inputs.items().filter(item => this.inputs.
|
|
7
|
+
selectedItems = computed(() => this.inputs.items().filter(item => this.inputs.value().includes(item.value())));
|
|
8
8
|
constructor(inputs) {
|
|
9
9
|
this.inputs = inputs;
|
|
10
10
|
}
|
|
@@ -12,7 +12,7 @@ class ListSelection {
|
|
|
12
12
|
anchor: true
|
|
13
13
|
}) {
|
|
14
14
|
item = item ?? this.inputs.focusManager.inputs.activeItem();
|
|
15
|
-
if (!item || item.disabled() || !item.selectable() || !this.inputs.focusManager.isFocusable(item) || this.inputs.
|
|
15
|
+
if (!item || item.disabled() || !item.selectable() || !this.inputs.focusManager.isFocusable(item) || this.inputs.value().includes(item.value())) {
|
|
16
16
|
return;
|
|
17
17
|
}
|
|
18
18
|
if (!this.inputs.multi()) {
|
|
@@ -22,24 +22,24 @@ class ListSelection {
|
|
|
22
22
|
if (opts.anchor) {
|
|
23
23
|
this.beginRangeSelection(index);
|
|
24
24
|
}
|
|
25
|
-
this.inputs.
|
|
25
|
+
this.inputs.value.update(values => values.concat(item.value()));
|
|
26
26
|
}
|
|
27
27
|
deselect(item) {
|
|
28
28
|
item = item ?? this.inputs.focusManager.inputs.activeItem();
|
|
29
29
|
if (item && !item.disabled() && item.selectable()) {
|
|
30
|
-
this.inputs.
|
|
30
|
+
this.inputs.value.update(values => values.filter(value => value !== item.value()));
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
toggle(item) {
|
|
34
34
|
item = item ?? this.inputs.focusManager.inputs.activeItem();
|
|
35
35
|
if (item) {
|
|
36
|
-
this.inputs.
|
|
36
|
+
this.inputs.value().includes(item.value()) ? this.deselect(item) : this.select(item);
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
toggleOne() {
|
|
40
40
|
const item = this.inputs.focusManager.inputs.activeItem();
|
|
41
41
|
if (item) {
|
|
42
|
-
this.inputs.
|
|
42
|
+
this.inputs.value().includes(item.value()) ? this.deselect() : this.selectOne();
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
selectAll() {
|
|
@@ -54,14 +54,14 @@ class ListSelection {
|
|
|
54
54
|
this.beginRangeSelection();
|
|
55
55
|
}
|
|
56
56
|
deselectAll() {
|
|
57
|
-
for (const value of this.inputs.
|
|
57
|
+
for (const value of this.inputs.value()) {
|
|
58
58
|
const item = this.inputs.items().find(i => i.value() === value);
|
|
59
|
-
item ? this.deselect(item) : this.inputs.
|
|
59
|
+
item ? this.deselect(item) : this.inputs.value.update(values => values.filter(v => v !== value));
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
toggleAll() {
|
|
63
63
|
const selectableValues = this.inputs.items().filter(i => !i.disabled() && i.selectable() && this.inputs.focusManager.isFocusable(i)).map(i => i.value());
|
|
64
|
-
selectableValues.every(i => this.inputs.
|
|
64
|
+
selectableValues.every(i => this.inputs.value().includes(i)) ? this.deselectAll() : this.selectAll();
|
|
65
65
|
}
|
|
66
66
|
selectOne() {
|
|
67
67
|
const item = this.inputs.focusManager.inputs.activeItem();
|
|
@@ -69,7 +69,7 @@ class ListSelection {
|
|
|
69
69
|
return;
|
|
70
70
|
}
|
|
71
71
|
this.deselectAll();
|
|
72
|
-
if (this.inputs.
|
|
72
|
+
if (this.inputs.value().length > 0 && !this.inputs.multi()) {
|
|
73
73
|
return;
|
|
74
74
|
}
|
|
75
75
|
this.select();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_list-typeahead-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-selection/list-selection.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-typeahead/list-typeahead.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {computed, signal, SignalLike, WritableSignalLike} from '../signal-like/signal-like';\nimport {ListFocus, ListFocusInputs, ListFocusItem} from '../list-focus/list-focus';\n\n/** Represents an item in a collection, such as a listbox option, that can be selected. */\nexport interface ListSelectionItem<V> extends ListFocusItem {\n /** The value of the item. */\n value: SignalLike<V>;\n\n /** Whether the item is selectable. */\n selectable: SignalLike<boolean>;\n}\n\n/** Represents the required inputs for a collection that contains selectable items. */\nexport interface ListSelectionInputs<T extends ListSelectionItem<V>, V> extends ListFocusInputs<T> {\n /** Whether multiple items in the list can be selected at once. */\n multi: SignalLike<boolean>;\n\n /** The current value of the list selection. */\n values: WritableSignalLike<V[]>;\n\n /** The selection strategy used by the list. */\n selectionMode: SignalLike<'follow' | 'explicit'>;\n}\n\n/** Controls selection for a list of items. */\nexport class ListSelection<T extends ListSelectionItem<V>, V> {\n /** The start index to use for range selection. */\n rangeStartIndex = signal<number>(0);\n\n /** The end index to use for range selection. */\n rangeEndIndex = signal<number>(0);\n\n /** The currently selected items. */\n selectedItems = computed(() =>\n this.inputs.items().filter(item => this.inputs.values().includes(item.value())),\n );\n\n constructor(readonly inputs: ListSelectionInputs<T, V> & {focusManager: ListFocus<T>}) {}\n\n /** Selects the item at the current active index. */\n select(item?: ListSelectionItem<V>, opts = {anchor: true}) {\n item = item ?? (this.inputs.focusManager.inputs.activeItem() as ListSelectionItem<V>);\n\n if (\n !item ||\n item.disabled() ||\n !item.selectable() ||\n !this.inputs.focusManager.isFocusable(item as T) ||\n this.inputs.values().includes(item.value())\n ) {\n return;\n }\n\n if (!this.inputs.multi()) {\n this.deselectAll();\n }\n\n const index = this.inputs.items().findIndex(i => i === item);\n if (opts.anchor) {\n this.beginRangeSelection(index);\n }\n this.inputs.values.update(values => values.concat(item.value()));\n }\n\n /** Deselects the item at the current active index. */\n deselect(item?: ListSelectionItem<V>) {\n item = item ?? this.inputs.focusManager.inputs.activeItem();\n\n if (item && !item.disabled() && item.selectable()) {\n this.inputs.values.update(values => values.filter(value => value !== item.value()));\n }\n }\n\n /** Toggles the item at the current active index. */\n toggle(item?: ListSelectionItem<V>) {\n item = item ?? this.inputs.focusManager.inputs.activeItem();\n if (item) {\n this.inputs.values().includes(item.value()) ? this.deselect(item) : this.select(item);\n }\n }\n\n /** Toggles only the item at the current active index. */\n toggleOne() {\n const item = this.inputs.focusManager.inputs.activeItem();\n if (item) {\n this.inputs.values().includes(item.value()) ? this.deselect() : this.selectOne();\n }\n }\n\n /** Selects all items in the list. */\n selectAll() {\n if (!this.inputs.multi()) {\n return; // Should we log a warning?\n }\n\n for (const item of this.inputs.items()) {\n this.select(item, {anchor: false});\n }\n\n this.beginRangeSelection();\n }\n\n /** Deselects all items in the list. */\n deselectAll() {\n // If an item is not in the list, it forcefully gets deselected.\n // This actually creates a bug for the following edge case:\n //\n // Setup: An item is not in the list (maybe it's lazily loaded), and it is disabled & selected.\n // Expected: If deselectAll() is called, it should NOT get deselected (because it is disabled).\n // Actual: Calling deselectAll() will still deselect the item.\n //\n // Why? Because we can't check if the item is disabled if it's not in the list.\n //\n // Alternatively, we could NOT deselect items that are not in the list, but this has the\n // inverse (and more common) effect of keeping enabled items selected when they aren't in the\n // list.\n\n for (const value of this.inputs.values()) {\n const item = this.inputs.items().find(i => i.value() === value);\n\n item\n ? this.deselect(item)\n : this.inputs.values.update(values => values.filter(v => v !== value));\n }\n }\n\n /**\n * Selects all items in the list or deselects all\n * items in the list if all items are already selected.\n */\n toggleAll() {\n const selectableValues = this.inputs\n .items()\n .filter(i => !i.disabled() && i.selectable() && this.inputs.focusManager.isFocusable(i))\n .map(i => i.value());\n\n selectableValues.every(i => this.inputs.values().includes(i))\n ? this.deselectAll()\n : this.selectAll();\n }\n\n /** Sets the selection to only the current active item. */\n selectOne() {\n const item = this.inputs.focusManager.inputs.activeItem();\n if (item && (item.disabled() || !item.selectable())) {\n return;\n }\n\n this.deselectAll();\n\n if (this.inputs.values().length > 0 && !this.inputs.multi()) {\n return;\n }\n\n this.select();\n }\n\n /**\n * Selects all items in the list up to the anchor item.\n *\n * Deselects all items that were previously within the\n * selected range that are now outside of the selected range\n */\n selectRange(opts = {anchor: true}) {\n const isStartOfRange = this.inputs.focusManager.prevActiveIndex() === this.rangeStartIndex();\n\n if (isStartOfRange && opts.anchor) {\n this.beginRangeSelection(this.inputs.focusManager.prevActiveIndex());\n }\n\n const itemsInRange = this._getItemsFromIndex(this.rangeStartIndex());\n const itemsOutOfRange = this._getItemsFromIndex(this.rangeEndIndex()).filter(\n i => !itemsInRange.includes(i),\n );\n\n for (const item of itemsOutOfRange) {\n this.deselect(item);\n }\n\n for (const item of itemsInRange) {\n this.select(item, {anchor: false});\n }\n\n if (itemsInRange.length) {\n const item = itemsInRange.pop();\n const index = this.inputs.items().findIndex(i => i === item);\n this.rangeEndIndex.set(index);\n }\n }\n\n /** Marks the given index as the start of a range selection. */\n beginRangeSelection(index: number = this.inputs.focusManager.activeIndex()) {\n this.rangeStartIndex.set(index);\n this.rangeEndIndex.set(index);\n }\n\n /** Returns the items in the list starting from the given index. */\n private _getItemsFromIndex(index: number) {\n if (index === -1) {\n return [];\n }\n\n const upper = Math.max(this.inputs.focusManager.activeIndex(), index);\n const lower = Math.min(this.inputs.focusManager.activeIndex(), index);\n\n const items = [];\n for (let i = lower; i <= upper; i++) {\n items.push(this.inputs.items()[i]);\n }\n\n if (this.inputs.focusManager.activeIndex() < index) {\n return items.reverse();\n }\n\n return items;\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {computed, signal, SignalLike} from '../signal-like/signal-like';\nimport {ListFocus, ListFocusInputs, ListFocusItem} from '../list-focus/list-focus';\n\n/**\n * Represents an item in a collection, such as a listbox option, than can be navigated to by\n * typeahead.\n */\nexport interface ListTypeaheadItem extends ListFocusItem {\n /** The text used by the typeahead search. */\n searchTerm: SignalLike<string>;\n}\n\n/**\n * Represents the required inputs for a collection that contains items that can be navigated to by\n * typeahead.\n */\nexport interface ListTypeaheadInputs<T extends ListTypeaheadItem> extends ListFocusInputs<T> {\n /** The amount of time before the typeahead search is reset. */\n typeaheadDelay: SignalLike<number>;\n}\n\n/** Controls typeahead for a list of items. */\nexport class ListTypeahead<T extends ListTypeaheadItem> {\n /** A reference to the timeout for resetting the typeahead search. */\n timeout?: ReturnType<typeof setTimeout> | undefined;\n\n /** The focus controller of the parent list. */\n focusManager: ListFocus<T>;\n\n /** Whether the user is actively typing a typeahead search query. */\n isTyping = computed(() => this._query().length > 0);\n\n /** Keeps track of the characters that typeahead search is being called with. */\n private _query = signal('');\n\n /** The index where that the typeahead search was initiated from. */\n private _startIndex = signal<number | undefined>(undefined);\n\n constructor(readonly inputs: ListTypeaheadInputs<T> & {focusManager: ListFocus<T>}) {\n this.focusManager = inputs.focusManager;\n }\n\n /** Performs a typeahead search, appending the given character to the search string. */\n search(char: string): boolean {\n if (char.length !== 1) {\n return false;\n }\n\n if (!this.isTyping() && char === ' ') {\n return false;\n }\n\n if (this._startIndex() === undefined) {\n this._startIndex.set(this.focusManager.activeIndex());\n }\n\n clearTimeout(this.timeout);\n this._query.update(q => q + char.toLowerCase());\n const item = this._getItem();\n\n if (item) {\n this.focusManager.focus(item);\n }\n\n this.timeout = setTimeout(() => {\n this._query.set('');\n this._startIndex.set(undefined);\n }, this.inputs.typeaheadDelay());\n\n return true;\n }\n\n /**\n * Returns the first item whose search term matches the\n * current query starting from the the current anchor index.\n */\n private _getItem() {\n const items = this.focusManager.inputs.items();\n const itemCount = items.length;\n const startIndex = this._startIndex()!;\n\n for (let i = 0; i < itemCount; i++) {\n const index = (startIndex + 1 + i) % itemCount;\n const item = items[index];\n\n if (\n this.focusManager.isFocusable(item) &&\n item.searchTerm().toLowerCase().startsWith(this._query())\n ) {\n return item;\n }\n }\n\n return undefined;\n }\n}\n"],"names":["ListSelection","inputs","rangeStartIndex","signal","rangeEndIndex","selectedItems","computed","items","filter","item","values","includes","value","constructor","select","opts","anchor","focusManager","activeItem","disabled","selectable","isFocusable","multi","deselectAll","index","findIndex","i","beginRangeSelection","update","concat","deselect","toggle","toggleOne","selectOne","selectAll","find","v","toggleAll","selectableValues","map","every","length","selectRange","isStartOfRange","prevActiveIndex","itemsInRange","_getItemsFromIndex","itemsOutOfRange","pop","set","activeIndex","upper","Math","max","lower","min","push","reverse","ListTypeahead","timeout","isTyping","_query","_startIndex","undefined","search","char","clearTimeout","q","toLowerCase","_getItem","focus","setTimeout","typeaheadDelay","itemCount","startIndex","searchTerm","startsWith"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"_list-typeahead-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-selection/list-selection.ts","../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/behaviors/list-typeahead/list-typeahead.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {computed, signal, SignalLike, WritableSignalLike} from '../signal-like/signal-like';\nimport {ListFocus, ListFocusInputs, ListFocusItem} from '../list-focus/list-focus';\n\n/** Represents an item in a collection, such as a listbox option, that can be selected. */\nexport interface ListSelectionItem<V> extends ListFocusItem {\n /** The value of the item. */\n value: SignalLike<V>;\n\n /** Whether the item is selectable. */\n selectable: SignalLike<boolean>;\n}\n\n/** Represents the required inputs for a collection that contains selectable items. */\nexport interface ListSelectionInputs<T extends ListSelectionItem<V>, V> extends ListFocusInputs<T> {\n /** Whether multiple items in the list can be selected at once. */\n multi: SignalLike<boolean>;\n\n /** The current value of the list selection. */\n value: WritableSignalLike<V[]>;\n\n /** The selection strategy used by the list. */\n selectionMode: SignalLike<'follow' | 'explicit'>;\n}\n\n/** Controls selection for a list of items. */\nexport class ListSelection<T extends ListSelectionItem<V>, V> {\n /** The start index to use for range selection. */\n rangeStartIndex = signal<number>(0);\n\n /** The end index to use for range selection. */\n rangeEndIndex = signal<number>(0);\n\n /** The currently selected items. */\n selectedItems = computed(() =>\n this.inputs.items().filter(item => this.inputs.value().includes(item.value())),\n );\n\n constructor(readonly inputs: ListSelectionInputs<T, V> & {focusManager: ListFocus<T>}) {}\n\n /** Selects the item at the current active index. */\n select(item?: ListSelectionItem<V>, opts = {anchor: true}) {\n item = item ?? (this.inputs.focusManager.inputs.activeItem() as ListSelectionItem<V>);\n\n if (\n !item ||\n item.disabled() ||\n !item.selectable() ||\n !this.inputs.focusManager.isFocusable(item as T) ||\n this.inputs.value().includes(item.value())\n ) {\n return;\n }\n\n if (!this.inputs.multi()) {\n this.deselectAll();\n }\n\n const index = this.inputs.items().findIndex(i => i === item);\n if (opts.anchor) {\n this.beginRangeSelection(index);\n }\n this.inputs.value.update(values => values.concat(item.value()));\n }\n\n /** Deselects the item at the current active index. */\n deselect(item?: ListSelectionItem<V>) {\n item = item ?? this.inputs.focusManager.inputs.activeItem();\n\n if (item && !item.disabled() && item.selectable()) {\n this.inputs.value.update(values => values.filter(value => value !== item.value()));\n }\n }\n\n /** Toggles the item at the current active index. */\n toggle(item?: ListSelectionItem<V>) {\n item = item ?? this.inputs.focusManager.inputs.activeItem();\n if (item) {\n this.inputs.value().includes(item.value()) ? this.deselect(item) : this.select(item);\n }\n }\n\n /** Toggles only the item at the current active index. */\n toggleOne() {\n const item = this.inputs.focusManager.inputs.activeItem();\n if (item) {\n this.inputs.value().includes(item.value()) ? this.deselect() : this.selectOne();\n }\n }\n\n /** Selects all items in the list. */\n selectAll() {\n if (!this.inputs.multi()) {\n return; // Should we log a warning?\n }\n\n for (const item of this.inputs.items()) {\n this.select(item, {anchor: false});\n }\n\n this.beginRangeSelection();\n }\n\n /** Deselects all items in the list. */\n deselectAll() {\n // If an item is not in the list, it forcefully gets deselected.\n // This actually creates a bug for the following edge case:\n //\n // Setup: An item is not in the list (maybe it's lazily loaded), and it is disabled & selected.\n // Expected: If deselectAll() is called, it should NOT get deselected (because it is disabled).\n // Actual: Calling deselectAll() will still deselect the item.\n //\n // Why? Because we can't check if the item is disabled if it's not in the list.\n //\n // Alternatively, we could NOT deselect items that are not in the list, but this has the\n // inverse (and more common) effect of keeping enabled items selected when they aren't in the\n // list.\n\n for (const value of this.inputs.value()) {\n const item = this.inputs.items().find(i => i.value() === value);\n\n item\n ? this.deselect(item)\n : this.inputs.value.update(values => values.filter(v => v !== value));\n }\n }\n\n /**\n * Selects all items in the list or deselects all\n * items in the list if all items are already selected.\n */\n toggleAll() {\n const selectableValues = this.inputs\n .items()\n .filter(i => !i.disabled() && i.selectable() && this.inputs.focusManager.isFocusable(i))\n .map(i => i.value());\n\n selectableValues.every(i => this.inputs.value().includes(i))\n ? this.deselectAll()\n : this.selectAll();\n }\n\n /** Sets the selection to only the current active item. */\n selectOne() {\n const item = this.inputs.focusManager.inputs.activeItem();\n if (item && (item.disabled() || !item.selectable())) {\n return;\n }\n\n this.deselectAll();\n\n if (this.inputs.value().length > 0 && !this.inputs.multi()) {\n return;\n }\n\n this.select();\n }\n\n /**\n * Selects all items in the list up to the anchor item.\n *\n * Deselects all items that were previously within the\n * selected range that are now outside of the selected range\n */\n selectRange(opts = {anchor: true}) {\n const isStartOfRange = this.inputs.focusManager.prevActiveIndex() === this.rangeStartIndex();\n\n if (isStartOfRange && opts.anchor) {\n this.beginRangeSelection(this.inputs.focusManager.prevActiveIndex());\n }\n\n const itemsInRange = this._getItemsFromIndex(this.rangeStartIndex());\n const itemsOutOfRange = this._getItemsFromIndex(this.rangeEndIndex()).filter(\n i => !itemsInRange.includes(i),\n );\n\n for (const item of itemsOutOfRange) {\n this.deselect(item);\n }\n\n for (const item of itemsInRange) {\n this.select(item, {anchor: false});\n }\n\n if (itemsInRange.length) {\n const item = itemsInRange.pop();\n const index = this.inputs.items().findIndex(i => i === item);\n this.rangeEndIndex.set(index);\n }\n }\n\n /** Marks the given index as the start of a range selection. */\n beginRangeSelection(index: number = this.inputs.focusManager.activeIndex()) {\n this.rangeStartIndex.set(index);\n this.rangeEndIndex.set(index);\n }\n\n /** Returns the items in the list starting from the given index. */\n private _getItemsFromIndex(index: number) {\n if (index === -1) {\n return [];\n }\n\n const upper = Math.max(this.inputs.focusManager.activeIndex(), index);\n const lower = Math.min(this.inputs.focusManager.activeIndex(), index);\n\n const items = [];\n for (let i = lower; i <= upper; i++) {\n items.push(this.inputs.items()[i]);\n }\n\n if (this.inputs.focusManager.activeIndex() < index) {\n return items.reverse();\n }\n\n return items;\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {computed, signal, SignalLike} from '../signal-like/signal-like';\nimport {ListFocus, ListFocusInputs, ListFocusItem} from '../list-focus/list-focus';\n\n/**\n * Represents an item in a collection, such as a listbox option, than can be navigated to by\n * typeahead.\n */\nexport interface ListTypeaheadItem extends ListFocusItem {\n /** The text used by the typeahead search. */\n searchTerm: SignalLike<string>;\n}\n\n/**\n * Represents the required inputs for a collection that contains items that can be navigated to by\n * typeahead.\n */\nexport interface ListTypeaheadInputs<T extends ListTypeaheadItem> extends ListFocusInputs<T> {\n /** The amount of time before the typeahead search is reset. */\n typeaheadDelay: SignalLike<number>;\n}\n\n/** Controls typeahead for a list of items. */\nexport class ListTypeahead<T extends ListTypeaheadItem> {\n /** A reference to the timeout for resetting the typeahead search. */\n timeout?: ReturnType<typeof setTimeout> | undefined;\n\n /** The focus controller of the parent list. */\n focusManager: ListFocus<T>;\n\n /** Whether the user is actively typing a typeahead search query. */\n isTyping = computed(() => this._query().length > 0);\n\n /** Keeps track of the characters that typeahead search is being called with. */\n private _query = signal('');\n\n /** The index where that the typeahead search was initiated from. */\n private _startIndex = signal<number | undefined>(undefined);\n\n constructor(readonly inputs: ListTypeaheadInputs<T> & {focusManager: ListFocus<T>}) {\n this.focusManager = inputs.focusManager;\n }\n\n /** Performs a typeahead search, appending the given character to the search string. */\n search(char: string): boolean {\n if (char.length !== 1) {\n return false;\n }\n\n if (!this.isTyping() && char === ' ') {\n return false;\n }\n\n if (this._startIndex() === undefined) {\n this._startIndex.set(this.focusManager.activeIndex());\n }\n\n clearTimeout(this.timeout);\n this._query.update(q => q + char.toLowerCase());\n const item = this._getItem();\n\n if (item) {\n this.focusManager.focus(item);\n }\n\n this.timeout = setTimeout(() => {\n this._query.set('');\n this._startIndex.set(undefined);\n }, this.inputs.typeaheadDelay());\n\n return true;\n }\n\n /**\n * Returns the first item whose search term matches the\n * current query starting from the the current anchor index.\n */\n private _getItem() {\n const items = this.focusManager.inputs.items();\n const itemCount = items.length;\n const startIndex = this._startIndex()!;\n\n for (let i = 0; i < itemCount; i++) {\n const index = (startIndex + 1 + i) % itemCount;\n const item = items[index];\n\n if (\n this.focusManager.isFocusable(item) &&\n item.searchTerm().toLowerCase().startsWith(this._query())\n ) {\n return item;\n }\n }\n\n return undefined;\n }\n}\n"],"names":["ListSelection","inputs","rangeStartIndex","signal","rangeEndIndex","selectedItems","computed","items","filter","item","value","includes","constructor","select","opts","anchor","focusManager","activeItem","disabled","selectable","isFocusable","multi","deselectAll","index","findIndex","i","beginRangeSelection","update","values","concat","deselect","toggle","toggleOne","selectOne","selectAll","find","v","toggleAll","selectableValues","map","every","length","selectRange","isStartOfRange","prevActiveIndex","itemsInRange","_getItemsFromIndex","itemsOutOfRange","pop","set","activeIndex","upper","Math","max","lower","min","push","reverse","ListTypeahead","timeout","isTyping","_query","_startIndex","undefined","search","char","clearTimeout","q","toLowerCase","_getItem","focus","setTimeout","typeaheadDelay","itemCount","startIndex","searchTerm","startsWith"],"mappings":";;MAiCaA,aAAa,CAAA;EAYHC,MAAA;AAVrBC,EAAAA,eAAe,GAAGC,MAAM,CAAS,CAAC,CAAC;AAGnCC,EAAAA,aAAa,GAAGD,MAAM,CAAS,CAAC,CAAC;AAGjCE,EAAAA,aAAa,GAAGC,QAAQ,CAAC,MACvB,IAAI,CAACL,MAAM,CAACM,KAAK,EAAE,CAACC,MAAM,CAACC,IAAI,IAAI,IAAI,CAACR,MAAM,CAACS,KAAK,EAAE,CAACC,QAAQ,CAACF,IAAI,CAACC,KAAK,EAAE,CAAC,CAAC,CAC/E;EAEDE,WAAAA,CAAqBX,MAAgE,EAAA;IAAhE,IAAA,CAAAA,MAAM,GAANA,MAAM;AAA6D,EAAA;AAGxFY,EAAAA,MAAMA,CAACJ,IAA2B,EAAEK,IAAI,GAAG;AAACC,IAAAA,MAAM,EAAE;AAAI,GAAC,EAAA;AACvDN,IAAAA,IAAI,GAAGA,IAAI,IAAK,IAAI,CAACR,MAAM,CAACe,YAAY,CAACf,MAAM,CAACgB,UAAU,EAA2B;IAErF,IACE,CAACR,IAAI,IACLA,IAAI,CAACS,QAAQ,EAAE,IACf,CAACT,IAAI,CAACU,UAAU,EAAE,IAClB,CAAC,IAAI,CAAClB,MAAM,CAACe,YAAY,CAACI,WAAW,CAACX,IAAS,CAAC,IAChD,IAAI,CAACR,MAAM,CAACS,KAAK,EAAE,CAACC,QAAQ,CAACF,IAAI,CAACC,KAAK,EAAE,CAAC,EAC1C;AACA,MAAA;AACF,IAAA;IAEA,IAAI,CAAC,IAAI,CAACT,MAAM,CAACoB,KAAK,EAAE,EAAE;MACxB,IAAI,CAACC,WAAW,EAAE;AACpB,IAAA;AAEA,IAAA,MAAMC,KAAK,GAAG,IAAI,CAACtB,MAAM,CAACM,KAAK,EAAE,CAACiB,SAAS,CAACC,CAAC,IAAIA,CAAC,KAAKhB,IAAI,CAAC;IAC5D,IAAIK,IAAI,CAACC,MAAM,EAAE;AACf,MAAA,IAAI,CAACW,mBAAmB,CAACH,KAAK,CAAC;AACjC,IAAA;AACA,IAAA,IAAI,CAACtB,MAAM,CAACS,KAAK,CAACiB,MAAM,CAACC,MAAM,IAAIA,MAAM,CAACC,MAAM,CAACpB,IAAI,CAACC,KAAK,EAAE,CAAC,CAAC;AACjE,EAAA;EAGAoB,QAAQA,CAACrB,IAA2B,EAAA;AAClCA,IAAAA,IAAI,GAAGA,IAAI,IAAI,IAAI,CAACR,MAAM,CAACe,YAAY,CAACf,MAAM,CAACgB,UAAU,EAAE;AAE3D,IAAA,IAAIR,IAAI,IAAI,CAACA,IAAI,CAACS,QAAQ,EAAE,IAAIT,IAAI,CAACU,UAAU,EAAE,EAAE;MACjD,IAAI,CAAClB,MAAM,CAACS,KAAK,CAACiB,MAAM,CAACC,MAAM,IAAIA,MAAM,CAACpB,MAAM,CAACE,KAAK,IAAIA,KAAK,KAAKD,IAAI,CAACC,KAAK,EAAE,CAAC,CAAC;AACpF,IAAA;AACF,EAAA;EAGAqB,MAAMA,CAACtB,IAA2B,EAAA;AAChCA,IAAAA,IAAI,GAAGA,IAAI,IAAI,IAAI,CAACR,MAAM,CAACe,YAAY,CAACf,MAAM,CAACgB,UAAU,EAAE;AAC3D,IAAA,IAAIR,IAAI,EAAE;AACR,MAAA,IAAI,CAACR,MAAM,CAACS,KAAK,EAAE,CAACC,QAAQ,CAACF,IAAI,CAACC,KAAK,EAAE,CAAC,GAAG,IAAI,CAACoB,QAAQ,CAACrB,IAAI,CAAC,GAAG,IAAI,CAACI,MAAM,CAACJ,IAAI,CAAC;AACtF,IAAA;AACF,EAAA;AAGAuB,EAAAA,SAASA,GAAA;AACP,IAAA,MAAMvB,IAAI,GAAG,IAAI,CAACR,MAAM,CAACe,YAAY,CAACf,MAAM,CAACgB,UAAU,EAAE;AACzD,IAAA,IAAIR,IAAI,EAAE;MACR,IAAI,CAACR,MAAM,CAACS,KAAK,EAAE,CAACC,QAAQ,CAACF,IAAI,CAACC,KAAK,EAAE,CAAC,GAAG,IAAI,CAACoB,QAAQ,EAAE,GAAG,IAAI,CAACG,SAAS,EAAE;AACjF,IAAA;AACF,EAAA;AAGAC,EAAAA,SAASA,GAAA;IACP,IAAI,CAAC,IAAI,CAACjC,MAAM,CAACoB,KAAK,EAAE,EAAE;AACxB,MAAA;AACF,IAAA;IAEA,KAAK,MAAMZ,IAAI,IAAI,IAAI,CAACR,MAAM,CAACM,KAAK,EAAE,EAAE;AACtC,MAAA,IAAI,CAACM,MAAM,CAACJ,IAAI,EAAE;AAACM,QAAAA,MAAM,EAAE;AAAK,OAAC,CAAC;AACpC,IAAA;IAEA,IAAI,CAACW,mBAAmB,EAAE;AAC5B,EAAA;AAGAJ,EAAAA,WAAWA,GAAA;IAcT,KAAK,MAAMZ,KAAK,IAAI,IAAI,CAACT,MAAM,CAACS,KAAK,EAAE,EAAE;MACvC,MAAMD,IAAI,GAAG,IAAI,CAACR,MAAM,CAACM,KAAK,EAAE,CAAC4B,IAAI,CAACV,CAAC,IAAIA,CAAC,CAACf,KAAK,EAAE,KAAKA,KAAK,CAAC;AAE/DD,MAAAA,IAAA,GACI,IAAI,CAACqB,QAAQ,CAACrB,IAAI,CAAA,GAClB,IAAI,CAACR,MAAM,CAACS,KAAK,CAACiB,MAAM,CAACC,MAAM,IAAIA,MAAM,CAACpB,MAAM,CAAC4B,CAAC,IAAIA,CAAC,KAAK1B,KAAK,CAAC,CAAC;AACzE,IAAA;AACF,EAAA;AAMA2B,EAAAA,SAASA,GAAA;IACP,MAAMC,gBAAgB,GAAG,IAAI,CAACrC,MAAA,CAC3BM,KAAK,EAAA,CACLC,MAAM,CAACiB,CAAC,IAAI,CAACA,CAAC,CAACP,QAAQ,EAAE,IAAIO,CAAC,CAACN,UAAU,EAAE,IAAI,IAAI,CAAClB,MAAM,CAACe,YAAY,CAACI,WAAW,CAACK,CAAC,CAAC,CAAA,CACtFc,GAAG,CAACd,CAAC,IAAIA,CAAC,CAACf,KAAK,EAAE,CAAC;AAEtB4B,IAAAA,gBAAgB,CAACE,KAAK,CAACf,CAAC,IAAI,IAAI,CAACxB,MAAM,CAACS,KAAK,EAAE,CAACC,QAAQ,CAACc,CAAC,CAAC,CAAA,GACvD,IAAI,CAACH,WAAW,EAAA,GAChB,IAAI,CAACY,SAAS,EAAE;AACtB,EAAA;AAGAD,EAAAA,SAASA,GAAA;AACP,IAAA,MAAMxB,IAAI,GAAG,IAAI,CAACR,MAAM,CAACe,YAAY,CAACf,MAAM,CAACgB,UAAU,EAAE;AACzD,IAAA,IAAIR,IAAI,KAAKA,IAAI,CAACS,QAAQ,EAAE,IAAI,CAACT,IAAI,CAACU,UAAU,EAAE,CAAC,EAAE;AACnD,MAAA;AACF,IAAA;IAEA,IAAI,CAACG,WAAW,EAAE;IAElB,IAAI,IAAI,CAACrB,MAAM,CAACS,KAAK,EAAE,CAAC+B,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAACxC,MAAM,CAACoB,KAAK,EAAE,EAAE;AAC1D,MAAA;AACF,IAAA;IAEA,IAAI,CAACR,MAAM,EAAE;AACf,EAAA;EAQA6B,WAAWA,CAAC5B,IAAI,GAAG;AAACC,IAAAA,MAAM,EAAE;AAAI,GAAC,EAAA;AAC/B,IAAA,MAAM4B,cAAc,GAAG,IAAI,CAAC1C,MAAM,CAACe,YAAY,CAAC4B,eAAe,EAAE,KAAK,IAAI,CAAC1C,eAAe,EAAE;AAE5F,IAAA,IAAIyC,cAAc,IAAI7B,IAAI,CAACC,MAAM,EAAE;AACjC,MAAA,IAAI,CAACW,mBAAmB,CAAC,IAAI,CAACzB,MAAM,CAACe,YAAY,CAAC4B,eAAe,EAAE,CAAC;AACtE,IAAA;IAEA,MAAMC,YAAY,GAAG,IAAI,CAACC,kBAAkB,CAAC,IAAI,CAAC5C,eAAe,EAAE,CAAC;IACpE,MAAM6C,eAAe,GAAG,IAAI,CAACD,kBAAkB,CAAC,IAAI,CAAC1C,aAAa,EAAE,CAAC,CAACI,MAAM,CAC1EiB,CAAC,IAAI,CAACoB,YAAY,CAAClC,QAAQ,CAACc,CAAC,CAAC,CAC/B;AAED,IAAA,KAAK,MAAMhB,IAAI,IAAIsC,eAAe,EAAE;AAClC,MAAA,IAAI,CAACjB,QAAQ,CAACrB,IAAI,CAAC;AACrB,IAAA;AAEA,IAAA,KAAK,MAAMA,IAAI,IAAIoC,YAAY,EAAE;AAC/B,MAAA,IAAI,CAAChC,MAAM,CAACJ,IAAI,EAAE;AAACM,QAAAA,MAAM,EAAE;AAAK,OAAC,CAAC;AACpC,IAAA;IAEA,IAAI8B,YAAY,CAACJ,MAAM,EAAE;AACvB,MAAA,MAAMhC,IAAI,GAAGoC,YAAY,CAACG,GAAG,EAAE;AAC/B,MAAA,MAAMzB,KAAK,GAAG,IAAI,CAACtB,MAAM,CAACM,KAAK,EAAE,CAACiB,SAAS,CAACC,CAAC,IAAIA,CAAC,KAAKhB,IAAI,CAAC;AAC5D,MAAA,IAAI,CAACL,aAAa,CAAC6C,GAAG,CAAC1B,KAAK,CAAC;AAC/B,IAAA;AACF,EAAA;AAGAG,EAAAA,mBAAmBA,CAACH,QAAgB,IAAI,CAACtB,MAAM,CAACe,YAAY,CAACkC,WAAW,EAAE,EAAA;AACxE,IAAA,IAAI,CAAChD,eAAe,CAAC+C,GAAG,CAAC1B,KAAK,CAAC;AAC/B,IAAA,IAAI,CAACnB,aAAa,CAAC6C,GAAG,CAAC1B,KAAK,CAAC;AAC/B,EAAA;EAGQuB,kBAAkBA,CAACvB,KAAa,EAAA;AACtC,IAAA,IAAIA,KAAK,KAAK,EAAE,EAAE;AAChB,MAAA,OAAO,EAAE;AACX,IAAA;AAEA,IAAA,MAAM4B,KAAK,GAAGC,IAAI,CAACC,GAAG,CAAC,IAAI,CAACpD,MAAM,CAACe,YAAY,CAACkC,WAAW,EAAE,EAAE3B,KAAK,CAAC;AACrE,IAAA,MAAM+B,KAAK,GAAGF,IAAI,CAACG,GAAG,CAAC,IAAI,CAACtD,MAAM,CAACe,YAAY,CAACkC,WAAW,EAAE,EAAE3B,KAAK,CAAC;IAErE,MAAMhB,KAAK,GAAG,EAAE;IAChB,KAAK,IAAIkB,CAAC,GAAG6B,KAAK,EAAE7B,CAAC,IAAI0B,KAAK,EAAE1B,CAAC,EAAE,EAAE;AACnClB,MAAAA,KAAK,CAACiD,IAAI,CAAC,IAAI,CAACvD,MAAM,CAACM,KAAK,EAAE,CAACkB,CAAC,CAAC,CAAC;AACpC,IAAA;IAEA,IAAI,IAAI,CAACxB,MAAM,CAACe,YAAY,CAACkC,WAAW,EAAE,GAAG3B,KAAK,EAAE;AAClD,MAAA,OAAOhB,KAAK,CAACkD,OAAO,EAAE;AACxB,IAAA;AAEA,IAAA,OAAOlD,KAAK;AACd,EAAA;AACD;;MClMYmD,aAAa,CAAA;EAgBHzD,MAAA;EAdrB0D,OAAO;EAGP3C,YAAY;AAGZ4C,EAAAA,QAAQ,GAAGtD,QAAQ,CAAC,MAAM,IAAI,CAACuD,MAAM,EAAE,CAACpB,MAAM,GAAG,CAAC,CAAC;AAG3CoB,EAAAA,MAAM,GAAG1D,MAAM,CAAC,EAAE,CAAC;AAGnB2D,EAAAA,WAAW,GAAG3D,MAAM,CAAqB4D,SAAS,CAAC;EAE3DnD,WAAAA,CAAqBX,MAA6D,EAAA;IAA7D,IAAA,CAAAA,MAAM,GAANA,MAAM;AACzB,IAAA,IAAI,CAACe,YAAY,GAAGf,MAAM,CAACe,YAAY;AACzC,EAAA;EAGAgD,MAAMA,CAACC,IAAY,EAAA;AACjB,IAAA,IAAIA,IAAI,CAACxB,MAAM,KAAK,CAAC,EAAE;AACrB,MAAA,OAAO,KAAK;AACd,IAAA;IAEA,IAAI,CAAC,IAAI,CAACmB,QAAQ,EAAE,IAAIK,IAAI,KAAK,GAAG,EAAE;AACpC,MAAA,OAAO,KAAK;AACd,IAAA;AAEA,IAAA,IAAI,IAAI,CAACH,WAAW,EAAE,KAAKC,SAAS,EAAE;AACpC,MAAA,IAAI,CAACD,WAAW,CAACb,GAAG,CAAC,IAAI,CAACjC,YAAY,CAACkC,WAAW,EAAE,CAAC;AACvD,IAAA;AAEAgB,IAAAA,YAAY,CAAC,IAAI,CAACP,OAAO,CAAC;AAC1B,IAAA,IAAI,CAACE,MAAM,CAAClC,MAAM,CAACwC,CAAC,IAAIA,CAAC,GAAGF,IAAI,CAACG,WAAW,EAAE,CAAC;AAC/C,IAAA,MAAM3D,IAAI,GAAG,IAAI,CAAC4D,QAAQ,EAAE;AAE5B,IAAA,IAAI5D,IAAI,EAAE;AACR,MAAA,IAAI,CAACO,YAAY,CAACsD,KAAK,CAAC7D,IAAI,CAAC;AAC/B,IAAA;AAEA,IAAA,IAAI,CAACkD,OAAO,GAAGY,UAAU,CAAC,MAAK;AAC7B,MAAA,IAAI,CAACV,MAAM,CAACZ,GAAG,CAAC,EAAE,CAAC;AACnB,MAAA,IAAI,CAACa,WAAW,CAACb,GAAG,CAACc,SAAS,CAAC;IACjC,CAAC,EAAE,IAAI,CAAC9D,MAAM,CAACuE,cAAc,EAAE,CAAC;AAEhC,IAAA,OAAO,IAAI;AACb,EAAA;AAMQH,EAAAA,QAAQA,GAAA;IACd,MAAM9D,KAAK,GAAG,IAAI,CAACS,YAAY,CAACf,MAAM,CAACM,KAAK,EAAE;AAC9C,IAAA,MAAMkE,SAAS,GAAGlE,KAAK,CAACkC,MAAM;AAC9B,IAAA,MAAMiC,UAAU,GAAG,IAAI,CAACZ,WAAW,EAAG;IAEtC,KAAK,IAAIrC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGgD,SAAS,EAAEhD,CAAC,EAAE,EAAE;MAClC,MAAMF,KAAK,GAAG,CAACmD,UAAU,GAAG,CAAC,GAAGjD,CAAC,IAAIgD,SAAS;AAC9C,MAAA,MAAMhE,IAAI,GAAGF,KAAK,CAACgB,KAAK,CAAC;MAEzB,IACE,IAAI,CAACP,YAAY,CAACI,WAAW,CAACX,IAAI,CAAC,IACnCA,IAAI,CAACkE,UAAU,EAAE,CAACP,WAAW,EAAE,CAACQ,UAAU,CAAC,IAAI,CAACf,MAAM,EAAE,CAAC,EACzD;AACA,QAAA,OAAOpD,IAAI;AACb,MAAA;AACF,IAAA;AAEA,IAAA,OAAOsD,SAAS;AAClB,EAAA;AACD;;;;"}
|
package/fesm2022/_menu-chunk.mjs
CHANGED
|
@@ -9,7 +9,7 @@ class MenuPattern {
|
|
|
9
9
|
visible = computed(() => this.inputs.parent() ? !!this.inputs.parent()?.expanded() : true);
|
|
10
10
|
listBehavior;
|
|
11
11
|
isFocused = signal(false);
|
|
12
|
-
|
|
12
|
+
hasBeenInteracted = signal(false);
|
|
13
13
|
hasBeenHovered = signal(false);
|
|
14
14
|
_openTimeout;
|
|
15
15
|
_closeTimeout;
|
|
@@ -58,17 +58,27 @@ class MenuPattern {
|
|
|
58
58
|
this.id = inputs.id;
|
|
59
59
|
this.listBehavior = new List({
|
|
60
60
|
...inputs,
|
|
61
|
-
|
|
61
|
+
value: signal([])
|
|
62
62
|
});
|
|
63
63
|
}
|
|
64
64
|
setDefaultState() {
|
|
65
65
|
if (!this.inputs.parent()) {
|
|
66
|
-
this.listBehavior.
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
const firstFocusable = this.listBehavior.navigationBehavior.peekFirst();
|
|
67
|
+
if (firstFocusable) {
|
|
68
|
+
this.listBehavior.goto(firstFocusable, {
|
|
69
|
+
focusElement: false
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
setDefaultStateEffect() {
|
|
75
|
+
if (this.hasBeenInteracted() || this.hasBeenHovered()) return;
|
|
76
|
+
if (this.inputs.items().length > 0) {
|
|
77
|
+
this.setDefaultState();
|
|
69
78
|
}
|
|
70
79
|
}
|
|
71
80
|
onKeydown(event) {
|
|
81
|
+
this.hasBeenInteracted.set(true);
|
|
72
82
|
this.keydownManager().handle(event);
|
|
73
83
|
}
|
|
74
84
|
onMouseOver(event) {
|
|
@@ -148,7 +158,7 @@ class MenuPattern {
|
|
|
148
158
|
}
|
|
149
159
|
onFocusIn() {
|
|
150
160
|
this.isFocused.set(true);
|
|
151
|
-
this.
|
|
161
|
+
this.hasBeenInteracted.set(true);
|
|
152
162
|
}
|
|
153
163
|
onFocusOut(event) {
|
|
154
164
|
const parent = this.inputs.parent();
|
|
@@ -285,7 +295,7 @@ class MenuBarPattern {
|
|
|
285
295
|
dynamicSpaceKey = computed(() => this.listBehavior.isTyping() ? '' : ' ');
|
|
286
296
|
typeaheadRegexp = /^.$/;
|
|
287
297
|
isFocused = signal(false);
|
|
288
|
-
|
|
298
|
+
hasBeenInteracted = signal(false);
|
|
289
299
|
disabled = () => this.inputs.disabled();
|
|
290
300
|
keydownManager = computed(() => {
|
|
291
301
|
return new KeyboardEventManager().on(this._nextKey, () => this.next(), {
|
|
@@ -307,9 +317,19 @@ class MenuBarPattern {
|
|
|
307
317
|
this.listBehavior = new List(inputs);
|
|
308
318
|
}
|
|
309
319
|
setDefaultState() {
|
|
310
|
-
this.
|
|
320
|
+
const firstFocusable = this.listBehavior.navigationBehavior.peekFirst();
|
|
321
|
+
if (firstFocusable) {
|
|
322
|
+
this.inputs.activeItem.set(firstFocusable);
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
setDefaultStateEffect() {
|
|
326
|
+
if (this.hasBeenInteracted()) return;
|
|
327
|
+
if (this.inputs.items().length > 0) {
|
|
328
|
+
this.setDefaultState();
|
|
329
|
+
}
|
|
311
330
|
}
|
|
312
331
|
onKeydown(event) {
|
|
332
|
+
this.hasBeenInteracted.set(true);
|
|
313
333
|
this.keydownManager().handle(event);
|
|
314
334
|
}
|
|
315
335
|
onClick(event) {
|
|
@@ -330,7 +350,7 @@ class MenuBarPattern {
|
|
|
330
350
|
}
|
|
331
351
|
onFocusIn() {
|
|
332
352
|
this.isFocused.set(true);
|
|
333
|
-
this.
|
|
353
|
+
this.hasBeenInteracted.set(true);
|
|
334
354
|
}
|
|
335
355
|
onFocusOut(event) {
|
|
336
356
|
const relatedTarget = event.relatedTarget;
|
|
@@ -382,7 +402,7 @@ class MenuBarPattern {
|
|
|
382
402
|
class MenuTriggerPattern {
|
|
383
403
|
inputs;
|
|
384
404
|
expanded = signal(false);
|
|
385
|
-
|
|
405
|
+
hasBeenInteracted = signal(false);
|
|
386
406
|
role = () => 'button';
|
|
387
407
|
hasPopup = () => true;
|
|
388
408
|
menu;
|
|
@@ -407,6 +427,7 @@ class MenuTriggerPattern {
|
|
|
407
427
|
}
|
|
408
428
|
onKeydown(event) {
|
|
409
429
|
if (!this.inputs.disabled()) {
|
|
430
|
+
this.hasBeenInteracted.set(true);
|
|
410
431
|
this.keydownManager().handle(event);
|
|
411
432
|
}
|
|
412
433
|
}
|
|
@@ -418,7 +439,7 @@ class MenuTriggerPattern {
|
|
|
418
439
|
}
|
|
419
440
|
}
|
|
420
441
|
onFocusIn() {
|
|
421
|
-
this.
|
|
442
|
+
this.hasBeenInteracted.set(true);
|
|
422
443
|
}
|
|
423
444
|
onFocusOut(event) {
|
|
424
445
|
const element = this.inputs.element();
|
|
@@ -458,7 +479,7 @@ class MenuItemPattern {
|
|
|
458
479
|
searchTerm;
|
|
459
480
|
element;
|
|
460
481
|
active = computed(() => this.inputs.parent()?.inputs.activeItem() === this);
|
|
461
|
-
|
|
482
|
+
hasBeenInteracted = signal(false);
|
|
462
483
|
tabIndex = computed(() => {
|
|
463
484
|
if (this.submenu() && this.submenu()?.inputs.activeItem()) {
|
|
464
485
|
return -1;
|
|
@@ -512,7 +533,7 @@ class MenuItemPattern {
|
|
|
512
533
|
}
|
|
513
534
|
}
|
|
514
535
|
onFocusIn() {
|
|
515
|
-
this.
|
|
536
|
+
this.hasBeenInteracted.set(true);
|
|
516
537
|
}
|
|
517
538
|
}
|
|
518
539
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_menu-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/menu/menu.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {KeyboardEventManager} from '../behaviors/event-manager';\nimport {computed, signal, SignalLike} from '../behaviors/signal-like/signal-like';\nimport {List, ListInputs, ListItem} from '../behaviors/list/list';\n\n/** The inputs for the MenuBarPattern class. */\nexport interface MenuBarInputs<V> extends ListInputs<MenuItemPattern<V>, V> {\n /** The menu items contained in the menu. */\n items: SignalLike<MenuItemPattern<V>[]>;\n\n /** Callback function triggered when a menu item is selected. */\n itemSelected?: (value: V) => void;\n\n /** The text direction of the menu bar. */\n textDirection: SignalLike<'ltr' | 'rtl'>;\n}\n\n/** The inputs for the MenuPattern class. */\nexport interface MenuInputs<V> extends Omit<ListInputs<MenuItemPattern<V>, V>, 'values'> {\n /** The unique ID of the menu. */\n id: SignalLike<string>;\n\n /** The menu items contained in the menu. */\n items: SignalLike<MenuItemPattern<V>[]>;\n\n /** A reference to the parent menu or menu trigger. */\n parent: SignalLike<MenuTriggerPattern<V> | MenuItemPattern<V> | undefined>;\n\n /** Callback function triggered when a menu item is selected. */\n itemSelected?: (value: V) => void;\n\n /** The text direction of the menu bar. */\n textDirection: SignalLike<'ltr' | 'rtl'>;\n\n /** The delay in milliseconds before expanding sub-menus on hover. */\n expansionDelay: SignalLike<number>;\n}\n\n/** The inputs for the MenuTriggerPattern class. */\nexport interface MenuTriggerInputs<V> {\n /** A reference to the menu trigger element. */\n element: SignalLike<HTMLElement | undefined>;\n\n /** A reference to the menu associated with the trigger. */\n menu: SignalLike<MenuPattern<V> | undefined>;\n\n /** The text direction of the menu bar. */\n textDirection: SignalLike<'ltr' | 'rtl'>;\n\n /** Whether the menu trigger is disabled. */\n disabled: SignalLike<boolean>;\n}\n\n/** The inputs for the MenuItemPattern class. */\nexport interface MenuItemInputs<V> extends Omit<ListItem<V>, 'index' | 'selectable'> {\n /** A reference to the parent menu or menu trigger. */\n parent: SignalLike<MenuPattern<V> | MenuBarPattern<V> | undefined>;\n\n /** A reference to the submenu associated with the menu item. */\n submenu: SignalLike<MenuPattern<V> | undefined>;\n}\n\n/** The menu ui pattern class. */\nexport class MenuPattern<V> {\n /** The unique ID of the menu. */\n id: SignalLike<string>;\n\n /** The role of the menu. */\n role = () => 'menu';\n\n /** Whether the menu is disabled. */\n disabled = () => this.inputs.disabled();\n\n /** Whether the menu is visible. */\n visible = computed(() => (this.inputs.parent() ? !!this.inputs.parent()?.expanded() : true));\n\n /** Controls list behavior for the menu items. */\n listBehavior: List<MenuItemPattern<V>, V>;\n\n /** Whether the menu or any of its child elements are currently focused. */\n isFocused = signal(false);\n\n /** Whether the menu has received focus. */\n hasBeenFocused = signal(false);\n\n /** Whether the menu trigger has been hovered. */\n hasBeenHovered = signal(false);\n\n /** Timeout used to open sub-menus on hover. */\n _openTimeout: any;\n\n /** Timeout used to close sub-menus on hover out. */\n _closeTimeout: any;\n\n /** The tab index of the menu. */\n tabIndex = () => this.listBehavior.tabIndex();\n\n /** Whether the menu should be focused on mouse over. */\n shouldFocus = computed(() => {\n const root = this.root();\n\n if (root instanceof MenuTriggerPattern) {\n return true;\n }\n\n if (root instanceof MenuBarPattern || root instanceof MenuPattern) {\n return root.isFocused();\n }\n\n return false;\n });\n\n /** The key used to expand sub-menus. */\n private _expandKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowLeft' : 'ArrowRight';\n });\n\n /** The key used to collapse sub-menus. */\n private _collapseKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowRight' : 'ArrowLeft';\n });\n\n /** Represents the space key. Does nothing when the user is actively using typeahead. */\n dynamicSpaceKey = computed(() => (this.listBehavior.isTyping() ? '' : ' '));\n\n /** The regexp used to decide if a key should trigger typeahead. */\n typeaheadRegexp = /^.$/;\n\n /** The root of the menu. */\n root: SignalLike<MenuTriggerPattern<V> | MenuBarPattern<V> | MenuPattern<V> | undefined> =\n computed(() => {\n const parent = this.inputs.parent();\n\n if (!parent) {\n return this;\n }\n\n if (parent instanceof MenuTriggerPattern) {\n return parent;\n }\n\n const grandparent = parent.inputs.parent();\n\n if (grandparent instanceof MenuBarPattern) {\n return grandparent;\n }\n\n return grandparent?.root();\n });\n\n /** Handles keyboard events for the menu. */\n keydownManager = computed(() => {\n return new KeyboardEventManager()\n .on('ArrowDown', () => this.next(), {ignoreRepeat: false})\n .on('ArrowUp', () => this.prev(), {ignoreRepeat: false})\n .on('Home', () => this.first())\n .on('End', () => this.last())\n .on('Enter', () => this.trigger())\n .on('Escape', () => this.closeAll())\n .on(this._expandKey, () => this.expand())\n .on(this._collapseKey, () => this.collapse())\n .on(this.dynamicSpaceKey, () => this.trigger())\n .on(this.typeaheadRegexp, e => this.listBehavior.search(e.key));\n });\n\n constructor(readonly inputs: MenuInputs<V>) {\n this.id = inputs.id;\n this.listBehavior = new List<MenuItemPattern<V>, V>({\n ...inputs,\n values: signal([]),\n });\n }\n\n /** Sets the default state for the menu. */\n setDefaultState() {\n if (!this.inputs.parent()) {\n this.listBehavior.goto(this.inputs.items()[0], {focusElement: false});\n }\n }\n\n /** Handles keyboard events for the menu. */\n onKeydown(event: KeyboardEvent) {\n this.keydownManager().handle(event);\n }\n\n /** Handles mouseover events for the menu. */\n onMouseOver(event: MouseEvent) {\n if (!this.visible()) {\n return;\n }\n\n this.hasBeenHovered.set(true);\n const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node));\n\n if (!item) {\n return;\n }\n\n const parent = this.inputs.parent();\n const activeItem = this?.inputs.activeItem();\n\n if (parent instanceof MenuItemPattern) {\n const grandparent = parent.inputs.parent();\n if (grandparent instanceof MenuPattern) {\n grandparent._clearTimeouts();\n grandparent.listBehavior.goto(parent, {focusElement: false});\n }\n }\n\n if (activeItem && activeItem !== item) {\n this._closeItem(activeItem);\n }\n\n if (item.expanded()) {\n this._clearCloseTimeout();\n }\n\n this._openItem(item);\n this.listBehavior.goto(item, {focusElement: this.shouldFocus()});\n }\n\n /** Closes the specified menu item after a delay. */\n private _closeItem(item: MenuItemPattern<V>) {\n this._clearOpenTimeout();\n\n if (!this._closeTimeout) {\n this._closeTimeout = setTimeout(() => {\n item.close();\n this._closeTimeout = undefined;\n }, this.inputs.expansionDelay());\n }\n }\n\n /** Opens the specified menu item after a delay. */\n private _openItem(item: MenuItemPattern<V>) {\n this._clearOpenTimeout();\n\n this._openTimeout = setTimeout(() => {\n item.open();\n this._openTimeout = undefined;\n }, this.inputs.expansionDelay());\n }\n\n /** Handles mouseout events for the menu. */\n onMouseOut(event: MouseEvent) {\n this._clearOpenTimeout();\n\n if (this.isFocused()) {\n return;\n }\n\n const root = this.root();\n const parent = this.inputs.parent();\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (!root || !parent || parent instanceof MenuTriggerPattern) {\n return;\n }\n\n const grandparent = parent.inputs.parent();\n\n if (!grandparent || grandparent instanceof MenuBarPattern) {\n return;\n }\n\n if (!grandparent.inputs.element()?.contains(relatedTarget)) {\n parent.close();\n }\n }\n\n /** Handles click events for the menu. */\n onClick(event: MouseEvent) {\n const relatedTarget = event.target as Node | null;\n const item = this.inputs.items().find(i => i.element()?.contains(relatedTarget));\n\n if (item) {\n item.open();\n this.listBehavior.goto(item);\n this.submit(item);\n }\n }\n\n /** Handles focusin events for the menu. */\n onFocusIn() {\n this.isFocused.set(true);\n this.hasBeenFocused.set(true);\n }\n\n /** Handles the focusout event for the menu. */\n onFocusOut(event: FocusEvent) {\n const parent = this.inputs.parent();\n const parentEl = parent?.inputs.element();\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (!relatedTarget) {\n this.isFocused.set(false);\n this.inputs.parent()?.close({refocus: true});\n }\n\n if (parent instanceof MenuItemPattern) {\n const grandparent = parent.inputs.parent();\n const siblings = grandparent?.inputs.items().filter(i => i !== parent);\n const item = siblings?.find(i => i.element()?.contains(relatedTarget));\n\n if (item) {\n return;\n }\n }\n\n if (\n this.visible() &&\n !parentEl?.contains(relatedTarget) &&\n !this.inputs.element()?.contains(relatedTarget)\n ) {\n this.isFocused.set(false);\n this.inputs.parent()?.close();\n }\n }\n\n /** Focuses the previous menu item. */\n prev() {\n this.inputs.activeItem()?.close();\n this.listBehavior.prev();\n }\n\n /** Focuses the next menu item. */\n next() {\n this.inputs.activeItem()?.close();\n this.listBehavior.next();\n }\n\n /** Focuses the first menu item. */\n first() {\n this.inputs.activeItem()?.close();\n this.listBehavior.first();\n }\n\n /** Focuses the last menu item. */\n last() {\n this.inputs.activeItem()?.close();\n this.listBehavior.last();\n }\n\n /** Triggers the active menu item. */\n trigger() {\n this.inputs.activeItem()?.hasPopup()\n ? this.inputs.activeItem()?.open({first: true})\n : this.submit();\n }\n\n /** Submits the menu. */\n submit(item = this.inputs.activeItem()) {\n if (!item || item.disabled() || item.submenu()) {\n return;\n }\n\n const root = this.root();\n\n if (root instanceof MenuTriggerPattern) {\n root.close({refocus: true});\n root?.inputs.menu()?.inputs.itemSelected?.(item.value());\n } else if (root instanceof MenuBarPattern) {\n root.close();\n root?.inputs.itemSelected?.(item.value());\n } else if (root instanceof MenuPattern) {\n root.inputs.activeItem()?.close({refocus: true});\n root?.inputs.itemSelected?.(item.value());\n }\n }\n\n /** Collapses the current menu or focuses the previous item in the menubar. */\n collapse() {\n const root = this.root();\n const parent = this.inputs.parent();\n\n if (parent instanceof MenuItemPattern && !(parent.inputs.parent() instanceof MenuBarPattern)) {\n parent.close({refocus: true});\n } else if (root instanceof MenuBarPattern) {\n root.prev();\n }\n }\n\n /** Expands the current menu or focuses the next item in the menubar. */\n expand() {\n const root = this.root();\n const activeItem = this.inputs.activeItem();\n\n if (activeItem?.submenu()) {\n activeItem.open({first: true});\n } else if (root instanceof MenuBarPattern) {\n root.next();\n }\n }\n\n /** Closes the menu. */\n close() {\n this.inputs.parent()?.close();\n }\n\n /** Closes the menu and all parent menus. */\n closeAll() {\n const root = this.root();\n\n if (root instanceof MenuTriggerPattern) {\n root.close({refocus: true});\n }\n\n if (root instanceof MenuBarPattern) {\n root.close();\n }\n\n if (root instanceof MenuPattern) {\n root.inputs.activeItem()?.close({refocus: true});\n }\n }\n\n /** Clears any open or close timeouts for sub-menus. */\n _clearTimeouts() {\n this._clearOpenTimeout();\n this._clearCloseTimeout();\n }\n\n /** Clears the open timeout. */\n _clearOpenTimeout() {\n if (this._openTimeout) {\n clearTimeout(this._openTimeout);\n this._openTimeout = undefined;\n }\n }\n\n /** Clears the close timeout. */\n _clearCloseTimeout() {\n if (this._closeTimeout) {\n clearTimeout(this._closeTimeout);\n this._closeTimeout = undefined;\n }\n }\n}\n\n/** The menubar ui pattern class. */\nexport class MenuBarPattern<V> {\n /** Controls list behavior for the menu items. */\n listBehavior: List<MenuItemPattern<V>, V>;\n\n /** The tab index of the menu. */\n tabIndex = () => this.listBehavior.tabIndex();\n\n /** The key used to navigate to the next item. */\n private _nextKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowLeft' : 'ArrowRight';\n });\n\n /** The key used to navigate to the previous item. */\n private _previousKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowRight' : 'ArrowLeft';\n });\n\n /** Represents the space key. Does nothing when the user is actively using typeahead. */\n dynamicSpaceKey = computed(() => (this.listBehavior.isTyping() ? '' : ' '));\n\n /** The regexp used to decide if a key should trigger typeahead. */\n typeaheadRegexp = /^.$/;\n\n /** Whether the menubar or any of its children are currently focused. */\n isFocused = signal(false);\n\n /** Whether the menubar has been focused. */\n hasBeenFocused = signal(false);\n\n /** Whether the menubar is disabled. */\n disabled = () => this.inputs.disabled();\n\n /** Handles keyboard events for the menu. */\n keydownManager = computed(() => {\n return new KeyboardEventManager()\n .on(this._nextKey, () => this.next(), {ignoreRepeat: false})\n .on(this._previousKey, () => this.prev(), {ignoreRepeat: false})\n .on('End', () => this.listBehavior.last())\n .on('Home', () => this.listBehavior.first())\n .on('Enter', () => this.inputs.activeItem()?.open({first: true}))\n .on('ArrowUp', () => this.inputs.activeItem()?.open({last: true}))\n .on('ArrowDown', () => this.inputs.activeItem()?.open({first: true}))\n .on(this.dynamicSpaceKey, () => this.inputs.activeItem()?.open({first: true}))\n .on(this.typeaheadRegexp, e => this.listBehavior.search(e.key));\n });\n\n constructor(readonly inputs: MenuBarInputs<V>) {\n this.listBehavior = new List<MenuItemPattern<V>, V>(inputs);\n }\n\n /** Sets the default state for the menubar. */\n setDefaultState() {\n this.inputs.activeItem.set(this.inputs.items()[0]);\n }\n\n /** Handles keyboard events for the menu. */\n onKeydown(event: KeyboardEvent) {\n this.keydownManager().handle(event);\n }\n\n /** Handles click events for the menu bar. */\n onClick(event: MouseEvent) {\n const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node));\n\n if (!item) {\n return;\n }\n\n this.goto(item);\n item.expanded() ? item.close() : item.open();\n }\n\n /** Handles mouseover events for the menu bar. */\n onMouseOver(event: MouseEvent) {\n const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node));\n\n if (item) {\n this.goto(item, {focusElement: this.isFocused()});\n }\n }\n\n /** Handles focusin events for the menu bar. */\n onFocusIn() {\n this.isFocused.set(true);\n this.hasBeenFocused.set(true);\n }\n\n /** Handles focusout events for the menu bar. */\n onFocusOut(event: FocusEvent) {\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (!this.inputs.element()?.contains(relatedTarget)) {\n this.isFocused.set(false);\n this.close();\n }\n }\n\n /** Goes to and optionally focuses the specified menu item. */\n goto(item: MenuItemPattern<V>, opts?: {focusElement?: boolean}) {\n const prevItem = this.inputs.activeItem();\n this.listBehavior.goto(item, opts);\n\n if (prevItem?.expanded()) {\n prevItem?.close();\n this.inputs.activeItem()?.open();\n }\n\n if (item === prevItem) {\n if (item.expanded() && item.submenu()?.inputs.activeItem()) {\n item.submenu()?.inputs.activeItem()?.close();\n item.submenu()?.listBehavior.unfocus();\n }\n }\n }\n\n /** Focuses the next menu item. */\n next() {\n const prevItem = this.inputs.activeItem();\n this.listBehavior.next();\n\n if (prevItem?.expanded()) {\n prevItem?.close();\n this.inputs.activeItem()?.open({first: true});\n }\n }\n\n /** Focuses the previous menu item. */\n prev() {\n const prevItem = this.inputs.activeItem();\n this.listBehavior.prev();\n\n if (prevItem?.expanded()) {\n prevItem?.close();\n this.inputs.activeItem()?.open({first: true});\n }\n }\n\n /** Closes the menubar and refocuses the root menu bar item. */\n close() {\n this.inputs.activeItem()?.close({refocus: this.isFocused()});\n }\n}\n\n/** The menu trigger ui pattern class. */\nexport class MenuTriggerPattern<V> {\n /** Whether the menu is expanded. */\n expanded = signal(false);\n\n /** Whether the menu trigger has received focus. */\n hasBeenFocused = signal(false);\n\n /** The role of the menu trigger. */\n role = () => 'button';\n\n /** Whether the menu trigger has a popup. */\n hasPopup = () => true;\n\n /** The menu associated with the trigger. */\n menu: SignalLike<MenuPattern<V> | undefined>;\n\n /** The tab index of the menu trigger. */\n tabIndex = computed(() => (this.expanded() && this.menu()?.inputs.activeItem() ? -1 : 0));\n\n /** Whether the menu trigger is disabled. */\n disabled = () => this.inputs.disabled();\n\n /** Handles keyboard events for the menu trigger. */\n keydownManager = computed(() => {\n return new KeyboardEventManager()\n .on(' ', () => this.open({first: true}))\n .on('Enter', () => this.open({first: true}))\n .on('ArrowDown', () => this.open({first: true}))\n .on('ArrowUp', () => this.open({last: true}))\n .on('Escape', () => this.close({refocus: true}));\n });\n\n constructor(readonly inputs: MenuTriggerInputs<V>) {\n this.menu = this.inputs.menu;\n }\n\n /** Handles keyboard events for the menu trigger. */\n onKeydown(event: KeyboardEvent) {\n if (!this.inputs.disabled()) {\n this.keydownManager().handle(event);\n }\n }\n\n /** Handles click events for the menu trigger. */\n onClick() {\n if (!this.inputs.disabled()) {\n this.expanded() ? this.close() : this.open({first: true});\n }\n }\n\n /** Handles focusin events for the menu trigger. */\n onFocusIn() {\n this.hasBeenFocused.set(true);\n }\n\n /** Handles focusout events for the menu trigger. */\n onFocusOut(event: FocusEvent) {\n const element = this.inputs.element();\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (\n this.expanded() &&\n !element?.contains(relatedTarget) &&\n !this.inputs.menu()?.inputs.element()?.contains(relatedTarget)\n ) {\n this.close();\n }\n }\n\n /** Opens the menu. */\n open(opts?: {first?: boolean; last?: boolean}) {\n this.expanded.set(true);\n\n if (opts?.first) {\n this.inputs.menu()?.first();\n } else if (opts?.last) {\n this.inputs.menu()?.last();\n }\n }\n\n /** Closes the menu. */\n close(opts: {refocus?: boolean} = {}) {\n this.expanded.set(false);\n this.menu()?.listBehavior.unfocus();\n\n if (opts.refocus) {\n this.inputs.element()?.focus();\n }\n\n let menuitems = this.inputs.menu()?.inputs.items() ?? [];\n\n while (menuitems.length) {\n const menuitem = menuitems.pop();\n menuitem?._expanded.set(false);\n menuitem?.inputs.parent()?.listBehavior.unfocus();\n menuitems = menuitems.concat(menuitem?.submenu()?.inputs.items() ?? []);\n }\n }\n}\n\n/** The menu item ui pattern class. */\nexport class MenuItemPattern<V> implements ListItem<V> {\n /** The value of the menu item. */\n value: SignalLike<V>;\n\n /** The unique ID of the menu item. */\n id: SignalLike<string>;\n\n /** Whether the menu item is disabled. */\n disabled = () => this.inputs.parent()?.disabled() || this.inputs.disabled();\n\n /** The search term for the menu item. */\n searchTerm: SignalLike<string>;\n\n /** The element of the menu item. */\n element: SignalLike<HTMLElement | undefined>;\n\n /** Whether the menu item is active. */\n active = computed(() => this.inputs.parent()?.inputs.activeItem() === this);\n\n /** Whether the menu item has received focus. */\n hasBeenFocused = signal(false);\n\n /** The tab index of the menu item. */\n tabIndex = computed(() => {\n if (this.submenu() && this.submenu()?.inputs.activeItem()) {\n return -1;\n }\n return this.inputs.parent()?.listBehavior.getItemTabindex(this) ?? -1;\n });\n\n /** The position of the menu item in the menu. */\n index = computed(() => this.inputs.parent()?.inputs.items().indexOf(this) ?? -1);\n\n /** Whether the menu item is expanded. */\n expanded = computed(() => (this.submenu() ? this._expanded() : null));\n\n /** Whether the menu item is expanded. */\n _expanded = signal(false);\n\n /** The ID of the menu that the menu item controls. */\n controls = signal<string | undefined>(undefined);\n\n /** The role of the menu item. */\n role = () => 'menuitem';\n\n /** Whether the menu item has a popup. */\n hasPopup = computed(() => !!this.submenu());\n\n /** The submenu associated with the menu item. */\n submenu: SignalLike<MenuPattern<V> | undefined>;\n\n /** Whether the menu item is selectable. */\n selectable: SignalLike<boolean>;\n\n constructor(readonly inputs: MenuItemInputs<V>) {\n this.id = inputs.id;\n this.value = inputs.value;\n this.element = inputs.element;\n this.submenu = this.inputs.submenu;\n this.searchTerm = inputs.searchTerm;\n this.selectable = computed(() => !this.submenu());\n }\n\n /** Opens the submenu. */\n open(opts?: {first?: boolean; last?: boolean}) {\n if (this.disabled()) {\n return;\n }\n\n this._expanded.set(true);\n\n if (opts?.first) {\n this.submenu()?.first();\n }\n if (opts?.last) {\n this.submenu()?.last();\n }\n }\n\n /** Closes the submenu. */\n close(opts: {refocus?: boolean} = {}) {\n this._expanded.set(false);\n\n if (opts.refocus) {\n this.inputs.parent()?.listBehavior.goto(this);\n }\n\n let menuitems = this.inputs.submenu()?.inputs.items() ?? [];\n\n while (menuitems.length) {\n const menuitem = menuitems.pop();\n menuitem?._expanded.set(false);\n menuitem?.inputs.parent()?.listBehavior.unfocus();\n menuitems = menuitems.concat(menuitem?.submenu()?.inputs.items() ?? []);\n\n const parent = menuitem?.inputs.parent();\n\n if (parent instanceof MenuPattern) {\n parent._clearTimeouts();\n }\n }\n }\n\n /** Handles focusin events for the menu item. */\n onFocusIn() {\n this.hasBeenFocused.set(true);\n }\n}\n"],"names":["MenuPattern","inputs","id","role","disabled","visible","computed","parent","expanded","listBehavior","isFocused","signal","hasBeenFocused","hasBeenHovered","_openTimeout","_closeTimeout","tabIndex","shouldFocus","root","MenuTriggerPattern","MenuBarPattern","_expandKey","textDirection","_collapseKey","dynamicSpaceKey","isTyping","typeaheadRegexp","grandparent","keydownManager","KeyboardEventManager","on","next","ignoreRepeat","prev","first","last","trigger","closeAll","expand","collapse","e","search","key","constructor","List","values","setDefaultState","goto","items","focusElement","onKeydown","event","handle","onMouseOver","set","item","find","i","element","contains","target","activeItem","MenuItemPattern","_clearTimeouts","_closeItem","_clearCloseTimeout","_openItem","_clearOpenTimeout","setTimeout","close","undefined","expansionDelay","open","onMouseOut","relatedTarget","onClick","submit","onFocusIn","onFocusOut","parentEl","refocus","siblings","filter","hasPopup","submenu","menu","itemSelected","value","clearTimeout","_nextKey","_previousKey","opts","prevItem","unfocus","focus","menuitems","length","menuitem","pop","_expanded","concat","searchTerm","active","getItemTabindex","index","indexOf","controls","selectable"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"_menu-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-fdfa778d11ba/bin/src/aria/private/menu/menu.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {KeyboardEventManager} from '../behaviors/event-manager';\nimport {computed, signal, SignalLike} from '../behaviors/signal-like/signal-like';\nimport {List, ListInputs, ListItem} from '../behaviors/list/list';\n\n/** The inputs for the MenuBarPattern class. */\nexport interface MenuBarInputs<V> extends ListInputs<MenuItemPattern<V>, V> {\n /** The menu items contained in the menu. */\n items: SignalLike<MenuItemPattern<V>[]>;\n\n /** Callback function triggered when a menu item is selected. */\n itemSelected?: (value: V) => void;\n\n /** The text direction of the menu bar. */\n textDirection: SignalLike<'ltr' | 'rtl'>;\n}\n\n/** The inputs for the MenuPattern class. */\nexport interface MenuInputs<V> extends Omit<ListInputs<MenuItemPattern<V>, V>, 'value'> {\n /** The unique ID of the menu. */\n id: SignalLike<string>;\n\n /** The menu items contained in the menu. */\n items: SignalLike<MenuItemPattern<V>[]>;\n\n /** A reference to the parent menu or menu trigger. */\n parent: SignalLike<MenuTriggerPattern<V> | MenuItemPattern<V> | undefined>;\n\n /** Callback function triggered when a menu item is selected. */\n itemSelected?: (value: V) => void;\n\n /** The text direction of the menu bar. */\n textDirection: SignalLike<'ltr' | 'rtl'>;\n\n /** The delay in milliseconds before expanding sub-menus on hover. */\n expansionDelay: SignalLike<number>;\n}\n\n/** The inputs for the MenuTriggerPattern class. */\nexport interface MenuTriggerInputs<V> {\n /** A reference to the menu trigger element. */\n element: SignalLike<HTMLElement | undefined>;\n\n /** A reference to the menu associated with the trigger. */\n menu: SignalLike<MenuPattern<V> | undefined>;\n\n /** The text direction of the menu bar. */\n textDirection: SignalLike<'ltr' | 'rtl'>;\n\n /** Whether the menu trigger is disabled. */\n disabled: SignalLike<boolean>;\n}\n\n/** The inputs for the MenuItemPattern class. */\nexport interface MenuItemInputs<V> extends Omit<ListItem<V>, 'index' | 'selectable'> {\n /** A reference to the parent menu or menu trigger. */\n parent: SignalLike<MenuPattern<V> | MenuBarPattern<V> | undefined>;\n\n /** A reference to the submenu associated with the menu item. */\n submenu: SignalLike<MenuPattern<V> | undefined>;\n}\n\n/** The menu ui pattern class. */\nexport class MenuPattern<V> {\n /** The unique ID of the menu. */\n id: SignalLike<string>;\n\n /** The role of the menu. */\n role = () => 'menu';\n\n /** Whether the menu is disabled. */\n disabled = () => this.inputs.disabled();\n\n /** Whether the menu is visible. */\n visible = computed(() => (this.inputs.parent() ? !!this.inputs.parent()?.expanded() : true));\n\n /** Controls list behavior for the menu items. */\n listBehavior: List<MenuItemPattern<V>, V>;\n\n /** Whether the menu or any of its child elements are currently focused. */\n isFocused = signal(false);\n\n /** Whether the menu has received interaction. */\n hasBeenInteracted = signal(false);\n\n /** Whether the menu trigger has been hovered. */\n hasBeenHovered = signal(false);\n\n /** Timeout used to open sub-menus on hover. */\n _openTimeout: any;\n\n /** Timeout used to close sub-menus on hover out. */\n _closeTimeout: any;\n\n /** The tab index of the menu. */\n tabIndex = () => this.listBehavior.tabIndex();\n\n /** Whether the menu should be focused on mouse over. */\n shouldFocus = computed(() => {\n const root = this.root();\n\n if (root instanceof MenuTriggerPattern) {\n return true;\n }\n\n if (root instanceof MenuBarPattern || root instanceof MenuPattern) {\n return root.isFocused();\n }\n\n return false;\n });\n\n /** The key used to expand sub-menus. */\n private _expandKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowLeft' : 'ArrowRight';\n });\n\n /** The key used to collapse sub-menus. */\n private _collapseKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowRight' : 'ArrowLeft';\n });\n\n /** Represents the space key. Does nothing when the user is actively using typeahead. */\n dynamicSpaceKey = computed(() => (this.listBehavior.isTyping() ? '' : ' '));\n\n /** The regexp used to decide if a key should trigger typeahead. */\n typeaheadRegexp = /^.$/;\n\n /** The root of the menu. */\n root: SignalLike<MenuTriggerPattern<V> | MenuBarPattern<V> | MenuPattern<V> | undefined> =\n computed(() => {\n const parent = this.inputs.parent();\n\n if (!parent) {\n return this;\n }\n\n if (parent instanceof MenuTriggerPattern) {\n return parent;\n }\n\n const grandparent = parent.inputs.parent();\n\n if (grandparent instanceof MenuBarPattern) {\n return grandparent;\n }\n\n return grandparent?.root();\n });\n\n /** Handles keyboard events for the menu. */\n keydownManager = computed(() => {\n return new KeyboardEventManager()\n .on('ArrowDown', () => this.next(), {ignoreRepeat: false})\n .on('ArrowUp', () => this.prev(), {ignoreRepeat: false})\n .on('Home', () => this.first())\n .on('End', () => this.last())\n .on('Enter', () => this.trigger())\n .on('Escape', () => this.closeAll())\n .on(this._expandKey, () => this.expand())\n .on(this._collapseKey, () => this.collapse())\n .on(this.dynamicSpaceKey, () => this.trigger())\n .on(this.typeaheadRegexp, e => this.listBehavior.search(e.key));\n });\n\n constructor(readonly inputs: MenuInputs<V>) {\n this.id = inputs.id;\n this.listBehavior = new List<MenuItemPattern<V>, V>({\n ...inputs,\n value: signal([]),\n });\n }\n\n /** Sets the default state for the menu. */\n setDefaultState() {\n if (!this.inputs.parent()) {\n const firstFocusable = this.listBehavior.navigationBehavior.peekFirst();\n if (firstFocusable) {\n this.listBehavior.goto(firstFocusable, {focusElement: false});\n }\n }\n }\n\n /** Sets the default active state of the menu before receiving interaction for the first time. */\n setDefaultStateEffect(): void {\n if (this.hasBeenInteracted() || this.hasBeenHovered()) return;\n\n if (this.inputs.items().length > 0) {\n this.setDefaultState();\n }\n }\n\n /** Handles keyboard events for the menu. */\n onKeydown(event: KeyboardEvent) {\n this.hasBeenInteracted.set(true);\n this.keydownManager().handle(event);\n }\n\n /** Handles mouseover events for the menu. */\n onMouseOver(event: MouseEvent) {\n if (!this.visible()) {\n return;\n }\n\n this.hasBeenHovered.set(true);\n const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node));\n\n if (!item) {\n return;\n }\n\n const parent = this.inputs.parent();\n const activeItem = this?.inputs.activeItem();\n\n if (parent instanceof MenuItemPattern) {\n const grandparent = parent.inputs.parent();\n if (grandparent instanceof MenuPattern) {\n grandparent._clearTimeouts();\n grandparent.listBehavior.goto(parent, {focusElement: false});\n }\n }\n\n if (activeItem && activeItem !== item) {\n this._closeItem(activeItem);\n }\n\n if (item.expanded()) {\n this._clearCloseTimeout();\n }\n\n this._openItem(item);\n this.listBehavior.goto(item, {focusElement: this.shouldFocus()});\n }\n\n /** Closes the specified menu item after a delay. */\n private _closeItem(item: MenuItemPattern<V>) {\n this._clearOpenTimeout();\n\n if (!this._closeTimeout) {\n this._closeTimeout = setTimeout(() => {\n item.close();\n this._closeTimeout = undefined;\n }, this.inputs.expansionDelay());\n }\n }\n\n /** Opens the specified menu item after a delay. */\n private _openItem(item: MenuItemPattern<V>) {\n this._clearOpenTimeout();\n\n this._openTimeout = setTimeout(() => {\n item.open();\n this._openTimeout = undefined;\n }, this.inputs.expansionDelay());\n }\n\n /** Handles mouseout events for the menu. */\n onMouseOut(event: MouseEvent) {\n this._clearOpenTimeout();\n\n if (this.isFocused()) {\n return;\n }\n\n const root = this.root();\n const parent = this.inputs.parent();\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (!root || !parent || parent instanceof MenuTriggerPattern) {\n return;\n }\n\n const grandparent = parent.inputs.parent();\n\n if (!grandparent || grandparent instanceof MenuBarPattern) {\n return;\n }\n\n if (!grandparent.inputs.element()?.contains(relatedTarget)) {\n parent.close();\n }\n }\n\n /** Handles click events for the menu. */\n onClick(event: MouseEvent) {\n const relatedTarget = event.target as Node | null;\n const item = this.inputs.items().find(i => i.element()?.contains(relatedTarget));\n\n if (item) {\n item.open();\n this.listBehavior.goto(item);\n this.submit(item);\n }\n }\n\n /** Handles focusin events for the menu. */\n onFocusIn() {\n this.isFocused.set(true);\n this.hasBeenInteracted.set(true);\n }\n\n /** Handles the focusout event for the menu. */\n onFocusOut(event: FocusEvent) {\n const parent = this.inputs.parent();\n const parentEl = parent?.inputs.element();\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (!relatedTarget) {\n this.isFocused.set(false);\n this.inputs.parent()?.close({refocus: true});\n }\n\n if (parent instanceof MenuItemPattern) {\n const grandparent = parent.inputs.parent();\n const siblings = grandparent?.inputs.items().filter(i => i !== parent);\n const item = siblings?.find(i => i.element()?.contains(relatedTarget));\n\n if (item) {\n return;\n }\n }\n\n if (\n this.visible() &&\n !parentEl?.contains(relatedTarget) &&\n !this.inputs.element()?.contains(relatedTarget)\n ) {\n this.isFocused.set(false);\n this.inputs.parent()?.close();\n }\n }\n\n /** Focuses the previous menu item. */\n prev() {\n this.inputs.activeItem()?.close();\n this.listBehavior.prev();\n }\n\n /** Focuses the next menu item. */\n next() {\n this.inputs.activeItem()?.close();\n this.listBehavior.next();\n }\n\n /** Focuses the first menu item. */\n first() {\n this.inputs.activeItem()?.close();\n this.listBehavior.first();\n }\n\n /** Focuses the last menu item. */\n last() {\n this.inputs.activeItem()?.close();\n this.listBehavior.last();\n }\n\n /** Triggers the active menu item. */\n trigger() {\n this.inputs.activeItem()?.hasPopup()\n ? this.inputs.activeItem()?.open({first: true})\n : this.submit();\n }\n\n /** Submits the menu. */\n submit(item = this.inputs.activeItem()) {\n if (!item || item.disabled() || item.submenu()) {\n return;\n }\n\n const root = this.root();\n\n if (root instanceof MenuTriggerPattern) {\n root.close({refocus: true});\n root?.inputs.menu()?.inputs.itemSelected?.(item.value());\n } else if (root instanceof MenuBarPattern) {\n root.close();\n root?.inputs.itemSelected?.(item.value());\n } else if (root instanceof MenuPattern) {\n root.inputs.activeItem()?.close({refocus: true});\n root?.inputs.itemSelected?.(item.value());\n }\n }\n\n /** Collapses the current menu or focuses the previous item in the menubar. */\n collapse() {\n const root = this.root();\n const parent = this.inputs.parent();\n\n if (parent instanceof MenuItemPattern && !(parent.inputs.parent() instanceof MenuBarPattern)) {\n parent.close({refocus: true});\n } else if (root instanceof MenuBarPattern) {\n root.prev();\n }\n }\n\n /** Expands the current menu or focuses the next item in the menubar. */\n expand() {\n const root = this.root();\n const activeItem = this.inputs.activeItem();\n\n if (activeItem?.submenu()) {\n activeItem.open({first: true});\n } else if (root instanceof MenuBarPattern) {\n root.next();\n }\n }\n\n /** Closes the menu. */\n close() {\n this.inputs.parent()?.close();\n }\n\n /** Closes the menu and all parent menus. */\n closeAll() {\n const root = this.root();\n\n if (root instanceof MenuTriggerPattern) {\n root.close({refocus: true});\n }\n\n if (root instanceof MenuBarPattern) {\n root.close();\n }\n\n if (root instanceof MenuPattern) {\n root.inputs.activeItem()?.close({refocus: true});\n }\n }\n\n /** Clears any open or close timeouts for sub-menus. */\n _clearTimeouts() {\n this._clearOpenTimeout();\n this._clearCloseTimeout();\n }\n\n /** Clears the open timeout. */\n _clearOpenTimeout() {\n if (this._openTimeout) {\n clearTimeout(this._openTimeout);\n this._openTimeout = undefined;\n }\n }\n\n /** Clears the close timeout. */\n _clearCloseTimeout() {\n if (this._closeTimeout) {\n clearTimeout(this._closeTimeout);\n this._closeTimeout = undefined;\n }\n }\n}\n\n/** The menubar ui pattern class. */\nexport class MenuBarPattern<V> {\n /** Controls list behavior for the menu items. */\n listBehavior: List<MenuItemPattern<V>, V>;\n\n /** The tab index of the menu. */\n tabIndex = () => this.listBehavior.tabIndex();\n\n /** The key used to navigate to the next item. */\n private _nextKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowLeft' : 'ArrowRight';\n });\n\n /** The key used to navigate to the previous item. */\n private _previousKey = computed(() => {\n return this.inputs.textDirection() === 'rtl' ? 'ArrowRight' : 'ArrowLeft';\n });\n\n /** Represents the space key. Does nothing when the user is actively using typeahead. */\n dynamicSpaceKey = computed(() => (this.listBehavior.isTyping() ? '' : ' '));\n\n /** The regexp used to decide if a key should trigger typeahead. */\n typeaheadRegexp = /^.$/;\n\n /** Whether the menubar or any of its children are currently focused. */\n isFocused = signal(false);\n\n /** Whether the menubar has been interacted with. */\n hasBeenInteracted = signal(false);\n\n /** Whether the menubar is disabled. */\n disabled = () => this.inputs.disabled();\n\n /** Handles keyboard events for the menu. */\n keydownManager = computed(() => {\n return new KeyboardEventManager()\n .on(this._nextKey, () => this.next(), {ignoreRepeat: false})\n .on(this._previousKey, () => this.prev(), {ignoreRepeat: false})\n .on('End', () => this.listBehavior.last())\n .on('Home', () => this.listBehavior.first())\n .on('Enter', () => this.inputs.activeItem()?.open({first: true}))\n .on('ArrowUp', () => this.inputs.activeItem()?.open({last: true}))\n .on('ArrowDown', () => this.inputs.activeItem()?.open({first: true}))\n .on(this.dynamicSpaceKey, () => this.inputs.activeItem()?.open({first: true}))\n .on(this.typeaheadRegexp, e => this.listBehavior.search(e.key));\n });\n\n constructor(readonly inputs: MenuBarInputs<V>) {\n this.listBehavior = new List<MenuItemPattern<V>, V>(inputs);\n }\n\n /** Sets the default state for the menubar. */\n setDefaultState() {\n const firstFocusable = this.listBehavior.navigationBehavior.peekFirst();\n if (firstFocusable) {\n this.inputs.activeItem.set(firstFocusable);\n }\n }\n\n /** Sets the default active state of the menubar before receiving interaction for the first time. */\n setDefaultStateEffect(): void {\n if (this.hasBeenInteracted()) return;\n\n if (this.inputs.items().length > 0) {\n this.setDefaultState();\n }\n }\n\n /** Handles keyboard events for the menu. */\n onKeydown(event: KeyboardEvent) {\n this.hasBeenInteracted.set(true);\n this.keydownManager().handle(event);\n }\n\n /** Handles click events for the menu bar. */\n onClick(event: MouseEvent) {\n const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node));\n\n if (!item) {\n return;\n }\n\n this.goto(item);\n item.expanded() ? item.close() : item.open();\n }\n\n /** Handles mouseover events for the menu bar. */\n onMouseOver(event: MouseEvent) {\n const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node));\n\n if (item) {\n this.goto(item, {focusElement: this.isFocused()});\n }\n }\n\n /** Handles focusin events for the menu bar. */\n onFocusIn() {\n this.isFocused.set(true);\n this.hasBeenInteracted.set(true);\n }\n\n /** Handles focusout events for the menu bar. */\n onFocusOut(event: FocusEvent) {\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (!this.inputs.element()?.contains(relatedTarget)) {\n this.isFocused.set(false);\n this.close();\n }\n }\n\n /** Goes to and optionally focuses the specified menu item. */\n goto(item: MenuItemPattern<V>, opts?: {focusElement?: boolean}) {\n const prevItem = this.inputs.activeItem();\n this.listBehavior.goto(item, opts);\n\n if (prevItem?.expanded()) {\n prevItem?.close();\n this.inputs.activeItem()?.open();\n }\n\n if (item === prevItem) {\n if (item.expanded() && item.submenu()?.inputs.activeItem()) {\n item.submenu()?.inputs.activeItem()?.close();\n item.submenu()?.listBehavior.unfocus();\n }\n }\n }\n\n /** Focuses the next menu item. */\n next() {\n const prevItem = this.inputs.activeItem();\n this.listBehavior.next();\n\n if (prevItem?.expanded()) {\n prevItem?.close();\n this.inputs.activeItem()?.open({first: true});\n }\n }\n\n /** Focuses the previous menu item. */\n prev() {\n const prevItem = this.inputs.activeItem();\n this.listBehavior.prev();\n\n if (prevItem?.expanded()) {\n prevItem?.close();\n this.inputs.activeItem()?.open({first: true});\n }\n }\n\n /** Closes the menubar and refocuses the root menu bar item. */\n close() {\n this.inputs.activeItem()?.close({refocus: this.isFocused()});\n }\n}\n\n/** The menu trigger ui pattern class. */\nexport class MenuTriggerPattern<V> {\n /** Whether the menu trigger is expanded. */\n expanded = signal(false);\n\n /** Whether the menu trigger has received interaction. */\n hasBeenInteracted = signal(false);\n\n /** The role of the menu trigger. */\n role = () => 'button';\n\n /** Whether the menu trigger has a popup. */\n hasPopup = () => true;\n\n /** The menu associated with the trigger. */\n menu: SignalLike<MenuPattern<V> | undefined>;\n\n /** The tab index of the menu trigger. */\n tabIndex = computed(() => (this.expanded() && this.menu()?.inputs.activeItem() ? -1 : 0));\n\n /** Whether the menu trigger is disabled. */\n disabled = () => this.inputs.disabled();\n\n /** Handles keyboard events for the menu trigger. */\n keydownManager = computed(() => {\n return new KeyboardEventManager()\n .on(' ', () => this.open({first: true}))\n .on('Enter', () => this.open({first: true}))\n .on('ArrowDown', () => this.open({first: true}))\n .on('ArrowUp', () => this.open({last: true}))\n .on('Escape', () => this.close({refocus: true}));\n });\n\n constructor(readonly inputs: MenuTriggerInputs<V>) {\n this.menu = this.inputs.menu;\n }\n\n /** Handles keyboard events for the menu trigger. */\n onKeydown(event: KeyboardEvent) {\n if (!this.inputs.disabled()) {\n this.hasBeenInteracted.set(true);\n this.keydownManager().handle(event);\n }\n }\n\n /** Handles click events for the menu trigger. */\n onClick() {\n if (!this.inputs.disabled()) {\n this.expanded() ? this.close() : this.open({first: true});\n }\n }\n\n /** Handles focusin events for the menu trigger. */\n onFocusIn() {\n this.hasBeenInteracted.set(true);\n }\n\n /** Handles focusout events for the menu trigger. */\n onFocusOut(event: FocusEvent) {\n const element = this.inputs.element();\n const relatedTarget = event.relatedTarget as Node | null;\n\n if (\n this.expanded() &&\n !element?.contains(relatedTarget) &&\n !this.inputs.menu()?.inputs.element()?.contains(relatedTarget)\n ) {\n this.close();\n }\n }\n\n /** Opens the menu. */\n open(opts?: {first?: boolean; last?: boolean}) {\n this.expanded.set(true);\n\n if (opts?.first) {\n this.inputs.menu()?.first();\n } else if (opts?.last) {\n this.inputs.menu()?.last();\n }\n }\n\n /** Closes the menu. */\n close(opts: {refocus?: boolean} = {}) {\n this.expanded.set(false);\n this.menu()?.listBehavior.unfocus();\n\n if (opts.refocus) {\n this.inputs.element()?.focus();\n }\n\n let menuitems = this.inputs.menu()?.inputs.items() ?? [];\n\n while (menuitems.length) {\n const menuitem = menuitems.pop();\n menuitem?._expanded.set(false);\n menuitem?.inputs.parent()?.listBehavior.unfocus();\n menuitems = menuitems.concat(menuitem?.submenu()?.inputs.items() ?? []);\n }\n }\n}\n\n/** The menu item ui pattern class. */\nexport class MenuItemPattern<V> implements ListItem<V> {\n /** The value of the menu item. */\n value: SignalLike<V>;\n\n /** The unique ID of the menu item. */\n id: SignalLike<string>;\n\n /** Whether the menu item is disabled. */\n disabled = () => this.inputs.parent()?.disabled() || this.inputs.disabled();\n\n /** The search term for the menu item. */\n searchTerm: SignalLike<string>;\n\n /** The element of the menu item. */\n element: SignalLike<HTMLElement | undefined>;\n\n /** Whether the menu item is active. */\n active = computed(() => this.inputs.parent()?.inputs.activeItem() === this);\n\n /** Whether the menu item has received interaction. */\n hasBeenInteracted = signal(false);\n\n /** The tab index of the menu item. */\n tabIndex = computed(() => {\n if (this.submenu() && this.submenu()?.inputs.activeItem()) {\n return -1;\n }\n return this.inputs.parent()?.listBehavior.getItemTabindex(this) ?? -1;\n });\n\n /** The position of the menu item in the menu. */\n index = computed(() => this.inputs.parent()?.inputs.items().indexOf(this) ?? -1);\n\n /** Whether the menu item is expanded. */\n expanded = computed(() => (this.submenu() ? this._expanded() : null));\n\n /** Whether the menu item is expanded. */\n _expanded = signal(false);\n\n /** The ID of the menu that the menu item controls. */\n controls = signal<string | undefined>(undefined);\n\n /** The role of the menu item. */\n role = () => 'menuitem';\n\n /** Whether the menu item has a popup. */\n hasPopup = computed(() => !!this.submenu());\n\n /** The submenu associated with the menu item. */\n submenu: SignalLike<MenuPattern<V> | undefined>;\n\n /** Whether the menu item is selectable. */\n selectable: SignalLike<boolean>;\n\n constructor(readonly inputs: MenuItemInputs<V>) {\n this.id = inputs.id;\n this.value = inputs.value;\n this.element = inputs.element;\n this.submenu = this.inputs.submenu;\n this.searchTerm = inputs.searchTerm;\n this.selectable = computed(() => !this.submenu());\n }\n\n /** Opens the submenu. */\n open(opts?: {first?: boolean; last?: boolean}) {\n if (this.disabled()) {\n return;\n }\n\n this._expanded.set(true);\n\n if (opts?.first) {\n this.submenu()?.first();\n }\n if (opts?.last) {\n this.submenu()?.last();\n }\n }\n\n /** Closes the submenu. */\n close(opts: {refocus?: boolean} = {}) {\n this._expanded.set(false);\n\n if (opts.refocus) {\n this.inputs.parent()?.listBehavior.goto(this);\n }\n\n let menuitems = this.inputs.submenu()?.inputs.items() ?? [];\n\n while (menuitems.length) {\n const menuitem = menuitems.pop();\n menuitem?._expanded.set(false);\n menuitem?.inputs.parent()?.listBehavior.unfocus();\n menuitems = menuitems.concat(menuitem?.submenu()?.inputs.items() ?? []);\n\n const parent = menuitem?.inputs.parent();\n\n if (parent instanceof MenuPattern) {\n parent._clearTimeouts();\n }\n }\n }\n\n /** Handles focusin events for the menu item. */\n onFocusIn() {\n this.hasBeenInteracted.set(true);\n }\n}\n"],"names":["MenuPattern","inputs","id","role","disabled","visible","computed","parent","expanded","listBehavior","isFocused","signal","hasBeenInteracted","hasBeenHovered","_openTimeout","_closeTimeout","tabIndex","shouldFocus","root","MenuTriggerPattern","MenuBarPattern","_expandKey","textDirection","_collapseKey","dynamicSpaceKey","isTyping","typeaheadRegexp","grandparent","keydownManager","KeyboardEventManager","on","next","ignoreRepeat","prev","first","last","trigger","closeAll","expand","collapse","e","search","key","constructor","List","value","setDefaultState","firstFocusable","navigationBehavior","peekFirst","goto","focusElement","setDefaultStateEffect","items","length","onKeydown","event","set","handle","onMouseOver","item","find","i","element","contains","target","activeItem","MenuItemPattern","_clearTimeouts","_closeItem","_clearCloseTimeout","_openItem","_clearOpenTimeout","setTimeout","close","undefined","expansionDelay","open","onMouseOut","relatedTarget","onClick","submit","onFocusIn","onFocusOut","parentEl","refocus","siblings","filter","hasPopup","submenu","menu","itemSelected","clearTimeout","_nextKey","_previousKey","opts","prevItem","unfocus","focus","menuitems","menuitem","pop","_expanded","concat","searchTerm","active","getItemTabindex","index","indexOf","controls","selectable"],"mappings":"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"}
|