2020-01-16 18:14:03 +03:00
|
|
|
<LiquidWormhole @class="fullscreen-modal-container">
|
2023-09-22 15:01:34 +03:00
|
|
|
<div class="fullscreen-modal-background" {{action "clickOverlay" "background"}}></div>
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class={{this.modalClasses}}>
|
2021-05-12 14:27:15 +03:00
|
|
|
{{#if (has-block)}}
|
2016-10-07 16:27:39 +03:00
|
|
|
{{yield}}
|
|
|
|
{{else}}
|
2021-01-22 12:24:33 +03:00
|
|
|
{{#let (component this.modalPath) as |ModalComponent|}}
|
|
|
|
<ModalComponent
|
|
|
|
@model={{this.model}}
|
2021-01-22 12:43:33 +03:00
|
|
|
@confirm={{action "confirm"}}
|
2021-01-22 12:24:33 +03:00
|
|
|
@closeModal={{action "close"}}
|
2021-05-20 19:20:49 +03:00
|
|
|
@modifier={{this.modifier}}
|
|
|
|
@updateModifier={{action (mut this.modifier)}}
|
2021-01-22 12:24:33 +03:00
|
|
|
/>
|
|
|
|
{{/let}}
|
2016-10-07 16:27:39 +03:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2020-01-16 18:14:03 +03:00
|
|
|
</LiquidWormhole>
|