32 lines
1.3 KiB
Handlebars
32 lines
1.3 KiB
Handlebars
{{yield (concat 'popover-menu-' guid)}}
|
|
<AriaMenu @keyboardAccess={{keyboardAccess}} as |change keypress ariaLabelledBy ariaControls ariaExpanded keypressClick|>
|
|
<ToggleButton
|
|
@checked={{if keyboardAccess ariaExpanded expanded}}
|
|
@onchange={{queue change (action "change")}}
|
|
as |api|>
|
|
<Ref @target={{this}} @name="toggle" @value={{api}} />
|
|
<button type="button" aria-haspopup="menu" onkeydown={{keypress}} onclick={{this.toggle.click}} id={{ariaLabelledBy}} aria-controls={{ariaControls}}>
|
|
<YieldSlot @name="trigger">
|
|
{{yield}}
|
|
</YieldSlot>
|
|
</button>
|
|
</ToggleButton>
|
|
<MenuPanel @position={{position}} id={{ariaControls}} aria-labelledby={{ariaLabelledBy}} aria-expanded={{ariaExpanded}}>
|
|
<BlockSlot @name="controls">
|
|
<input type="checkbox" id={{concat 'popover-menu-' guid '-'}} />
|
|
{{#each submenus as |sub|}}
|
|
<input type="checkbox" id={{concat 'popover-menu-' guid '-' sub}} />
|
|
{{/each}}
|
|
</BlockSlot>
|
|
{{#if hasHeader}}
|
|
<BlockSlot @name="header">
|
|
{{#yield-slot name="header"}}{{yield}}{{else}}{{/yield-slot}}
|
|
</BlockSlot>
|
|
{{/if}}
|
|
<BlockSlot @name="menu">
|
|
<YieldSlot @name="menu" @params={{block-params (concat "popover-menu-" guid "-") send keypressClick this.toggle.click}}>
|
|
{{yield}}
|
|
</YieldSlot>
|
|
</BlockSlot>
|
|
</MenuPanel>
|
|
</AriaMenu> |