components ¤
Modules:
-
dynamic
–
Classes:
-
DynamicComponent
–This component is given a registered name or a reference to another component,
DynamicComponent ¤
DynamicComponent(
registered_name: Optional[str] = None,
component_id: Optional[str] = None,
outer_context: Optional[Context] = None,
registry: Optional[ComponentRegistry] = None,
)
Bases: Component
This component is given a registered name or a reference to another component, and behaves as if the other component was in its place.
The args, kwargs, and slot fills are all passed down to the underlying component.
Parameters:
-
is
(str | Type[Component]
) –Component that should be rendered. Either a registered name of a component, or a Component class directly. Required.
-
registry
(ComponentRegistry
, default:None
) –Specify the registry to search for the registered name. If omitted, all registries are searched until the first match.
-
*args
–Additional data passed to the component.
-
**kwargs
–Additional data passed to the component.
Slots:
- Any slots, depending on the actual component.
Examples:
Django
{% component "dynamic" is=table_comp data=table_data headers=table_headers %}
{% fill "pagination" %}
{% component "pagination" / %}
{% endfill %}
{% endcomponent %}
Python
from django_components import DynamicComponent
DynamicComponent.render(
kwargs={
"is": table_comp,
"data": table_data,
"headers": table_headers,
},
slots={
"pagination": PaginationComponent.render(
render_dependencies=False,
),
},
)
Use cases¤
Dynamic components are suitable if you are writing something like a form component. You may design it such that users give you a list of input types, and you render components depending on the input types.
While you could handle this with a series of if / else statements, that's not an extensible approach. Instead, you can use the dynamic component in place of normal components.
Component name¤
By default, the dynamic component is registered under the name "dynamic"
. In case of a conflict, you can set the COMPONENTS.dynamic_component_name
setting to change the name used for the dynamic components.
After which you will be able to use the dynamic component with the new name:
{% component "my_dynamic" is=table_comp data=table_data headers=table_headers %}
{% fill "pagination" %}
{% component "pagination" / %}
{% endfill %}
{% endcomponent %}
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_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_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
dynamic ¤
Modules:
-
types
–Helper types for IDEs.
Classes:
-
DynamicComponent
–This component is given a registered name or a reference to another component,
DynamicComponent ¤
DynamicComponent(
registered_name: Optional[str] = None,
component_id: Optional[str] = None,
outer_context: Optional[Context] = None,
registry: Optional[ComponentRegistry] = None,
)
Bases: Component
This component is given a registered name or a reference to another component, and behaves as if the other component was in its place.
The args, kwargs, and slot fills are all passed down to the underlying component.
Parameters:
-
is
(str | Type[Component]
) –Component that should be rendered. Either a registered name of a component, or a Component class directly. Required.
-
registry
(ComponentRegistry
, default:None
) –Specify the registry to search for the registered name. If omitted, all registries are searched until the first match.
-
*args
–Additional data passed to the component.
-
**kwargs
–Additional data passed to the component.
Slots:
- Any slots, depending on the actual component.
Examples:
Django
{% component "dynamic" is=table_comp data=table_data headers=table_headers %}
{% fill "pagination" %}
{% component "pagination" / %}
{% endfill %}
{% endcomponent %}
Python
from django_components import DynamicComponent
DynamicComponent.render(
kwargs={
"is": table_comp,
"data": table_data,
"headers": table_headers,
},
slots={
"pagination": PaginationComponent.render(
render_dependencies=False,
),
},
)
Use cases¤
Dynamic components are suitable if you are writing something like a form component. You may design it such that users give you a list of input types, and you render components depending on the input types.
While you could handle this with a series of if / else statements, that's not an extensible approach. Instead, you can use the dynamic component in place of normal components.
Component name¤
By default, the dynamic component is registered under the name "dynamic"
. In case of a conflict, you can set the COMPONENTS.dynamic_component_name
setting to change the name used for the dynamic components.
After which you will be able to use the dynamic component with the new name:
{% component "my_dynamic" is=table_comp data=table_data headers=table_headers %}
{% fill "pagination" %}
{% component "pagination" / %}
{% endfill %}
{% endcomponent %}
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_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_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=...)