Current section
Files
Jump to
Current section
Files
lib/doggo/storybook/stack.ex
defmodule Doggo.Storybook.Stack do
@moduledoc false
alias PhoenixStorybook.Stories.Variation
def variations(_opts) do
[
%Variation{
id: :default,
description: "Default (margin only applied to direct children)",
slots: slots()
},
%Variation{
id: :recursive,
description: "Recursive (margin applied to nested children)",
attributes: %{recursive: true},
slots: recursive_slots()
}
]
end
def modifier_variation_base(_id, _name, _value, _opts) do
%{
slots: slots()
}
end
defp slots do
[
"""
<div>Dogs bring joy and companionship to our lives. Their loyalty and playful nature make them cherished pets in many households.</div>
<div>Training a dog requires patience and consistency. Using positive reinforcement, like treats and praise, helps in teaching commands effectively.</div>
<div>Different breeds have unique traits. For example, Labradors are known for their friendliness, while Border Collies are celebrated for their intelligence.</div>
"""
]
end
defp recursive_slots do
[
"""
<div>
<div>Dogs bring joy and companionship to our lives. Their loyalty and playful nature make them cherished pets in many households.</div>
<div>Training a dog requires patience and consistency. Using positive reinforcement, like treats and praise, helps in teaching commands effectively.</div>
</div>
<div>Different breeds have unique traits. For example, Labradors are known for their friendliness, while Border Collies are celebrated for their intelligence.</div>
<div>Dogs also play significant roles beyond being pets. Many dogs work as service animals, assisting people with disabilities, or as therapy dogs, providing comfort in hospitals and nursing homes. </div>
"""
]
end
end