Allow each story to have its own include

Created on 30 October 2024, 5 months ago

When creating stories, if you have multiplies stories in one *.stories.twig file like the following, then instead of each story having one template included, each story ends up getting multiple embeds.

In other words, I expect to see one button per story, but instead I see two next to each other in Storybook.

{% stories chip with {title: 'Dreamykit/Simple components/Button',} %}
  {% story default with {
    name: '1. Button',
    args: {
      type: 'button',
      input_type: '',
      text: 'button',
      href: '',
      target: '',
    }
  } %}
    {{ include('dreamykit:button') }}
  {% endstory %}
  {% story default with {
    name: '2. Link button',
    args: {
      type: 'link',
      input_type: '',
      text: 'link',
      href: '#',
      target: '_blank',
    }
  } %}
    {{ include('dreamykit:button') }}
  {% endstory %}
{% endstories %}
🐛 Bug report
Status

Active

Version

1.0

Component

Twig

Created by

🇬🇧United Kingdom droces Harrow on the Hill, London, UK

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @droces
  • 🇬🇧United Kingdom droces Harrow on the Hill, London, UK

    As a workaround, I have found that I can embed the component just once (inside one of the stories) like the following, and it will show once for each story (in other words, I see only one button in each story). However this won't work if my includes / embeds are not the same for each story, so it won't work in many cases.

    {% stories chip with {title: 'Dreamykit/Simple components/Button',} %}
      {% story default with {
        name: '1. Button',
        args: {
          type: 'button',
          input_type: '',
          text: 'button',
          href: '',
          target: '',
        }
      } %}
      {% endstory %}
      {% story default with {
        name: '2. Link button',
        args: {
          type: 'link',
          input_type: '',
          text: 'link',
          href: '#',
          target: '_blank',
        }
      } %}
        {{ include('dreamykit:button') }}
      {% endstory %}
    {% endstories %}
    
Production build 0.71.5 2024