2021-04-12 16:19:53 +02:00
|
|
|
<div class="wizard-step-contents">
|
2017-11-03 14:24:09 +01:00
|
|
|
{{#if step.title}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<h1 class="wizard-step-title">{{cookedTitle}}</h1>
|
2017-11-03 14:24:09 +01:00
|
|
|
{{/if}}
|
2021-04-12 16:19:53 +02:00
|
|
|
|
2018-01-30 14:19:32 +01:00
|
|
|
{{#if bannerImage}}
|
2018-02-10 08:04:31 +01:00
|
|
|
<div class="wizard-step-banner">
|
|
|
|
<img src={{bannerImage}}>
|
|
|
|
</div>
|
2018-01-30 14:19:32 +01:00
|
|
|
{{/if}}
|
|
|
|
|
2020-03-30 01:53:28 +02:00
|
|
|
{{#if step.description}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<div class="wizard-step-description">{{cookedDescription}}</div>
|
2020-03-30 01:53:28 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2017-11-03 14:24:09 +01:00
|
|
|
{{#wizard-step-form step=step}}
|
2021-04-12 16:19:53 +02:00
|
|
|
{{#each step.fields as |field|}}
|
2017-11-03 14:24:09 +01:00
|
|
|
{{wizard-field field=field step=step wizard=wizard}}
|
|
|
|
{{/each}}
|
|
|
|
{{/wizard-step-form}}
|
|
|
|
</div>
|
|
|
|
|
2021-04-12 16:19:53 +02:00
|
|
|
<div class="wizard-step-footer">
|
2017-11-03 14:24:09 +01:00
|
|
|
|
2021-04-12 16:19:53 +02:00
|
|
|
<div class="wizard-progress">
|
|
|
|
<div class="white"></div>
|
|
|
|
<div class="black" style={{barStyle}}></div>
|
|
|
|
<div class="screen"></div>
|
2020-11-26 06:45:30 +01:00
|
|
|
<span>{{wizard-i18n "wizard.step" current=step.displayIndex total=wizard.totalSteps}}</span>
|
2017-11-03 14:24:09 +01:00
|
|
|
</div>
|
|
|
|
|
2021-04-12 16:19:53 +02:00
|
|
|
<div class="wizard-buttons">
|
2017-12-25 14:29:06 +01:00
|
|
|
{{#if saving}}
|
2021-04-12 16:19:53 +02:00
|
|
|
{{loading-spinner size="small"}}
|
2017-12-25 14:29:06 +01:00
|
|
|
{{else}}
|
2017-12-25 14:49:25 +01:00
|
|
|
{{#if showQuitButton}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<a href {{action "quit"}} class="action-link quit" tabindex={{secondaryButtonIndex}}>{{wizard-i18n "wizard.quit"}}</a>
|
2017-12-25 14:49:25 +01:00
|
|
|
{{/if}}
|
2017-12-25 14:29:06 +01:00
|
|
|
{{#if showBackButton}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<a href {{action "backStep"}} class="action-link back" tabindex={{secondaryButtonIndex}}>{{wizard-i18n "wizard.back"}}</a>
|
2017-12-25 14:29:06 +01:00
|
|
|
{{/if}}
|
2017-11-03 14:24:09 +01:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if showNextButton}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<button type="button" class="wizard-btn next primary" {{action "nextStep"}} disabled={{saving}} tabindex={{primaryButtonIndex}}>
|
2020-11-26 06:45:30 +01:00
|
|
|
{{wizard-i18n "wizard.next"}}
|
2017-12-25 14:29:06 +01:00
|
|
|
{{d-icon "chevron-right"}}
|
2017-11-03 14:24:09 +01:00
|
|
|
</button>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if showDoneButton}}
|
2021-04-12 16:19:53 +02:00
|
|
|
<button type="button" class="wizard-btn done" {{action "done"}} disabled={{saving}} tabindex={{primaryButtonIndex}}>
|
2020-11-26 06:45:30 +01:00
|
|
|
{{wizard-i18n "wizard.done"}}
|
2017-11-03 14:24:09 +01:00
|
|
|
</button>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|