mirror of https://github.com/hashicorp/consul
38 lines
1022 B
Handlebars
38 lines
1022 B
Handlebars
|
{{yield}}
|
||
|
<li role="none" ...attributes>
|
||
|
{{#if hasConfirmation}}
|
||
|
<label for={{concat menu.confirm guid}} role="menuitem" tabindex="-1" onkeypress={{menu.keypressClick}}>
|
||
|
<YieldSlot @name="label">{{yield}}</YieldSlot>
|
||
|
</label>
|
||
|
<div role="menu">
|
||
|
<YieldSlot @name="confirmation" @params={{
|
||
|
block-params (component 'confirmation-alert'
|
||
|
onclick=(queue (action onclick) (action menu.clickTrigger))
|
||
|
name=(concat menu.confirm guid)
|
||
|
)
|
||
|
}}>{{yield}}</YieldSlot>
|
||
|
</div>
|
||
|
{{else if href}}
|
||
|
{{#let (string-includes href '://') as |external|}}
|
||
|
<a
|
||
|
role="menuitem" tabindex="-1"
|
||
|
onclick={{action menu.clickTrigger}}
|
||
|
href={{href}}
|
||
|
target={{if external '_blank'}}
|
||
|
rel={{if external 'noopener noreferrer'}}
|
||
|
>
|
||
|
<YieldSlot @name="label">
|
||
|
{{yield}}
|
||
|
</YieldSlot>
|
||
|
</a>
|
||
|
{{/let}}
|
||
|
{{else}}
|
||
|
<button role="menuitem" tabindex="-1" type="button" onclick={{action this.onclick}}>
|
||
|
<YieldSlot @name="label">
|
||
|
{{yield}}
|
||
|
</YieldSlot>
|
||
|
</button>
|
||
|
{{/if}}
|
||
|
</li>
|
||
|
|