Additions to documentation

Created on 30 October 2024, 5 months ago

Below are some things that might be beneficial to add to the documentation.

If any of these aren't specific to Storybook - because they apply to SDC / components in core for example - they can remain here until they are added to the other (core) documentation.

Example 1: Providing renderable markup as an arg

We can use the set tag to assign arbitrary markup to a variable before including / embedding the component.

{% stories card with {title: 'Mymodule/Components/Card',} %}
  {% story default with {
    name: '1. Default',
    args: {
      title: "Title of card",
    }
  } %}
    {% set body %}
      <p><strong>Content</strong> of the card</p>
    {% endset %}
    {{ include('dreamykit:card') }}
  {% endstory %}
{% endstories %}
📌 Task
Status

Active

Version

1.0

Component

Documentation

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

    Providing attributes as renderable array

    Attributes can be provided using the create_attribute function with the render filter.

    {% story default with {
        name: '1. Default',
        args: {
            attributes: create_attribute({'data-component-id': "mytheme:mycomponent",})|render,
            title: 'Summary of the content',
        }
    } %}
    
  • 🇬🇧United Kingdom droces Harrow on the Hill, London, UK

    We can specify the behaviour of args using ArgTypes. For example, this allows us to specify the options available to be selected:

    {% stories columns with {title: 'Dreamykit/Layout/Columns',} %}
      {% story default with {
        name: '1. Default',
        argTypes: {
          columns: {
            control: 'radio',
            options: [2, 3, 4, 6, 8],
          }
        },
        args: {
          columns: 4,
        }
      } %}
    
        {{ include('dreamykit:columns') }}
    
      {% endstory %}
    {% endstories %}
    
Production build 0.71.5 2024