component ¤
Classes:
-
Component
– -
ComponentNode
–Django.template.Node subclass that renders a django-components component
-
ComponentVars
–Type for the variables available inside the component templates.
-
ComponentView
–Subclass of
django.views.View
where theComponent
instance is available
Component ¤
Component(
registered_name: Optional[str] = None,
component_id: Optional[str] = None,
outer_context: Optional[Context] = None,
registry: Optional[ComponentRegistry] = None,
)
Bases: Generic[ArgsType, KwargsType, SlotsType, DataType, JsDataType, CssDataType]
Methods:
-
as_view
–Shortcut for calling
Component.View.as_view
and passing component instance to it. -
get_template
–Inlined Django template associated with this component. Can be a plain string or a Template instance.
-
get_template_name
–Filepath to the Django template associated with this component.
-
inject
–Use this method to retrieve the data that was passed to a
{% provide %}
tag -
on_render_after
–Hook that runs just after the component's template was rendered.
-
on_render_before
–Hook that runs just before the component's template is rendered.
-
render
–Render the component into a string.
-
render_to_response
–Render the component and wrap the content in the response class.
Attributes:
-
Media
–Defines JS and CSS media files associated with this component.
-
css
(Optional[str]
) –Inlined CSS associated with this component.
-
input
(RenderInput[ArgsType, KwargsType, SlotsType]
) –Input holds the data (like arg, kwargs, slots) that were passsed to
-
is_filled
(SlotIsFilled
) –Dictionary describing which slots have or have not been filled.
-
js
(Optional[str]
) –Inlined JS associated with this component.
-
media
(Media
) –Normalized definition of JS and CSS media files associated with this component.
-
response_class
–This allows to configure what class is used to generate response from
render_to_response
-
template
(Optional[Union[str, Template]]
) –Inlined Django template associated with this component. Can be a plain string or a Template instance.
-
template_name
(Optional[str]
) –Filepath to the Django template associated with this component.
Source code in src/django_components/component.py
Media class-attribute
instance-attribute
¤
Media = ComponentMediaInput
Defines JS and CSS media files associated with this component.
css class-attribute
instance-attribute
¤
Inlined CSS associated with this component.
input property
¤
Input holds the data (like arg, kwargs, slots) that were passsed to the current execution of the render
method.
is_filled property
¤
is_filled: SlotIsFilled
Dictionary describing which slots have or have not been filled.
This attribute is available for use only within the template as {{ component_vars.is_filled.slot_name }}
, and within on_render_before
and on_render_after
hooks.
js class-attribute
instance-attribute
¤
Inlined JS associated with this component.
media instance-attribute
¤
media: Media
Normalized definition of JS and CSS media files associated with this component.
NOTE: This field is generated from Component.Media class.
response_class class-attribute
instance-attribute
¤
response_class = HttpResponse
This allows to configure what class is used to generate response from render_to_response
template class-attribute
instance-attribute
¤
Inlined Django template associated with this component. Can be a plain string or a Template instance.
Only one of template_name
, get_template_name
, template
or get_template
must be defined.
template_name class-attribute
instance-attribute
¤
Filepath to the Django template associated with this component.
The filepath must be relative to either the file where the component class was defined, or one of the roots of STATIFILES_DIRS
.
Only one of template_name
, get_template_name
, template
or get_template
must be defined.
as_view classmethod
¤
as_view(**initkwargs: Any) -> ViewFn
Shortcut for calling Component.View.as_view
and passing component instance to it.
Source code in src/django_components/component.py
get_template ¤
Inlined Django template associated with this component. Can be a plain string or a Template instance.
Only one of template_name
, get_template_name
, template
or get_template
must be defined.
Source code in src/django_components/component.py
get_template_name ¤
Filepath to the Django template associated with this component.
The filepath must be relative to either the file where the component class was defined, or one of the roots of STATIFILES_DIRS
.
Only one of template_name
, get_template_name
, template
or get_template
must be defined.
Source code in src/django_components/component.py
inject ¤
Use this method to retrieve the data that was passed to a {% provide %}
tag with the corresponding key.
To retrieve the data, inject()
must be called inside a component that's inside the {% provide %}
tag.
You may also pass a default that will be used if the provide
tag with given key was NOT found.
This method mut be used inside the get_context_data()
method and raises an error if called elsewhere.
Example:
Given this template:
{% provide "provider" hello="world" %}
{% component "my_comp" %}
{% endcomponent %}
{% endprovide %}
And given this definition of "my_comp" component:
from django_components import Component, register
@register("my_comp")
class MyComp(Component):
template = "hi {{ data.hello }}!"
def get_context_data(self):
data = self.inject("provider")
return {"data": data}
This renders into:
As the {{ data.hello }}
is taken from the "provider".
Source code in src/django_components/component.py
on_render_after ¤
Hook that runs just after the component's template was rendered. It receives the rendered output as the last argument.
You can use this hook to access the context or the template, but modifying them won't have any effect.
To override the content that gets rendered, you can return a string or SafeString from this hook.
Source code in src/django_components/component.py
on_render_before ¤
Hook that runs just before the component's template is rendered.
You can use this hook to access or modify the context or the template.
render classmethod
¤
render(
context: Optional[Union[Dict[str, Any], Context]] = None,
args: Optional[ArgsType] = None,
kwargs: Optional[KwargsType] = None,
slots: Optional[SlotsType] = None,
escape_slots_content: bool = True,
type: RenderType = "document",
render_dependencies: bool = True,
) -> str
Render the component into a string.
Inputs: - args
- Positional args for the component. This is the same as calling the component as {% component "my_comp" arg1 arg2 ... %}
- kwargs
- Kwargs for the component. This is the same as calling the component as {% component "my_comp" key1=val1 key2=val2 ... %}
- slots
- Component slot fills. This is the same as pasing {% fill %}
tags to the component. Accepts a dictionary of { slot_name: slot_content }
where slot_content
can be a string or render function. - escape_slots_content
- Whether the content from slots
should be escaped. - context
- A context (dictionary or Django's Context) within which the component is rendered. The keys on the context can be accessed from within the template. - NOTE: In "isolated" mode, context is NOT accessible, and data MUST be passed via component's args and kwargs. - type
- Configure how to handle JS and CSS dependencies. - "document"
(default) - JS dependencies are inserted into {% component_js_dependencies %}
, or to the end of the <body>
tag. CSS dependencies are inserted into {% component_css_dependencies %}
, or the end of the <head>
tag. - render_dependencies
- Set this to False
if you want to insert the resulting HTML into another component.
Example:
MyComponent.render(
args=[1, "two", {}],
kwargs={
"key": 123,
},
slots={
"header": 'STATIC TEXT HERE',
"footer": lambda ctx, slot_kwargs, slot_ref: f'CTX: {ctx['hello']} SLOT_DATA: {slot_kwargs['abc']}',
},
escape_slots_content=False,
)
Source code in src/django_components/component.py
render_to_response classmethod
¤
render_to_response(
context: Optional[Union[Dict[str, Any], Context]] = None,
slots: Optional[SlotsType] = None,
escape_slots_content: bool = True,
args: Optional[ArgsType] = None,
kwargs: Optional[KwargsType] = None,
type: RenderType = "document",
*response_args: Any,
**response_kwargs: Any
) -> HttpResponse
Render the component and wrap the content in the response class.
The response class is taken from Component.response_class
. Defaults to django.http.HttpResponse
.
This is the interface for the django.views.View
class which allows us to use components as Django views with component.as_view()
.
Inputs: - args
- Positional args for the component. This is the same as calling the component as {% component "my_comp" arg1 arg2 ... %}
- kwargs
- Kwargs for the component. This is the same as calling the component as {% component "my_comp" key1=val1 key2=val2 ... %}
- slots
- Component slot fills. This is the same as pasing {% fill %}
tags to the component. Accepts a dictionary of { slot_name: slot_content }
where slot_content
can be a string or render function. - escape_slots_content
- Whether the content from slots
should be escaped. - context
- A context (dictionary or Django's Context) within which the component is rendered. The keys on the context can be accessed from within the template. - NOTE: In "isolated" mode, context is NOT accessible, and data MUST be passed via component's args and kwargs. - type
- Configure how to handle JS and CSS dependencies. - "document"
(default) - JS dependencies are inserted into {% component_js_dependencies %}
, or to the end of the <body>
tag. CSS dependencies are inserted into {% component_css_dependencies %}
, or the end of the <head>
tag.
Any additional args and kwargs are passed to the response_class
.
Example:
MyComponent.render_to_response(
args=[1, "two", {}],
kwargs={
"key": 123,
},
slots={
"header": 'STATIC TEXT HERE',
"footer": lambda ctx, slot_kwargs, slot_ref: f'CTX: {ctx['hello']} SLOT_DATA: {slot_kwargs['abc']}',
},
escape_slots_content=False,
# HttpResponse input
status=201,
headers={...},
)
# HttpResponse(content=..., status=201, headers=...)
Source code in src/django_components/component.py
ComponentNode ¤
ComponentNode(
name: str,
args: List[Expression],
kwargs: RuntimeKwargs,
registry: ComponentRegistry,
isolated_context: bool = False,
nodelist: Optional[NodeList] = None,
node_id: Optional[str] = None,
)
Bases: BaseNode
Django.template.Node subclass that renders a django-components component
Source code in src/django_components/component.py
ComponentVars ¤
Bases: NamedTuple
Type for the variables available inside the component templates.
All variables here are scoped under component_vars.
, so e.g. attribute is_filled
on this class is accessible inside the template as:
Attributes:
-
is_filled
(Dict[str, bool]
) –Dictonary describing which component slots are filled (
True
) or are not (False
).
is_filled instance-attribute
¤
Dictonary describing which component slots are filled (True
) or are not (False
).
New in version 0.70
Use as {{ component_vars.is_filled }}
Example: