import { hbs } from 'ember-cli-htmlbars'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; // More on default export: https://storybook.js.org/docs/ember/writing-stories/introduction#default-export export default { title: 'Button', // More on argTypes: https://storybook.js.org/docs/ember/api/argtypes argTypes: { label: { control: 'text' }, }, }; // More on component templates: https://storybook.js.org/docs/ember/writing-stories/introduction#using-args const Template = (args) => ({ template: hbs``, context: args, }); export const Text = Template.bind({}); // More on args: https://storybook.js.org/docs/ember/writing-stories/args Text.args = { label: 'Button', onClick: action('onClick'), }; export const Emoji = Template.bind({}); Emoji.args = { label: '😀 😎 👍 💯', }; export const TextWithAction = () => ({ template: hbs` `, context: { onClick: () => action('This was clicked')(), }, }); TextWithAction.storyName = 'With an action'; TextWithAction.parameters = { notes: 'My notes on a button with emojis' }; export const ButtonWithLinkToAnotherStory = () => ({ template: hbs` `, context: { onClick: linkTo('example-introduction--page'), }, }); ButtonWithLinkToAnotherStory.storyName = 'button with link to another story';