mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-31 12:52:13 +00:00

* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant * Fix accidental change to datahub user module license
32 lines
957 B
Handlebars
32 lines
957 B
Handlebars
{{#if (and this.showFoxieFlag this.isFoxieActive)}}
|
|
|
|
<div class="foxie">
|
|
<div class="foxie__sprite-wrapper foxie__sprite-wrapper--{{this.currentImageState}}" {{did-insert this.initEventListener}}>
|
|
{{component this.imageSource}}
|
|
{{#if (eq this.currentImageState "active")}}
|
|
<div class="foxie__sprite-pulse-blob"></div>
|
|
{{/if}}
|
|
</div>
|
|
|
|
{{#if this.isExpanded}}
|
|
<div class="foxie__content-wrapper">
|
|
<div class="foxie__content">
|
|
<button class="foxie__dismiss-button" type="button" onclick={{this.onDismiss}}>
|
|
<FaIcon @icon="times" @prefix="fas" />
|
|
</button>
|
|
{{#if this.currentTriggeredAction}}
|
|
|
|
{{component this.currentTriggeredAction.init.name options=this.currentTriggeredAction.init.options}}
|
|
|
|
{{else}}
|
|
<Foxie::Screens::DefaultScenario />
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{/if}} |