slots ¤
Classes:
-
FillNode
–Node corresponding to
{% fill %}
-
Slot
–This class holds the slot content function along with related metadata.
-
SlotFill
–SlotFill describes what WILL be rendered.
-
SlotIsFilled
–Dictionary that returns
True
if the slot is filled (key is found),False
otherwise. -
SlotNode
–Node corresponding to
{% slot %}
-
SlotRef
–SlotRef allows to treat a slot as a variable. The slot is rendered only once
Functions:
-
resolve_fills
–Given a component body (
django.template.NodeList
), find all slot fills,
FillNode ¤
Slot dataclass
¤
SlotFill dataclass
¤
Bases: Generic[TSlotData]
SlotFill describes what WILL be rendered.
The fill may be provided by the user from the outside (is_filled=True
), or it may be the default content of the slot (is_filled=False
).
Attributes:
SlotIsFilled ¤
Bases: dict
Dictionary that returns True
if the slot is filled (key is found), False
otherwise.
Source code in src/django_components/slots.py
SlotNode ¤
SlotNode(
nodelist: NodeList,
trace_id: str,
node_id: Optional[str] = None,
kwargs: Optional[RuntimeKwargs] = None,
is_required: bool = False,
is_default: bool = False,
)
Bases: BaseNode
Node corresponding to {% slot %}
Source code in src/django_components/slots.py
SlotRef ¤
SlotRef allows to treat a slot as a variable. The slot is rendered only once the instance is coerced to string.
This is used to access slots as variables inside the templates. When a SlotRef is rendered in the template with {{ my_lazy_slot }}
, it will output the contents of the slot.
Source code in src/django_components/slots.py
resolve_fills ¤
Given a component body (django.template.NodeList
), find all slot fills, whether defined explicitly with {% fill %}
or implicitly.
So if we have a component body:
{% component "mycomponent" %}
{% fill "first_fill" %}
Hello!
{% endfill %}
{% fill "second_fill" %}
Hello too!
{% endfill %}
{% endcomponent %}
Then this function finds 2 fill nodes: "first_fill" and "second_fill", and formats them as slot functions, returning:
If no fill nodes are found, then the content is treated as default slot content.
This function also handles for-loops, if/else statements, or include tags to generate fill tags:
{% component "mycomponent" %}
{% for slot_name in slots %}
{% fill name=slot_name %}
{% slot name=slot_name / %}
{% endfill %}
{% endfor %}
{% endcomponent %}
Source code in src/django_components/slots.py
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 |
|