templatetags ¤
Modules:
component_tags ¤
Functions:
-
component
–Renders one of the components that was previously registered with
-
component_css_dependencies
–Marks location where CSS link tags should be rendered after the whole HTML has been generated.
-
component_js_dependencies
–Marks location where JS link tags should be rendered after the whole HTML has been generated.
-
fill
–Use this tag to insert content into component's slots.
-
html_attrs
–Generate HTML attributes (
key="value"
), combining data from multiple sources, -
provide
–The "provider" part of the provide / inject feature.
-
slot
–Slot tag marks a place inside a component where content can be inserted
TagSpec ¤
Bases: NamedTuple
Definition of args, kwargs, flags, etc, for a template tag.
Attributes:
-
end_tag
(Optional[str]
) –End tag.
-
flags
(Optional[List[str]]
) –List of allowed flags.
-
keywordonly_args
(Optional[Union[bool, List[str]]]
) –Parameters that MUST be given only as kwargs (not accounting for
pos_or_keyword_args
). -
optional_kwargs
(Optional[List[str]]
) –Specify which kwargs can be optional.
-
pos_or_keyword_args
(Optional[List[str]]
) –Like regular Python kwargs, these can be given EITHER as positional OR as keyword arguments.
-
positional_args_allow_extra
(bool
) –If
True
, allows variable number of positional args, e.g.{% mytag val1 1234 val2 890 ... %}
-
positional_only_args
(Optional[List[str]]
) –Arguments that MUST be given as positional args.
-
repeatable_kwargs
(Optional[Union[bool, List[str]]]
) –Whether this tag allows all or certain kwargs to be repeated.
-
tag
(str
) –Tag name. E.g.
"slot"
means the tag is written like so{% slot ... %}
end_tag class-attribute
instance-attribute
¤
End tag.
E.g. "endslot"
means anything between the start tag and {% endslot %}
is considered the slot's body.
flags class-attribute
instance-attribute
¤
List of allowed flags.
Flags are like kwargs, but without the value part. E.g. in {% mytag only required %}
: - only
and required
are treated as only=True
and required=True
if present - and treated as only=False
and required=False
if omitted
keywordonly_args class-attribute
instance-attribute
¤
Parameters that MUST be given only as kwargs (not accounting for pos_or_keyword_args
).
- If
False
, NO extra kwargs allowed. - If
True
, ANY number of extra kwargs allowed. - If a list of strings, e.g.
["class", "style"]
, then only those kwargs are allowed.
optional_kwargs class-attribute
instance-attribute
¤
Specify which kwargs can be optional.
pos_or_keyword_args class-attribute
instance-attribute
¤
Like regular Python kwargs, these can be given EITHER as positional OR as keyword arguments.
positional_args_allow_extra class-attribute
instance-attribute
¤
positional_args_allow_extra: bool = False
If True
, allows variable number of positional args, e.g. {% mytag val1 1234 val2 890 ... %}
positional_only_args class-attribute
instance-attribute
¤
Arguments that MUST be given as positional args.
repeatable_kwargs class-attribute
instance-attribute
¤
Whether this tag allows all or certain kwargs to be repeated.
- If
False
, NO kwargs can repeat. - If
True
, ALL kwargs can repeat. - If a list of strings, e.g.
["class", "style"]
, then only those kwargs can repeat.
E.g. ["class"]
means one can write {% mytag class="one" class="two" %}
component ¤
component(parser: Parser, token: Token, registry: ComponentRegistry, tag_name: str, tag_spec: TagSpec) -> ComponentNode
Renders one of the components that was previously registered with @register()
decorator.
Args:
name
(str, required): Registered name of the component to render- All other args and kwargs are defined based on the component itself.
If you defined a component "my_table"
from django_component import Component, register
@register("my_table")
class MyTable(Component):
template = """
<table>
<thead>
{% for header in headers %}
<th>{{ header }}</th>
{% endfor %}
</thead>
<tbody>
{% for row in rows %}
<tr>
{% for cell in row %}
<td>{{ cell }}</td>
{% endfor %}
</tr>
{% endfor %}
<tbody>
</table>
"""
def get_context_data(self, rows: List, headers: List):
return {
"rows": rows,
"headers": headers,
}
Then you can render this component by referring to MyTable
via its registered name "my_table"
:
Component input¤
Positional and keyword arguments can be literals or template variables.
The component name must be a single- or double-quotes string and must be either:
-
The first positional argument after
component
: -
Passed as kwarg
name
:
Inserting into slots¤
If the component defined any slots, you can pass in the content to be placed inside those slots by inserting {% fill %}
tags, directly within the {% component %}
tag:
{% component "my_table" rows=rows headers=headers ... / %}
{% fill "pagination" %}
< 1 | 2 | 3 >
{% endfill %}
{% endcomponent %}
Isolating components¤
By default, components behave similarly to Django's {% include %}
, and the template inside the component has access to the variables defined in the outer template.
You can selectively isolate a component, using the only
flag, so that the inner template can access only the data that was explicitly passed to it:
Source code in src/django_components/templatetags/component_tags.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 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 |
|
component_css_dependencies ¤
component_css_dependencies(parser: Parser, token: Token, tag_spec: TagSpec) -> TextNode
Marks location where CSS link tags should be rendered after the whole HTML has been generated.
Generally, this should be inserted into the <head>
tag of the HTML.
If the generated HTML does NOT contain any {% component_css_dependencies %}
tags, CSS links are by default inserted into the <head>
tag of the HTML. (See JS and CSS output locations)
Note that there should be only one {% component_css_dependencies %}
for the whole HTML document. If you insert this tag multiple times, ALL CSS links will be duplicately inserted into ALL these places.
Source code in src/django_components/templatetags/component_tags.py
component_js_dependencies ¤
component_js_dependencies(parser: Parser, token: Token, tag_spec: TagSpec) -> TextNode
Marks location where JS link tags should be rendered after the whole HTML has been generated.
Generally, this should be inserted at the end of the <body>
tag of the HTML.
If the generated HTML does NOT contain any {% component_js_dependencies %}
tags, JS scripts are by default inserted at the end of the <body>
tag of the HTML. (See JS and CSS output locations)
Note that there should be only one {% component_js_dependencies %}
for the whole HTML document. If you insert this tag multiple times, ALL JS scripts will be duplicately inserted into ALL these places.
Source code in src/django_components/templatetags/component_tags.py
fill ¤
Use this tag to insert content into component's slots.
{% fill %}
tag may be used only within a {% component %}..{% endcomponent %}
block. Runtime checks should prohibit other usages.
Args:
name
(str, required): Name of the slot to insert this content into. Use"default"
for the default slot.default
(str, optional): This argument allows you to access the original content of the slot under the specified variable name. See Accessing original content of slotsdata
(str, optional): This argument allows you to access the data passed to the slot under the specified variable name. See Scoped slots
Examples:
Basic usage:
Accessing slot's default content with the default
kwarg¤
{% component "my_table" %}
{% fill "pagination" default="default_pag" %}
<div class="my-class">
{{ default_pag }}
</div>
{% endfill %}
{% endcomponent %}
Accessing slot's data with the data
kwarg¤
{# my_table.html #}
<table>
...
{% slot "pagination" pages=pages %}
< 1 | 2 | 3 >
{% endslot %}
</table>
{% component "my_table" %}
{% fill "pagination" data="slot_data" %}
{% for page in slot_data.pages %}
<a href="{{ page.link }}">
{{ page.index }}
</a>
{% endfor %}
{% endfill %}
{% endcomponent %}
Accessing slot data and default content on the default slot¤
To access slot data and the default slot content on the default slot, use {% fill %}
with name
set to "default"
:
{% component "button" %}
{% fill name="default" data="slot_data" default="default_slot" %}
You clicked me {{ slot_data.count }} times!
{{ default_slot }}
{% endfill %}
{% endcomponent %}
Source code in src/django_components/templatetags/component_tags.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
html_attrs ¤
html_attrs(parser: Parser, token: Token, tag_spec: TagSpec) -> HtmlAttrsNode
Generate HTML attributes (key="value"
), combining data from multiple sources, whether its template variables or static text.
It is designed to easily merge HTML attributes passed from outside with the internal. See how to in Passing HTML attributes to components.
Args:
attrs
(dict, optional): Optional dictionary that holds HTML attributes. On conflict, overrides values in thedefault
dictionary.default
(str, optional): Optional dictionary that holds HTML attributes. On conflict, is overriden with values in theattrs
dictionary.- Any extra kwargs will be appended to the corresponding keys
The attributes in attrs
and defaults
are merged and resulting dict is rendered as HTML attributes (key="value"
).
Extra kwargs (key=value
) are concatenated to existing keys. So if we have
Then
will result in class="my-class extra-class"
.
Example:
renders
See more usage examples in HTML attributes.
Source code in src/django_components/templatetags/component_tags.py
provide ¤
provide(parser: Parser, token: Token, tag_spec: TagSpec) -> ProvideNode
The "provider" part of the provide / inject feature. Pass kwargs to this tag to define the provider's data. Any components defined within the {% provide %}..{% endprovide %}
tags will be able to access this data with Component.inject()
.
This is similar to React's ContextProvider
, or Vue's provide()
.
Args:
name
(str, required): Provider name. This is the name you will then use inComponent.inject()
.**kwargs
: Any extra kwargs will be passed as the provided data.
Example:
Provide the "user_data" in parent component:
@register("parent")
class Parent(Component):
template = """
<div>
{% provide "user_data" user=user %}
{% component "child" / %}
{% endprovide %}
</div>
"""
def get_context_data(self, user: User):
return {
"user": user,
}
Since the "child" component is used within the {% provide %} / {% endprovide %}
tags, we can request the "user_data" using Component.inject("user_data")
:
@register("child")
class Child(Component):
template = """
<div>
User is: {{ user }}
</div>
"""
def get_context_data(self):
user = self.inject("user_data").user
return {
"user": user,
}
Notice that the keys defined on the {% provide %}
tag are then accessed as attributes when accessing them with Component.inject()
.
✅ Do this
❌ Don't do this
Source code in src/django_components/templatetags/component_tags.py
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 |
|
slot ¤
Slot tag marks a place inside a component where content can be inserted from outside.
Learn more about using slots.
This is similar to slots as seen in Web components, Vue or React's children
.
Args:
name
(str, required): Registered name of the component to renderdefault
: Optional flag. If there is a default slot, you can pass the component slot content without using the{% fill %}
tag. See Default slotrequired
: Optional flag. Will raise an error if a slot is required but not given.**kwargs
: Any extra kwargs will be passed as the slot data.
Example:
@register("child")
class Child(Component):
template = """
<div>
{% slot "content" default %}
This is shown if not overriden!
{% endslot %}
</div>
<aside>
{% slot "sidebar" required / %}
</aside>
"""
@register("parent")
class Parent(Component):
template = """
<div>
{% component "child" %}
{% fill "content" %}
🗞️📰
{% endfill %}
{% fill "sidebar" %}
🍷🧉🍾
{% endfill %}
{% endcomponent %}
</div>
"""
Passing data to slots¤
Any extra kwargs will be considered as slot data, and will be accessible in the {% fill %}
tag via fill's data
kwarg:
@register("child")
class Child(Component):
template = """
<div>
{# Passing data to the slot #}
{% slot "content" user=user %}
This is shown if not overriden!
{% endslot %}
</div>
"""
@register("parent")
class Parent(Component):
template = """
{# Parent can access the slot data #}
{% component "child" %}
{% fill "content" data="data" %}
<div class="wrapper-class">
{{ data.user }}
</div>
{% endfill %}
{% endcomponent %}
"""
Accessing default slot content¤
The content between the {% slot %}..{% endslot %}
tags is the default content that will be rendered if no fill is given for the slot.
This default content can then be accessed from within the {% fill %}
tag using the fill's default
kwarg. This is useful if you need to wrap / prepend / append the original slot's content.
@register("child")
class Child(Component):
template = """
<div>
{% slot "content" %}
This is default content!
{% endslot %}
</div>
"""
@register("parent")
class Parent(Component):
template = """
{# Parent can access the slot's default content #}
{% component "child" %}
{% fill "content" default="default" %}
{{ default }}
{% endfill %}
{% endcomponent %}
"""
Source code in src/django_components/templatetags/component_tags.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
|