2018-04-18 19:19:35 +00:00
|
|
|
{{#if isIdle}}
|
2018-07-03 22:24:26 +00:00
|
|
|
<button data-test-idle-button type="button" class="button is-danger is-outlined is-important is-small" onclick={{action "promptForConfirmation"}}>
|
2018-04-18 19:19:35 +00:00
|
|
|
{{idleText}}
|
|
|
|
</button>
|
|
|
|
{{else if isPendingConfirmation}}
|
2018-04-18 20:02:58 +00:00
|
|
|
<span data-test-confirmation-message class="confirmation-text">{{confirmationMessage}}</span>
|
2018-07-03 22:24:26 +00:00
|
|
|
<button data-test-cancel-button type="button" class="button is-dark is-outlined is-small" onclick={{action (queue
|
2018-04-18 19:19:35 +00:00
|
|
|
(action "setToIdle")
|
|
|
|
(action onCancel)
|
|
|
|
)}}>
|
|
|
|
{{cancelText}}
|
|
|
|
</button>
|
2018-07-03 22:24:26 +00:00
|
|
|
<button data-test-confirm-button class="button is-danger is-small" onclick={{action (queue
|
2018-04-18 19:19:35 +00:00
|
|
|
(action "setToIdle")
|
|
|
|
(action onConfirm)
|
|
|
|
)}}>
|
|
|
|
{{confirmText}}
|
|
|
|
</button>
|
|
|
|
{{/if}}
|