107 lines
2.6 KiB
JavaScript
107 lines
2.6 KiB
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
export default {
|
|
title: 'Components|Two-Step Button',
|
|
};
|
|
|
|
export let Standard = () => {
|
|
return {
|
|
template: hbs`
|
|
<h5 class="title is-5">Two-Step Button</h5>
|
|
<br><br>
|
|
<TwoStepButton
|
|
@idleText="Scary Action"
|
|
@cancelText="Nvm"
|
|
@confirmText="Yep"
|
|
@confirmationMessage="Wait, really? Like...seriously?"
|
|
/>
|
|
`,
|
|
};
|
|
};
|
|
|
|
export let Styled = () => {
|
|
return {
|
|
template: hbs`
|
|
<h5 class="title is-5">Two-Step Button with class overrides</h5>
|
|
<br><br>
|
|
<TwoStepButton
|
|
@idleText="Scary Action"
|
|
@cancelText="Nvm"
|
|
@confirmText="Yep"
|
|
@confirmationMessage="Wait, really? Like...seriously?"
|
|
@classes={{hash
|
|
idleButton="is-danger is-large"
|
|
confirmationMessage="badge is-warning"
|
|
confirmButton="is-large"
|
|
cancelButton="is-hollow"
|
|
}}
|
|
/>
|
|
`,
|
|
};
|
|
};
|
|
|
|
export let InTitle = () => {
|
|
return {
|
|
template: hbs`
|
|
<h5 class="title is-5">Two-Step Button in title</h5>
|
|
<br><br>
|
|
<h1 class="title">
|
|
This is a page title
|
|
<TwoStepButton
|
|
@idleText="Scary Action"
|
|
@cancelText="Nvm"
|
|
@confirmText="Yep"
|
|
@confirmationMessage="Wait, really? Like...seriously?"
|
|
/>
|
|
</h1>
|
|
`,
|
|
};
|
|
};
|
|
|
|
export let InlineText = () => {
|
|
return {
|
|
template: hbs`
|
|
<h5 class="title is-5">Two-Step Button with inline confirmation message</h5>
|
|
<br><br>
|
|
<TwoStepButton
|
|
@idleText="Scary Action"
|
|
@cancelText="Nvm"
|
|
@confirmText="Yep"
|
|
@confirmationMessage="Really?"
|
|
@inlineText={{true}}
|
|
/>
|
|
<br><br>
|
|
<span style="padding-left: 4rem"></span>
|
|
<TwoStepButton
|
|
@idleText="Scary Action"
|
|
@cancelText="Nvm"
|
|
@confirmText="Yep"
|
|
@confirmationMessage="Really?"
|
|
@alignRight={{true}}
|
|
@inlineText={{true}}
|
|
/>
|
|
`,
|
|
};
|
|
};
|
|
|
|
export let LoadingState = () => {
|
|
return {
|
|
template: hbs`
|
|
<h5 class="title is-5">Two-Step Button loading state</h5>
|
|
<br><br>
|
|
<h1 class="title">
|
|
This is a page title
|
|
<TwoStepButton
|
|
@idleText="Scary Action"
|
|
@cancelText="Nvm"
|
|
@confirmText="Yep"
|
|
@confirmationMessage="Wait, really? Like...seriously?"
|
|
@awaitingConfirmation={{true}}
|
|
@state="prompt"
|
|
/>
|
|
</h1>
|
|
<p class="annotation"> <strong>Note:</strong> the <code>state</code> property is internal state and only used here to bypass the idle state for demonstration purposes.</p>
|
|
`,
|
|
};
|
|
};
|