django_components ¤
Main package for Django Components.
Modules:
-
app_settings
– -
attributes
– -
autodiscovery
– -
component
– -
component_media
– -
component_registry
– -
components
– -
context
–This file centralizes various ways we use Django's Context class
-
dependencies
–All code related to management of component dependencies (JS and CSS scripts)
-
expression
– -
finders
– -
library
–Module for interfacing with Django's Library (
django.template.library
) -
management
– -
middleware
– -
node
– -
provide
– -
slots
– -
tag_formatter
– -
template
– -
template_loader
–Template loader that loads templates from each Django app's "components" directory.
-
template_parser
–Overrides for the Django Template system to allow finer control over template parsing.
-
templatetags
– -
types
–Helper types for IDEs.
-
util
–
Classes:
-
AlreadyRegistered
–Raised when you try to register a Component,
-
Component
– -
ComponentFileEntry
–Result returned by
get_component_files()
. -
ComponentFormatter
–The original django_component's component tag formatter, it uses the
{% component %}
-
ComponentRegistry
–Manages components and makes them available
-
ComponentVars
–Type for the variables available inside the component templates.
-
ComponentView
–Subclass of
django.views.View
where theComponent
instance is available -
ComponentsSettings
–Settings available for django_components.
-
ContextBehavior
–Configure how (and whether) the context is passed to the component fills
-
DynamicComponent
–This component is given a registered name or a reference to another component,
-
EmptyDict
–TypedDict with no members.
-
NotRegistered
–Raised when you try to access a Component,
-
RegistrySettings
–Configuration for a
ComponentRegistry
. -
ShorthandComponentFormatter
–The component tag formatter that uses
{% <name> %}
/{% end<name> %}
tags. -
Slot
–This class holds the slot content function along with related metadata.
-
SlotRef
–SlotRef allows to treat a slot as a variable. The slot is rendered only once
-
TagFormatterABC
–Abstract base class for defining custom tag formatters.
-
TagProtectedError
–The way the
TagFormatter
works is that, -
TagResult
–The return value from
TagFormatter.parse()
.
Functions:
-
autodiscover
–Search for all python files in
-
cached_template
–Create a Template instance that will be cached as per the
-
get_component_dirs
–Get directories that may contain component files.
-
get_component_files
–Search for files within the component directories (as defined in
-
import_libraries
–Import modules set in
-
register
–Class decorator for registering a component
-
render_dependencies
–Given a string that contains parts that were rendered by components,
Attributes:
-
EmptyTuple
–Tuple with no members.
-
registry
(ComponentRegistry
) –The default and global component registry.
EmptyTuple module-attribute
¤
EmptyTuple = Tuple[]
Tuple with no members.
You can use this to define a Component that accepts NO positional arguments:
from django_components import Component, EmptyTuple
class Table(Component(EmptyTuple, Any, Any, Any, Any, Any))
...
After that, when you call Component.render()
or Component.render_to_response()
, the args
parameter will raise type error if args
is anything else than an empty tuple.
Omitting args
is also fine:
Other values are not allowed. This will raise an error with MyPy:
registry module-attribute
¤
registry: ComponentRegistry = ComponentRegistry()
The default and global component registry. Use this instance to directly register or remove components:
AlreadyRegistered ¤
Bases: Exception
Raised when you try to register a Component, but it's already registered with given ComponentRegistry.
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
ComponentFileEntry ¤
ComponentFormatter ¤
ComponentFormatter(tag: str)
Bases: TagFormatterABC
The original django_component's component tag formatter, it uses the {% component %}
and {% endcomponent %}
tags, and the component name is given as the first positional arg.
Example as block:
Example as inlined tag:
Source code in src/django_components/tag_formatter.py
ComponentRegistry ¤
ComponentRegistry(
library: Optional[Library] = None, settings: Optional[Union[RegistrySettings, Callable[[ComponentRegistry], RegistrySettings]]] = None
)
Manages components and makes them available in the template, by default as {% component %}
tags.
To enable a component to be used in a template, the component must be registered with a component registry.
When you register a component to a registry, behind the scenes the registry automatically adds the component's template tag (e.g. {% component %}
to the Library
. And the opposite happens when you unregister a component - the tag is removed.
Parameters:
-
library
(Library
, default:None
) –Django
Library
associated with this registry. If omitted, the default Library instance from django_components is used. -
settings
(Union[RegistrySettings, Callable[[ComponentRegistry], RegistrySettings]]
, default:None
) –Configure how the components registered with this registry will behave when rendered. See
RegistrySettings
. Can be either a static value or a callable that returns the settings. If omitted, the settings fromCOMPONENTS
are used.
Notes:
- The default registry is available as
django_components.registry
. - The default registry is used when registering components with
@register
decorator.
Example:
# Use with default Library
registry = ComponentRegistry()
# Or a custom one
my_lib = Library()
registry = ComponentRegistry(library=my_lib)
# Usage
registry.register("button", ButtonComponent)
registry.register("card", CardComponent)
registry.all()
registry.clear()
registry.get()
Using registry to share components¤
You can use component registry for isolating or "packaging" components:
-
Create new instance of
ComponentRegistry
and Library: -
Register components to the registry:
-
In your target project, load the Library associated with the registry:
-
Use the registered components in your templates:
Methods:
-
all
–Retrieve all registered
Component
classes. -
clear
–Clears the registry, unregistering all components.
-
get
–Retrieve a
Component
-
register
–Register a
Component
class -
unregister
–Unregister the
Component
class
Attributes:
-
library
(Library
) –The template tag
Library
-
settings
(InternalRegistrySettings
) –Registry settings configured for this registry.
Source code in src/django_components/component_registry.py
settings property
¤
Registry settings configured for this registry.
all ¤
Retrieve all registered Component
classes.
Returns:
-
Dict[str, Type[Component]]
–Dict[str, Type[Component]]: A dictionary of component names to component classes
Example:
# First register components
registry.register("button", ButtonComponent)
registry.register("card", CardComponent)
# Then get all
registry.all()
# > {
# > "button": ButtonComponent,
# > "card": CardComponent,
# > }
Source code in src/django_components/component_registry.py
clear ¤
Clears the registry, unregistering all components.
Example:
# First register components
registry.register("button", ButtonComponent)
registry.register("card", CardComponent)
# Then clear
registry.clear()
# Then get all
registry.all()
# > {}
Source code in src/django_components/component_registry.py
get ¤
Retrieve a Component
class registered under the given name.
Parameters:
-
name
(str
) –The name under which the component was registered. Required.
Returns:
Raises:
NotRegistered
if the given name is not registered.
Example:
# First register component
registry.register("button", ButtonComponent)
# Then get
registry.get("button")
# > ButtonComponent
Source code in src/django_components/component_registry.py
register ¤
Register a Component
class with this registry under the given name.
A component MUST be registered before it can be used in a template such as:
Parameters:
-
name
(str
) –The name under which the component will be registered. Required.
-
component
(Type[Component]
) –The component class to register. Required.
Raises:
AlreadyRegistered
if a different component was already registered under the same name.
Example:
Source code in src/django_components/component_registry.py
unregister ¤
unregister(name: str) -> None
Unregister the Component
class that was registered under the given name.
Once a component is unregistered, it is no longer available in the templates.
Parameters:
-
name
(str
) –The name under which the component is registered. Required.
Raises:
NotRegistered
if the given name is not registered.
Example:
# First register component
registry.register("button", ButtonComponent)
# Then unregister
registry.unregister("button")
Source code in src/django_components/component_registry.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:
ComponentView ¤
ComponentsSettings ¤
Bases: NamedTuple
Settings available for django_components.
Example:
Attributes:
-
app_dirs
(Optional[Sequence[str]]
) –Specify the app-level directories that contain your components.
-
autodiscover
(Optional[bool]
) –Toggle whether to run autodiscovery at the Django server startup.
-
context_behavior
(Optional[ContextBehaviorType]
) –Configure whether, inside a component template, you can use variables from the outside
-
dirs
(Optional[Sequence[Union[str, PathLike, Tuple[str, str], Tuple[str, PathLike]]]]
) –Specify the directories that contain your components.
-
dynamic_component_name
(Optional[str]
) –By default, the dynamic component
-
forbidden_static_files
(Optional[List[Union[str, Pattern]]]
) –Deprecated. Use
-
libraries
(Optional[List[str]]
) –Configure extra python modules that should be loaded.
-
multiline_tags
(Optional[bool]
) –Enable / disable
-
reload_on_file_change
(Optional[bool]
) –This is relevant if you are using the project structure where
-
reload_on_template_change
(Optional[bool]
) –Deprecated. Use
-
static_files_allowed
(Optional[List[Union[str, Pattern]]]
) –A list of file extensions (including the leading dot) that define which files within
-
static_files_forbidden
(Optional[List[Union[str, Pattern]]]
) –A list of file extensions (including the leading dot) that define which files within
-
tag_formatter
(Optional[Union[TagFormatterABC, str]]
) –Configure what syntax is used inside Django templates to render components.
-
template_cache_size
(Optional[int]
) –Configure the maximum amount of Django templates to be cached.
app_dirs class-attribute
instance-attribute
¤
Specify the app-level directories that contain your components.
Defaults to ["components"]
. That is, for each Django app, we search <app>/components/
for components.
The paths must be relative to app, e.g.:
To search for <app>/my_comps/
.
These locations are searched during autodiscovery, or when you define HTML, JS, or CSS as separate files.
Set to empty list to disable app-level components:
autodiscover class-attribute
instance-attribute
¤
Toggle whether to run autodiscovery at the Django server startup.
Defaults to True
context_behavior class-attribute
instance-attribute
¤
context_behavior: Optional[ContextBehaviorType] = None
Configure whether, inside a component template, you can use variables from the outside ("django"
) or not ("isolated"
). This also affects what variables are available inside the {% fill %}
tags.
Also see Component context and scope.
Defaults to "django"
.
NOTE:
context_behavior
andslot_context_behavior
options were merged in v0.70.If you are migrating from BEFORE v0.67, set
context_behavior
to"django"
. From v0.67 to v0.78 (incl) the default value was"isolated"
.For v0.79 and later, the default is again
"django"
. See the rationale for change here.
dirs class-attribute
instance-attribute
¤
Specify the directories that contain your components.
Defaults to [Path(settings.BASE_DIR) / "components"]
. That is, the root components/
app.
Directories must be full paths, same as with STATICFILES_DIRS.
These locations are searched during autodiscovery, or when you define HTML, JS, or CSS as separate files.
Set to empty list to disable global components directories:
dynamic_component_name class-attribute
instance-attribute
¤
By default, the dynamic component is registered under the name "dynamic"
.
In case of a conflict, you can use this setting to change the component name used for the dynamic components.
After which you will be able to use the dynamic component with the new name:
forbidden_static_files class-attribute
instance-attribute
¤
Deprecated. Use COMPONENTS.static_files_forbidden
instead.
libraries class-attribute
instance-attribute
¤
Configure extra python modules that should be loaded.
This may be useful if you are not using the autodiscovery feature, or you need to load components from non-standard locations. Thus you can have a structure of components that is independent from your apps.
Expects a list of python module paths. Defaults to empty list.
Example:
COMPONENTS = ComponentsSettings(
libraries=[
"mysite.components.forms",
"mysite.components.buttons",
"mysite.components.cards",
],
)
This would be the equivalent of importing these modules from within Django's AppConfig.ready()
:
class MyAppConfig(AppConfig):
def ready(self):
import "mysite.components.forms"
import "mysite.components.buttons"
import "mysite.components.cards"
Manually loading libraries¤
In the rare case that you need to manually trigger the import of libraries, you can use the import_libraries()
function:
multiline_tags class-attribute
instance-attribute
¤
Enable / disable multiline support for template tags. If True
, template tags like {% component %}
or {{ my_var }}
can span multiple lines.
Defaults to True
.
Disable this setting if you are making custom modifications to Django's regular expression for parsing templates at django.template.base.tag_re
.
reload_on_file_change class-attribute
instance-attribute
¤
This is relevant if you are using the project structure where HTML, JS, CSS and Python are in separate files and nested in a directory.
In this case you may notice that when you are running a development server, the server sometimes does not reload when you change component files.
Django's native live reload logic handles only Python files and HTML template files. It does NOT reload when other file types change or when template files are nested more than one level deep.
The setting reload_on_file_change
fixes this, reloading the dev server even when your component's HTML, JS, or CSS changes.
If True
, django_components configures Django to reload when files inside COMPONENTS.dirs
or COMPONENTS.app_dirs
change.
See Reload dev server on component file changes.
Defaults to False
.
Warning
This setting should be enabled only for the dev environment!
reload_on_template_change class-attribute
instance-attribute
¤
Deprecated. Use COMPONENTS.reload_on_file_change
instead.
static_files_allowed class-attribute
instance-attribute
¤
A list of file extensions (including the leading dot) that define which files within COMPONENTS.dirs
or COMPONENTS.app_dirs
are treated as static files.
If a file is matched against any of the patterns, it's considered a static file. Such files are collected when running collectstatic
, and can be accessed under the static file endpoint.
You can also pass in compiled regexes (re.Pattern
) for more advanced patterns.
By default, JS, CSS, and common image and font file formats are considered static files:
COMPONENTS = ComponentsSettings(
static_files_allowed=[
".css",
".js", ".jsx", ".ts", ".tsx",
# Images
".apng", ".png", ".avif", ".gif", ".jpg",
".jpeg", ".jfif", ".pjpeg", ".pjp", ".svg",
".webp", ".bmp", ".ico", ".cur", ".tif", ".tiff",
# Fonts
".eot", ".ttf", ".woff", ".otf", ".svg",
],
)
Warning
Exposing your Python files can be a security vulnerability. See Security notes.
static_files_forbidden class-attribute
instance-attribute
¤
A list of file extensions (including the leading dot) that define which files within COMPONENTS.dirs
or COMPONENTS.app_dirs
will NEVER be treated as static files.
If a file is matched against any of the patterns, it will never be considered a static file, even if the file matches a pattern in static_files_allowed
.
Use this setting together with static_files_allowed
for a fine control over what file types will be exposed.
You can also pass in compiled regexes (re.Pattern
) for more advanced patterns.
By default, any HTML and Python are considered NOT static files:
COMPONENTS = ComponentsSettings(
static_files_forbidden=[
".html", ".django", ".dj", ".tpl",
# Python files
".py", ".pyc",
],
)
Warning
Exposing your Python files can be a security vulnerability. See Security notes.
tag_formatter class-attribute
instance-attribute
¤
tag_formatter: Optional[Union[TagFormatterABC, str]] = None
Configure what syntax is used inside Django templates to render components. See the available tag formatters.
Defaults to "django_components.component_formatter"
.
Learn more about Customizing component tags with TagFormatter.
Can be set either as direct reference:
from django_components import component_formatter
COMPONENTS = ComponentsSettings(
"tag_formatter": component_formatter
)
Or as an import string;
Examples:
template_cache_size class-attribute
instance-attribute
¤
Configure the maximum amount of Django templates to be cached.
Defaults to 128
.
Each time a Django template is rendered, it is cached to a global in-memory cache (using Python's lru_cache
decorator). This speeds up the next render of the component. As the same component is often used many times on the same page, these savings add up.
By default the cache holds 128 component templates in memory, which should be enough for most sites. But if you have a lot of components, or if you are overriding Component.get_template()
to render many dynamic templates, you can increase this number.
To remove the cache limit altogether and cache everything, set template_cache_size
to None
.
If you want to add templates to the cache yourself, you can use cached_template()
:
ContextBehavior ¤
Configure how (and whether) the context is passed to the component fills and what variables are available inside the {% fill %}
tags.
Also see Component context and scope.
Options:
django
: With this setting, component fills behave as usual Django tags.isolated
: This setting makes the component fills behave similar to Vue or React.
Attributes:
-
DJANGO
–With this setting, component fills behave as usual Django tags.
-
ISOLATED
–This setting makes the component fills behave similar to Vue or React, where
DJANGO class-attribute
instance-attribute
¤
With this setting, component fills behave as usual Django tags. That is, they enrich the context, and pass it along.
- Component fills use the context of the component they are within.
- Variables from
Component.get_context_data()
are available to the component fill.
Example:
Given this template
{% with cheese="feta" %}
{% component 'my_comp' %}
{{ my_var }} # my_var
{{ cheese }} # cheese
{% endcomponent %}
{% endwith %}
and this context returned from the Component.get_context_data()
method
Then if component "my_comp" defines context
Then this will render:
Because "my_comp" overrides the variable "my_var", so {{ my_var }}
equals 456
.
And variable "cheese" will equal feta
, because the fill CAN access the current context.
ISOLATED class-attribute
instance-attribute
¤
This setting makes the component fills behave similar to Vue or React, where the fills use EXCLUSIVELY the context variables defined in Component.get_context_data()
.
Example:
Given this template
{% with cheese="feta" %}
{% component 'my_comp' %}
{{ my_var }} # my_var
{{ cheese }} # cheese
{% endcomponent %}
{% endwith %}
and this context returned from the get_context_data()
method
Then if component "my_comp" defines context
Then this will render:
Because both variables "my_var" and "cheese" are taken from the root context. Since "cheese" is not defined in root context, it's empty.
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
EmptyDict ¤
Bases: TypedDict
TypedDict with no members.
You can use this to define a Component that accepts NO kwargs, or NO slots, or returns NO data from Component.get_context_data()
/ Component.get_js_data()
/ Component.get_css_data()
:
Accepts NO kwargs:
from django_components import Component, EmptyDict
class Table(Component(Any, EmptyDict, Any, Any, Any, Any))
...
Accepts NO slots:
from django_components import Component, EmptyDict
class Table(Component(Any, Any, EmptyDict, Any, Any, Any))
...
Returns NO data from get_context_data()
:
from django_components import Component, EmptyDict
class Table(Component(Any, Any, Any, EmptyDict, Any, Any))
...
Going back to the example with NO kwargs, when you then call Component.render()
or Component.render_to_response()
, the kwargs
parameter will raise type error if kwargs
is anything else than an empty dict.
Omitting kwargs
is also fine:
Other values are not allowed. This will raise an error with MyPy:
NotRegistered ¤
Bases: Exception
Raised when you try to access a Component, but it's NOT registered with given ComponentRegistry.
RegistrySettings ¤
Bases: NamedTuple
Configuration for a ComponentRegistry
.
These settings define how the components registered with this registry will behave when rendered.
from django_components import ComponentRegistry, RegistrySettings
registry_settings = RegistrySettings(
context_behavior="django",
tag_formatter="django_components.component_shorthand_formatter",
)
registry = ComponentRegistry(settings=registry_settings)
Attributes:
-
CONTEXT_BEHAVIOR
(Optional[ContextBehaviorType]
) –Deprecated. Use
context_behavior
instead. Will be removed in v1. -
TAG_FORMATTER
(Optional[Union[TagFormatterABC, str]]
) –Deprecated. Use
tag_formatter
instead. Will be removed in v1. -
context_behavior
(Optional[ContextBehaviorType]
) –Same as the global
-
tag_formatter
(Optional[Union[TagFormatterABC, str]]
) –Same as the global
CONTEXT_BEHAVIOR class-attribute
instance-attribute
¤
CONTEXT_BEHAVIOR: Optional[ContextBehaviorType] = None
Deprecated. Use context_behavior
instead. Will be removed in v1.
Same as the global COMPONENTS.context_behavior
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.context_behavior
setting.
TAG_FORMATTER class-attribute
instance-attribute
¤
TAG_FORMATTER: Optional[Union[TagFormatterABC, str]] = None
Deprecated. Use tag_formatter
instead. Will be removed in v1.
Same as the global COMPONENTS.tag_formatter
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.tag_formatter
setting.
context_behavior class-attribute
instance-attribute
¤
context_behavior: Optional[ContextBehaviorType] = None
Same as the global COMPONENTS.context_behavior
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.context_behavior
setting.
tag_formatter class-attribute
instance-attribute
¤
tag_formatter: Optional[Union[TagFormatterABC, str]] = None
Same as the global COMPONENTS.tag_formatter
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.tag_formatter
setting.
ShorthandComponentFormatter ¤
Bases: TagFormatterABC
The component tag formatter that uses {% <name> %}
/ {% end<name> %}
tags.
This is similar to django-web-components and django-slippers syntax.
Example as block:
Example as inlined tag:
Slot dataclass
¤
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
TagFormatterABC ¤
Bases: ABC
Abstract base class for defining custom tag formatters.
Tag formatters define how the component tags are used in the template.
Read more about Tag formatter.
For example, with the default tag formatter (ComponentFormatter
), components are written as:
While with the shorthand tag formatter (ShorthandComponentFormatter
), components are written as:
Example:
Implementation for ShorthandComponentFormatter
:
from djagno_components import TagFormatterABC, TagResult
class ShorthandComponentFormatter(TagFormatterABC):
def start_tag(self, name: str) -> str:
return name
def end_tag(self, name: str) -> str:
return f"end{name}"
def parse(self, tokens: List[str]) -> TagResult:
tokens = [*tokens]
name = tokens.pop(0)
return TagResult(name, tokens)
Methods:
-
end_tag
–Formats the end tag of a block component.
-
parse
–Given the tokens (words) passed to a component start tag, this function extracts
-
start_tag
–Formats the start tag of a component.
end_tag abstractmethod
¤
parse abstractmethod
¤
Given the tokens (words) passed to a component start tag, this function extracts the component name from the tokens list, and returns TagResult
, which is a tuple of (component_name, remaining_tokens)
.
Parameters:
-
tokens
([List(str]
) –List of tokens passed to the component tag.
Returns:
-
TagResult
(TagResult
) –Parsed component name and remaining tokens.
Example:
Assuming we used a component in a template like this:
This function receives a list of tokens:
component
is the tag name, which we drop."my_comp"
is the component name, but we must remove the extra quotes.- The remaining tokens we pass unmodified, as that's the input to the component.
So in the end, we return:
Source code in src/django_components/tag_formatter.py
TagProtectedError ¤
Bases: Exception
The way the TagFormatter
works is that, based on which start and end tags are used for rendering components, the ComponentRegistry
behind the scenes un-/registers the template tags with the associated instance of Django's Library
.
In other words, if I have registered a component "table"
, and I use the shorthand syntax:
Then ComponentRegistry
registers the tag table
onto the Django's Library instance.
However, that means that if we registered a component "slot"
, then we would overwrite the {% slot %}
tag from django_components.
Thus, this exception is raised when a component is attempted to be registered under a forbidden name, such that it would overwrite one of django_component's own template tags.
TagResult ¤
Bases: NamedTuple
The return value from TagFormatter.parse()
.
Read more about Tag formatter.
Attributes:
-
component_name
(str
) –Component name extracted from the template tag
-
tokens
(List[str]
) –Remaining tokens (words) that were passed to the tag, with component name removed
autodiscover ¤
Search for all python files in COMPONENTS.dirs
and COMPONENTS.app_dirs
and import them.
See Autodiscovery.
Parameters:
-
map_module
(Callable[[str], str]
, default:None
) –Map the module paths with
map_module
function. This serves as an escape hatch for when you need to use this function in tests.
Returns:
To get the same list of modules that autodiscover()
would return, but without importing them, use get_component_files()
:
Source code in src/django_components/autodiscovery.py
cached_template ¤
cached_template(
template_string: str,
template_cls: Optional[Type[Template]] = None,
origin: Optional[Origin] = None,
name: Optional[str] = None,
engine: Optional[Any] = None,
) -> Template
Create a Template instance that will be cached as per the COMPONENTS.template_cache_size
setting.
Parameters:
-
template_string
(str
) –Template as a string, same as the first argument to Django's
Template
. Required. -
template_cls
(Type[Template]
, default:None
) –Specify the Template class that should be instantiated. Defaults to Django's
Template
class. -
origin
(Type[Origin]
, default:None
) –Sets
Template.Origin
. -
name
(Type[str]
, default:None
) –Sets
Template.name
-
engine
(Type[Any]
, default:None
) –Sets
Template.engine
from django_components import cached_template
template = cached_template("Variable: {{ variable }}")
# You can optionally specify Template class, and other Template inputs:
class MyTemplate(Template):
pass
template = cached_template(
"Variable: {{ variable }}",
template_cls=MyTemplate,
name=...
origin=...
engine=...
)
Source code in src/django_components/template.py
get_component_dirs ¤
Get directories that may contain component files.
This is the heart of all features that deal with filesystem and file lookup. Autodiscovery, Django template resolution, static file resolution - They all use this.
Parameters:
-
include_apps
(bool
, default:True
) –Include directories from installed Django apps. Defaults to
True
.
Returns:
get_component_dirs()
searches for dirs set in COMPONENTS.dirs
settings. If none set, defaults to searching for a "components"
app.
In addition to that, also all installed Django apps are checked whether they contain directories as set in COMPONENTS.app_dirs
(e.g. [app]/components
).
Notes:
-
Paths that do not point to directories are ignored.
-
BASE_DIR
setting is required. -
The paths in
COMPONENTS.dirs
must be absolute paths.
Source code in src/django_components/util/loader.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
get_component_files ¤
get_component_files(suffix: Optional[str] = None) -> List[ComponentFileEntry]
Search for files within the component directories (as defined in get_component_dirs()
).
Requires BASE_DIR
setting to be set.
Parameters:
-
suffix
(Optional[str]
, default:None
) –The suffix to search for. E.g.
.py
,.js
,.css
. Defaults toNone
, which will search for all files.
Returns:
-
List[ComponentFileEntry]
–List[ComponentFileEntry] A list of entries that contain both the filesystem path and the python import path (dot path).
Example:
Source code in src/django_components/util/loader.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
import_libraries ¤
Import modules set in COMPONENTS.libraries
setting.
See Autodiscovery.
Parameters:
-
map_module
(Callable[[str], str]
, default:None
) –Map the module paths with
map_module
function. This serves as an escape hatch for when you need to use this function in tests.
Returns:
Examples:
Normal usage - load libraries after Django has loaded
from django_components import import_libraries
class MyAppConfig(AppConfig):
def ready(self):
import_libraries()
Potential usage in tests
from django_components import import_libraries
import_libraries(lambda path: path.replace("tests.", "myapp."))
Source code in src/django_components/autodiscovery.py
register ¤
register(name: str, registry: Optional[ComponentRegistry] = None) -> Callable[
[Type[Component[ArgsType, KwargsType, SlotsType, DataType, JsDataType, CssDataType]]],
Type[Component[ArgsType, KwargsType, SlotsType, DataType, JsDataType, CssDataType]],
]
Class decorator for registering a component to a component registry.
Parameters:
-
name
(str
) –Registered name. This is the name by which the component will be accessed from within a template when using the
{% component %}
tag. Required. -
registry
(ComponentRegistry
, default:None
) –Specify the registry to which to register this component. If omitted, component is registered to the default registry.
Raises:
-
AlreadyRegistered
–If there is already a component registered under the same name.
Examples:
from django_components import Component, register
@register("my_component")
class MyComponent(Component):
...
Specifing ComponentRegistry
the component should be registered to by setting the registry
kwarg:
from django.template import Library
from django_components import Component, ComponentRegistry, register
my_lib = Library()
my_reg = ComponentRegistry(library=my_lib)
@register("my_component", registry=my_reg)
class MyComponent(Component):
...
Source code in src/django_components/component_registry.py
render_dependencies ¤
Given a string that contains parts that were rendered by components, this function inserts all used JS and CSS.
By default, the string is parsed as an HTML and: - CSS is inserted at the end of <head>
(if present) - JS is inserted at the end of <body>
(if present)
If you used {% component_js_dependencies %}
or {% component_css_dependencies %}
, then the JS and CSS will be inserted only at these locations.
Example:
def my_view(request):
template = Template('''
{% load components %}
<!doctype html>
<html>
<head></head>
<body>
<h1>{{ table_name }}</h1>
{% component "table" name=table_name / %}
</body>
</html>
''')
html = template.render(
Context({
"table_name": request.GET["name"],
})
)
# This inserts components' JS and CSS
processed_html = render_dependencies(html)
return HttpResponse(processed_html)
Source code in src/django_components/dependencies.py
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 345 346 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 |
|
app_settings ¤
Classes:
-
ComponentsSettings
–Settings available for django_components.
-
ContextBehavior
–Configure how (and whether) the context is passed to the component fills
ComponentsSettings ¤
Bases: NamedTuple
Settings available for django_components.
Example:
Attributes:
-
app_dirs
(Optional[Sequence[str]]
) –Specify the app-level directories that contain your components.
-
autodiscover
(Optional[bool]
) –Toggle whether to run autodiscovery at the Django server startup.
-
context_behavior
(Optional[ContextBehaviorType]
) –Configure whether, inside a component template, you can use variables from the outside
-
dirs
(Optional[Sequence[Union[str, PathLike, Tuple[str, str], Tuple[str, PathLike]]]]
) –Specify the directories that contain your components.
-
dynamic_component_name
(Optional[str]
) –By default, the dynamic component
-
forbidden_static_files
(Optional[List[Union[str, Pattern]]]
) –Deprecated. Use
-
libraries
(Optional[List[str]]
) –Configure extra python modules that should be loaded.
-
multiline_tags
(Optional[bool]
) –Enable / disable
-
reload_on_file_change
(Optional[bool]
) –This is relevant if you are using the project structure where
-
reload_on_template_change
(Optional[bool]
) –Deprecated. Use
-
static_files_allowed
(Optional[List[Union[str, Pattern]]]
) –A list of file extensions (including the leading dot) that define which files within
-
static_files_forbidden
(Optional[List[Union[str, Pattern]]]
) –A list of file extensions (including the leading dot) that define which files within
-
tag_formatter
(Optional[Union[TagFormatterABC, str]]
) –Configure what syntax is used inside Django templates to render components.
-
template_cache_size
(Optional[int]
) –Configure the maximum amount of Django templates to be cached.
app_dirs class-attribute
instance-attribute
¤
Specify the app-level directories that contain your components.
Defaults to ["components"]
. That is, for each Django app, we search <app>/components/
for components.
The paths must be relative to app, e.g.:
To search for <app>/my_comps/
.
These locations are searched during autodiscovery, or when you define HTML, JS, or CSS as separate files.
Set to empty list to disable app-level components:
autodiscover class-attribute
instance-attribute
¤
Toggle whether to run autodiscovery at the Django server startup.
Defaults to True
context_behavior class-attribute
instance-attribute
¤
context_behavior: Optional[ContextBehaviorType] = None
Configure whether, inside a component template, you can use variables from the outside ("django"
) or not ("isolated"
). This also affects what variables are available inside the {% fill %}
tags.
Also see Component context and scope.
Defaults to "django"
.
NOTE:
context_behavior
andslot_context_behavior
options were merged in v0.70.If you are migrating from BEFORE v0.67, set
context_behavior
to"django"
. From v0.67 to v0.78 (incl) the default value was"isolated"
.For v0.79 and later, the default is again
"django"
. See the rationale for change here.
dirs class-attribute
instance-attribute
¤
Specify the directories that contain your components.
Defaults to [Path(settings.BASE_DIR) / "components"]
. That is, the root components/
app.
Directories must be full paths, same as with STATICFILES_DIRS.
These locations are searched during autodiscovery, or when you define HTML, JS, or CSS as separate files.
Set to empty list to disable global components directories:
dynamic_component_name class-attribute
instance-attribute
¤
By default, the dynamic component is registered under the name "dynamic"
.
In case of a conflict, you can use this setting to change the component name used for the dynamic components.
After which you will be able to use the dynamic component with the new name:
forbidden_static_files class-attribute
instance-attribute
¤
Deprecated. Use COMPONENTS.static_files_forbidden
instead.
libraries class-attribute
instance-attribute
¤
Configure extra python modules that should be loaded.
This may be useful if you are not using the autodiscovery feature, or you need to load components from non-standard locations. Thus you can have a structure of components that is independent from your apps.
Expects a list of python module paths. Defaults to empty list.
Example:
COMPONENTS = ComponentsSettings(
libraries=[
"mysite.components.forms",
"mysite.components.buttons",
"mysite.components.cards",
],
)
This would be the equivalent of importing these modules from within Django's AppConfig.ready()
:
class MyAppConfig(AppConfig):
def ready(self):
import "mysite.components.forms"
import "mysite.components.buttons"
import "mysite.components.cards"
Manually loading libraries¤
In the rare case that you need to manually trigger the import of libraries, you can use the import_libraries()
function:
multiline_tags class-attribute
instance-attribute
¤
Enable / disable multiline support for template tags. If True
, template tags like {% component %}
or {{ my_var }}
can span multiple lines.
Defaults to True
.
Disable this setting if you are making custom modifications to Django's regular expression for parsing templates at django.template.base.tag_re
.
reload_on_file_change class-attribute
instance-attribute
¤
This is relevant if you are using the project structure where HTML, JS, CSS and Python are in separate files and nested in a directory.
In this case you may notice that when you are running a development server, the server sometimes does not reload when you change component files.
Django's native live reload logic handles only Python files and HTML template files. It does NOT reload when other file types change or when template files are nested more than one level deep.
The setting reload_on_file_change
fixes this, reloading the dev server even when your component's HTML, JS, or CSS changes.
If True
, django_components configures Django to reload when files inside COMPONENTS.dirs
or COMPONENTS.app_dirs
change.
See Reload dev server on component file changes.
Defaults to False
.
Warning
This setting should be enabled only for the dev environment!
reload_on_template_change class-attribute
instance-attribute
¤
Deprecated. Use COMPONENTS.reload_on_file_change
instead.
static_files_allowed class-attribute
instance-attribute
¤
A list of file extensions (including the leading dot) that define which files within COMPONENTS.dirs
or COMPONENTS.app_dirs
are treated as static files.
If a file is matched against any of the patterns, it's considered a static file. Such files are collected when running collectstatic
, and can be accessed under the static file endpoint.
You can also pass in compiled regexes (re.Pattern
) for more advanced patterns.
By default, JS, CSS, and common image and font file formats are considered static files:
COMPONENTS = ComponentsSettings(
static_files_allowed=[
".css",
".js", ".jsx", ".ts", ".tsx",
# Images
".apng", ".png", ".avif", ".gif", ".jpg",
".jpeg", ".jfif", ".pjpeg", ".pjp", ".svg",
".webp", ".bmp", ".ico", ".cur", ".tif", ".tiff",
# Fonts
".eot", ".ttf", ".woff", ".otf", ".svg",
],
)
Warning
Exposing your Python files can be a security vulnerability. See Security notes.
static_files_forbidden class-attribute
instance-attribute
¤
A list of file extensions (including the leading dot) that define which files within COMPONENTS.dirs
or COMPONENTS.app_dirs
will NEVER be treated as static files.
If a file is matched against any of the patterns, it will never be considered a static file, even if the file matches a pattern in static_files_allowed
.
Use this setting together with static_files_allowed
for a fine control over what file types will be exposed.
You can also pass in compiled regexes (re.Pattern
) for more advanced patterns.
By default, any HTML and Python are considered NOT static files:
COMPONENTS = ComponentsSettings(
static_files_forbidden=[
".html", ".django", ".dj", ".tpl",
# Python files
".py", ".pyc",
],
)
Warning
Exposing your Python files can be a security vulnerability. See Security notes.
tag_formatter class-attribute
instance-attribute
¤
tag_formatter: Optional[Union[TagFormatterABC, str]] = None
Configure what syntax is used inside Django templates to render components. See the available tag formatters.
Defaults to "django_components.component_formatter"
.
Learn more about Customizing component tags with TagFormatter.
Can be set either as direct reference:
from django_components import component_formatter
COMPONENTS = ComponentsSettings(
"tag_formatter": component_formatter
)
Or as an import string;
Examples:
template_cache_size class-attribute
instance-attribute
¤
Configure the maximum amount of Django templates to be cached.
Defaults to 128
.
Each time a Django template is rendered, it is cached to a global in-memory cache (using Python's lru_cache
decorator). This speeds up the next render of the component. As the same component is often used many times on the same page, these savings add up.
By default the cache holds 128 component templates in memory, which should be enough for most sites. But if you have a lot of components, or if you are overriding Component.get_template()
to render many dynamic templates, you can increase this number.
To remove the cache limit altogether and cache everything, set template_cache_size
to None
.
If you want to add templates to the cache yourself, you can use cached_template()
:
ContextBehavior ¤
Configure how (and whether) the context is passed to the component fills and what variables are available inside the {% fill %}
tags.
Also see Component context and scope.
Options:
django
: With this setting, component fills behave as usual Django tags.isolated
: This setting makes the component fills behave similar to Vue or React.
Attributes:
-
DJANGO
–With this setting, component fills behave as usual Django tags.
-
ISOLATED
–This setting makes the component fills behave similar to Vue or React, where
DJANGO class-attribute
instance-attribute
¤
With this setting, component fills behave as usual Django tags. That is, they enrich the context, and pass it along.
- Component fills use the context of the component they are within.
- Variables from
Component.get_context_data()
are available to the component fill.
Example:
Given this template
{% with cheese="feta" %}
{% component 'my_comp' %}
{{ my_var }} # my_var
{{ cheese }} # cheese
{% endcomponent %}
{% endwith %}
and this context returned from the Component.get_context_data()
method
Then if component "my_comp" defines context
Then this will render:
Because "my_comp" overrides the variable "my_var", so {{ my_var }}
equals 456
.
And variable "cheese" will equal feta
, because the fill CAN access the current context.
ISOLATED class-attribute
instance-attribute
¤
This setting makes the component fills behave similar to Vue or React, where the fills use EXCLUSIVELY the context variables defined in Component.get_context_data()
.
Example:
Given this template
{% with cheese="feta" %}
{% component 'my_comp' %}
{{ my_var }} # my_var
{{ cheese }} # cheese
{% endcomponent %}
{% endwith %}
and this context returned from the get_context_data()
method
Then if component "my_comp" defines context
Then this will render:
Because both variables "my_var" and "cheese" are taken from the root context. Since "cheese" is not defined in root context, it's empty.
attributes ¤
Functions:
-
append_attributes
–Merges the key-value pairs and returns a new dictionary.
-
attributes_to_string
–Convert a dict of attributes to a string.
append_attributes ¤
Merges the key-value pairs and returns a new dictionary.
If a key is present multiple times, its values are concatenated with a space character as separator in the final dictionary.
Source code in src/django_components/attributes.py
attributes_to_string ¤
Convert a dict of attributes to a string.
Source code in src/django_components/attributes.py
autodiscovery ¤
Functions:
-
autodiscover
–Search for all python files in
-
import_libraries
–Import modules set in
autodiscover ¤
Search for all python files in COMPONENTS.dirs
and COMPONENTS.app_dirs
and import them.
See Autodiscovery.
Parameters:
-
map_module
(Callable[[str], str]
, default:None
) –Map the module paths with
map_module
function. This serves as an escape hatch for when you need to use this function in tests.
Returns:
To get the same list of modules that autodiscover()
would return, but without importing them, use get_component_files()
:
Source code in src/django_components/autodiscovery.py
import_libraries ¤
Import modules set in COMPONENTS.libraries
setting.
See Autodiscovery.
Parameters:
-
map_module
(Callable[[str], str]
, default:None
) –Map the module paths with
map_module
function. This serves as an escape hatch for when you need to use this function in tests.
Returns:
Examples:
Normal usage - load libraries after Django has loaded
from django_components import import_libraries
class MyAppConfig(AppConfig):
def ready(self):
import_libraries()
Potential usage in tests
from django_components import import_libraries
import_libraries(lambda path: path.replace("tests.", "myapp."))
Source code in src/django_components/autodiscovery.py
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:
ComponentView ¤
component_media ¤
Classes:
-
ComponentMediaInput
–Defines JS and CSS media files associated with this component.
-
MediaMeta
–Metaclass for handling media files for components.
ComponentMediaInput ¤
Defines JS and CSS media files associated with this component.
MediaMeta ¤
Bases: MediaDefiningClass
Metaclass for handling media files for components.
Similar to MediaDefiningClass
, this class supports the use of Media
attribute to define associated JS/CSS files, which are then available under media
attribute as a instance of Media
class.
This subclass has following changes:
1. Support for multiple interfaces of JS/CSS¤
-
As plain strings
-
As lists
-
[CSS ONLY] Dicts of strings
-
[CSS ONLY] Dicts of lists
2. Media are first resolved relative to class definition file¤
E.g. if in a directory my_comp
you have script.js
and my_comp.py
, and my_comp.py
looks like this:
Then script.js
will be resolved as my_comp/script.js
.
3. Media can be defined as str, bytes, PathLike, SafeString, or function of thereof¤
E.g.:
def lazy_eval_css():
# do something
return path
class MyComponent(Component):
class Media:
js = b"script.js"
css = lazy_eval_css
4. Subclass Media
class with media_class
¤
Normal MediaDefiningClass
creates an instance of Media
class under the media
attribute. This class allows to override which class will be instantiated with media_class
attribute:
class MyMedia(Media):
def render_js(self):
...
class MyComponent(Component):
media_class = MyMedia
def get_context_data(self):
assert isinstance(self.media, MyMedia)
component_registry ¤
Classes:
-
AlreadyRegistered
–Raised when you try to register a Component,
-
ComponentRegistry
–Manages components and makes them available
-
NotRegistered
–Raised when you try to access a Component,
-
RegistrySettings
–Configuration for a
ComponentRegistry
.
Functions:
Attributes:
-
registry
(ComponentRegistry
) –The default and global component registry.
registry module-attribute
¤
registry: ComponentRegistry = ComponentRegistry()
The default and global component registry. Use this instance to directly register or remove components:
AlreadyRegistered ¤
Bases: Exception
Raised when you try to register a Component, but it's already registered with given ComponentRegistry.
ComponentRegistry ¤
ComponentRegistry(
library: Optional[Library] = None, settings: Optional[Union[RegistrySettings, Callable[[ComponentRegistry], RegistrySettings]]] = None
)
Manages components and makes them available in the template, by default as {% component %}
tags.
To enable a component to be used in a template, the component must be registered with a component registry.
When you register a component to a registry, behind the scenes the registry automatically adds the component's template tag (e.g. {% component %}
to the Library
. And the opposite happens when you unregister a component - the tag is removed.
Parameters:
-
library
(Library
, default:None
) –Django
Library
associated with this registry. If omitted, the default Library instance from django_components is used. -
settings
(Union[RegistrySettings, Callable[[ComponentRegistry], RegistrySettings]]
, default:None
) –Configure how the components registered with this registry will behave when rendered. See
RegistrySettings
. Can be either a static value or a callable that returns the settings. If omitted, the settings fromCOMPONENTS
are used.
Notes:
- The default registry is available as
django_components.registry
. - The default registry is used when registering components with
@register
decorator.
Example:
# Use with default Library
registry = ComponentRegistry()
# Or a custom one
my_lib = Library()
registry = ComponentRegistry(library=my_lib)
# Usage
registry.register("button", ButtonComponent)
registry.register("card", CardComponent)
registry.all()
registry.clear()
registry.get()
Using registry to share components¤
You can use component registry for isolating or "packaging" components:
-
Create new instance of
ComponentRegistry
and Library: -
Register components to the registry:
-
In your target project, load the Library associated with the registry:
-
Use the registered components in your templates:
Methods:
-
all
–Retrieve all registered
Component
classes. -
clear
–Clears the registry, unregistering all components.
-
get
–Retrieve a
Component
-
register
–Register a
Component
class -
unregister
–Unregister the
Component
class
Attributes:
-
library
(Library
) –The template tag
Library
-
settings
(InternalRegistrySettings
) –Registry settings configured for this registry.
Source code in src/django_components/component_registry.py
settings property
¤
Registry settings configured for this registry.
all ¤
Retrieve all registered Component
classes.
Returns:
-
Dict[str, Type[Component]]
–Dict[str, Type[Component]]: A dictionary of component names to component classes
Example:
# First register components
registry.register("button", ButtonComponent)
registry.register("card", CardComponent)
# Then get all
registry.all()
# > {
# > "button": ButtonComponent,
# > "card": CardComponent,
# > }
Source code in src/django_components/component_registry.py
clear ¤
Clears the registry, unregistering all components.
Example:
# First register components
registry.register("button", ButtonComponent)
registry.register("card", CardComponent)
# Then clear
registry.clear()
# Then get all
registry.all()
# > {}
Source code in src/django_components/component_registry.py
get ¤
Retrieve a Component
class registered under the given name.
Parameters:
-
name
(str
) –The name under which the component was registered. Required.
Returns:
Raises:
NotRegistered
if the given name is not registered.
Example:
# First register component
registry.register("button", ButtonComponent)
# Then get
registry.get("button")
# > ButtonComponent
Source code in src/django_components/component_registry.py
register ¤
Register a Component
class with this registry under the given name.
A component MUST be registered before it can be used in a template such as:
Parameters:
-
name
(str
) –The name under which the component will be registered. Required.
-
component
(Type[Component]
) –The component class to register. Required.
Raises:
AlreadyRegistered
if a different component was already registered under the same name.
Example:
Source code in src/django_components/component_registry.py
unregister ¤
unregister(name: str) -> None
Unregister the Component
class that was registered under the given name.
Once a component is unregistered, it is no longer available in the templates.
Parameters:
-
name
(str
) –The name under which the component is registered. Required.
Raises:
NotRegistered
if the given name is not registered.
Example:
# First register component
registry.register("button", ButtonComponent)
# Then unregister
registry.unregister("button")
Source code in src/django_components/component_registry.py
NotRegistered ¤
Bases: Exception
Raised when you try to access a Component, but it's NOT registered with given ComponentRegistry.
RegistrySettings ¤
Bases: NamedTuple
Configuration for a ComponentRegistry
.
These settings define how the components registered with this registry will behave when rendered.
from django_components import ComponentRegistry, RegistrySettings
registry_settings = RegistrySettings(
context_behavior="django",
tag_formatter="django_components.component_shorthand_formatter",
)
registry = ComponentRegistry(settings=registry_settings)
Attributes:
-
CONTEXT_BEHAVIOR
(Optional[ContextBehaviorType]
) –Deprecated. Use
context_behavior
instead. Will be removed in v1. -
TAG_FORMATTER
(Optional[Union[TagFormatterABC, str]]
) –Deprecated. Use
tag_formatter
instead. Will be removed in v1. -
context_behavior
(Optional[ContextBehaviorType]
) –Same as the global
-
tag_formatter
(Optional[Union[TagFormatterABC, str]]
) –Same as the global
CONTEXT_BEHAVIOR class-attribute
instance-attribute
¤
CONTEXT_BEHAVIOR: Optional[ContextBehaviorType] = None
Deprecated. Use context_behavior
instead. Will be removed in v1.
Same as the global COMPONENTS.context_behavior
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.context_behavior
setting.
TAG_FORMATTER class-attribute
instance-attribute
¤
TAG_FORMATTER: Optional[Union[TagFormatterABC, str]] = None
Deprecated. Use tag_formatter
instead. Will be removed in v1.
Same as the global COMPONENTS.tag_formatter
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.tag_formatter
setting.
context_behavior class-attribute
instance-attribute
¤
context_behavior: Optional[ContextBehaviorType] = None
Same as the global COMPONENTS.context_behavior
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.context_behavior
setting.
tag_formatter class-attribute
instance-attribute
¤
tag_formatter: Optional[Union[TagFormatterABC, str]] = None
Same as the global COMPONENTS.tag_formatter
setting, but for this registry.
If omitted, defaults to the global COMPONENTS.tag_formatter
setting.
register ¤
register(name: str, registry: Optional[ComponentRegistry] = None) -> Callable[
[Type[Component[ArgsType, KwargsType, SlotsType, DataType, JsDataType, CssDataType]]],
Type[Component[ArgsType, KwargsType, SlotsType, DataType, JsDataType, CssDataType]],
]
Class decorator for registering a component to a component registry.
Parameters:
-
name
(str
) –Registered name. This is the name by which the component will be accessed from within a template when using the
{% component %}
tag. Required. -
registry
(ComponentRegistry
, default:None
) –Specify the registry to which to register this component. If omitted, component is registered to the default registry.
Raises:
-
AlreadyRegistered
–If there is already a component registered under the same name.
Examples:
from django_components import Component, register
@register("my_component")
class MyComponent(Component):
...
Specifing ComponentRegistry
the component should be registered to by setting the registry
kwarg:
from django.template import Library
from django_components import Component, ComponentRegistry, register
my_lib = Library()
my_reg = ComponentRegistry(library=my_lib)
@register("my_component", registry=my_reg)
class MyComponent(Component):
...
Source code in src/django_components/component_registry.py
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=...)
Source code in src/django_components/component.py
context ¤
This file centralizes various ways we use Django's Context class pass data across components, nodes, slots, and contexts.
You can think of the Context as our storage system.
Functions:
-
copy_forloop_context
–Forward the info about the current loop
-
get_injected_context_var
–Retrieve a 'provided' field. The field MUST have been previously 'provided'
-
set_provided_context_var
–'Provide' given data under given key. In other words, this data can be retrieved
copy_forloop_context ¤
Forward the info about the current loop
Source code in src/django_components/context.py
get_injected_context_var ¤
get_injected_context_var(component_name: str, context: Context, key: str, default: Optional[Any] = None) -> Any
Retrieve a 'provided' field. The field MUST have been previously 'provided' by the component's ancestors using the {% provide %}
template tag.
Source code in src/django_components/context.py
set_provided_context_var ¤
'Provide' given data under given key. In other words, this data can be retrieved using self.inject(key)
inside of get_context_data()
method of components that are nested inside the {% provide %}
tag.
Source code in src/django_components/context.py
dependencies ¤
All code related to management of component dependencies (JS and CSS scripts)
Modules:
-
types
–Helper types for IDEs.
Classes:
-
ComponentDependencyMiddleware
–Middleware that inserts CSS/JS dependencies for all rendered
Functions:
-
render_dependencies
–Given a string that contains parts that were rendered by components,
ComponentDependencyMiddleware ¤
ComponentDependencyMiddleware(get_response: Callable[[HttpRequest], HttpResponse])
Middleware that inserts CSS/JS dependencies for all rendered components at points marked with template tags.
Source code in src/django_components/dependencies.py
render_dependencies ¤
Given a string that contains parts that were rendered by components, this function inserts all used JS and CSS.
By default, the string is parsed as an HTML and: - CSS is inserted at the end of <head>
(if present) - JS is inserted at the end of <body>
(if present)
If you used {% component_js_dependencies %}
or {% component_css_dependencies %}
, then the JS and CSS will be inserted only at these locations.
Example:
def my_view(request):
template = Template('''
{% load components %}
<!doctype html>
<html>
<head></head>
<body>
<h1>{{ table_name }}</h1>
{% component "table" name=table_name / %}
</body>
</html>
''')
html = template.render(
Context({
"table_name": request.GET["name"],
})
)
# This inserts components' JS and CSS
processed_html = render_dependencies(html)
return HttpResponse(processed_html)
Source code in src/django_components/dependencies.py
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 345 346 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 |
|
expression ¤
Classes:
-
Operator
–Operator describes something that somehow changes the inputs
-
SpreadOperator
–Operator that inserts one or more kwargs at the specified location.
Functions:
-
process_aggregate_kwargs
–This function aggregates "prefixed" kwargs into dicts. "Prefixed" kwargs
Operator ¤
Bases: ABC
Operator describes something that somehow changes the inputs to template tags (the {% %}
).
For example, a SpreadOperator inserts one or more kwargs at the specified location.
SpreadOperator ¤
process_aggregate_kwargs ¤
This function aggregates "prefixed" kwargs into dicts. "Prefixed" kwargs start with some prefix delimited with :
(e.g. attrs:
).
Example:
process_component_kwargs({"abc:one": 1, "abc:two": 2, "def:three": 3, "four": 4})
# {"abc": {"one": 1, "two": 2}, "def": {"three": 3}, "four": 4}
We want to support a use case similar to Vue's fallthrough attributes. In other words, where a component author can designate a prop (input) which is a dict and which will be rendered as HTML attributes.
This is useful for allowing component users to tweak styling or add event handling to the underlying HTML. E.g.:
class="pa-4 d-flex text-black"
or @click.stop="alert('clicked!')"
So if the prop is attrs
, and the component is called like so:
then, if attrs
is:
and the component template is:
Then this renders:
However, this way it is difficult for the component user to define the attrs
variable, especially if they want to combine static and dynamic values. Because they will need to pre-process the attrs
dict.
So, instead, we allow to "aggregate" props into a dict. So all props that start with attrs:
, like attrs:class="text-red"
, will be collected into a dict at key attrs
.
This provides sufficient flexiblity to make it easy for component users to provide "fallthrough attributes", and sufficiently easy for component authors to process that input while still being able to provide their own keys.
Source code in src/django_components/expression.py
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 |
|
finders ¤
Classes:
-
ComponentsFileSystemFinder
–A static files finder based on
FileSystemFinder
.
ComponentsFileSystemFinder ¤
Bases: BaseFinder
A static files finder based on FileSystemFinder
.
Differences: - This finder uses COMPONENTS.dirs
setting to locate files instead of STATICFILES_DIRS
. - Whether a file within COMPONENTS.dirs
is considered a STATIC file is configured by COMPONENTS.static_files_allowed
and COMPONENTS.static_files_forbidden
. - If COMPONENTS.dirs
is not set, defaults to settings.BASE_DIR / "components"
Methods:
-
find
–Look for files in the extra locations as defined in COMPONENTS.dirs.
-
find_location
–Find a requested static file in a location and return the found
-
list
–List all files in all locations.
Source code in src/django_components/finders.py
find ¤
Look for files in the extra locations as defined in COMPONENTS.dirs.
Source code in src/django_components/finders.py
find_location ¤
Find a requested static file in a location and return the found absolute path (or None
if no match).
Source code in src/django_components/finders.py
list ¤
List all files in all locations.
Source code in src/django_components/finders.py
library ¤
Module for interfacing with Django's Library (django.template.library
)
Classes:
-
TagProtectedError
–The way the
TagFormatter
works is that,
Attributes:
-
PROTECTED_TAGS
–These are the names that users cannot choose for their components,
PROTECTED_TAGS module-attribute
¤
PROTECTED_TAGS = ['component_css_dependencies', 'component_js_dependencies', 'fill', 'html_attrs', 'provide', 'slot']
These are the names that users cannot choose for their components, as they would conflict with other tags in the Library.
TagProtectedError ¤
Bases: Exception
The way the TagFormatter
works is that, based on which start and end tags are used for rendering components, the ComponentRegistry
behind the scenes un-/registers the template tags with the associated instance of Django's Library
.
In other words, if I have registered a component "table"
, and I use the shorthand syntax:
Then ComponentRegistry
registers the tag table
onto the Django's Library instance.
However, that means that if we registered a component "slot"
, then we would overwrite the {% slot %}
tag from django_components.
Thus, this exception is raised when a component is attempted to be registered under a forbidden name, such that it would overwrite one of django_component's own template tags.
management ¤
Modules:
-
commands
–
commands ¤
Modules:
startcomponent ¤
Classes:
Command ¤
Bases: BaseCommand
Management Command Usage¤
To use the command, run the following command in your terminal:
python manage.py startcomponent <name> --path <path> --js <js_filename> --css <css_filename> --template <template_filename> --force --verbose --dry-run
Replace <name>
, <path>
, <js_filename>
, <css_filename>
, and <template_filename>
with your desired values.
Management Command Examples¤
Here are some examples of how you can use the command:
Creating a Component with Default Settings¤
To create a component with the default settings, you only need to provide the name of the component:
This will create a new component named my_component
in the components
directory of your Django project. The JavaScript, CSS, and template files will be named script.js
, style.css
, and template.html
, respectively.
Creating a Component with Custom Settings¤
You can also create a component with custom settings by providing additional arguments:
python manage.py startcomponent new_component --path my_components --js my_script.js --css my_style.css --template my_template.html
This will create a new component named new_component
in the my_components
directory. The JavaScript, CSS, and template files will be named my_script.js
, my_style.css
, and my_template.html
, respectively.
Overwriting an Existing Component¤
If you want to overwrite an existing component, you can use the --force
option:
This will overwrite the existing my_component
if it exists.
Simulating Component Creation¤
If you want to simulate the creation of a component without actually creating any files, you can use the --dry-run
option:
This will simulate the creation of my_component
without creating any files.
middleware ¤
Classes:
-
ComponentDependencyMiddleware
–Middleware that inserts CSS/JS dependencies for all rendered
ComponentDependencyMiddleware ¤
ComponentDependencyMiddleware(get_response: Callable[[HttpRequest], HttpResponse])
Middleware that inserts CSS/JS dependencies for all rendered components at points marked with template tags.
Source code in src/django_components/dependencies.py
node ¤
Classes:
-
BaseNode
–Shared behavior for our subclasses of Django's
Node
BaseNode ¤
BaseNode(
nodelist: Optional[NodeList] = None,
node_id: Optional[str] = None,
args: Optional[List[Expression]] = None,
kwargs: Optional[RuntimeKwargs] = None,
)
Bases: Node
Shared behavior for our subclasses of Django's Node
Source code in src/django_components/node.py
provide ¤
Classes:
-
ProvideNode
–Implementation of the
{% provide %}
tag.
ProvideNode ¤
ProvideNode(nodelist: NodeList, trace_id: str, node_id: Optional[str] = None, kwargs: Optional[RuntimeKwargs] = None)
Bases: BaseNode
Implementation of the {% provide %}
tag. For more info see Component.inject
.
Source code in src/django_components/provide.py
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 |
|
tag_formatter ¤
Classes:
-
ComponentFormatter
–The original django_component's component tag formatter, it uses the
{% component %}
-
InternalTagFormatter
–Internal wrapper around user-provided TagFormatters, so that we validate the outputs.
-
ShorthandComponentFormatter
–The component tag formatter that uses
{% <name> %}
/{% end<name> %}
tags. -
TagFormatterABC
–Abstract base class for defining custom tag formatters.
-
TagResult
–The return value from
TagFormatter.parse()
.
Functions:
-
get_tag_formatter
–Returns an instance of the currently configured component tag formatter.
ComponentFormatter ¤
ComponentFormatter(tag: str)
Bases: TagFormatterABC
The original django_component's component tag formatter, it uses the {% component %}
and {% endcomponent %}
tags, and the component name is given as the first positional arg.
Example as block:
Example as inlined tag:
Source code in src/django_components/tag_formatter.py
InternalTagFormatter ¤
InternalTagFormatter(tag_formatter: TagFormatterABC)
ShorthandComponentFormatter ¤
Bases: TagFormatterABC
The component tag formatter that uses {% <name> %}
/ {% end<name> %}
tags.
This is similar to django-web-components and django-slippers syntax.
Example as block:
Example as inlined tag:
TagFormatterABC ¤
Bases: ABC
Abstract base class for defining custom tag formatters.
Tag formatters define how the component tags are used in the template.
Read more about Tag formatter.
For example, with the default tag formatter (ComponentFormatter
), components are written as:
While with the shorthand tag formatter (ShorthandComponentFormatter
), components are written as:
Example:
Implementation for ShorthandComponentFormatter
:
from djagno_components import TagFormatterABC, TagResult
class ShorthandComponentFormatter(TagFormatterABC):
def start_tag(self, name: str) -> str:
return name
def end_tag(self, name: str) -> str:
return f"end{name}"
def parse(self, tokens: List[str]) -> TagResult:
tokens = [*tokens]
name = tokens.pop(0)
return TagResult(name, tokens)
Methods:
-
end_tag
–Formats the end tag of a block component.
-
parse
–Given the tokens (words) passed to a component start tag, this function extracts
-
start_tag
–Formats the start tag of a component.
end_tag abstractmethod
¤
parse abstractmethod
¤
Given the tokens (words) passed to a component start tag, this function extracts the component name from the tokens list, and returns TagResult
, which is a tuple of (component_name, remaining_tokens)
.
Parameters:
-
tokens
([List(str]
) –List of tokens passed to the component tag.
Returns:
-
TagResult
(TagResult
) –Parsed component name and remaining tokens.
Example:
Assuming we used a component in a template like this:
This function receives a list of tokens:
component
is the tag name, which we drop."my_comp"
is the component name, but we must remove the extra quotes.- The remaining tokens we pass unmodified, as that's the input to the component.
So in the end, we return:
Source code in src/django_components/tag_formatter.py
TagResult ¤
Bases: NamedTuple
The return value from TagFormatter.parse()
.
Read more about Tag formatter.
Attributes:
-
component_name
(str
) –Component name extracted from the template tag
-
tokens
(List[str]
) –Remaining tokens (words) that were passed to the tag, with component name removed
get_tag_formatter ¤
get_tag_formatter(registry: ComponentRegistry) -> InternalTagFormatter
Returns an instance of the currently configured component tag formatter.
Source code in src/django_components/tag_formatter.py
template ¤
Functions:
-
cached_template
–Create a Template instance that will be cached as per the
cached_template ¤
cached_template(
template_string: str,
template_cls: Optional[Type[Template]] = None,
origin: Optional[Origin] = None,
name: Optional[str] = None,
engine: Optional[Any] = None,
) -> Template
Create a Template instance that will be cached as per the COMPONENTS.template_cache_size
setting.
Parameters:
-
template_string
(str
) –Template as a string, same as the first argument to Django's
Template
. Required. -
template_cls
(Type[Template]
, default:None
) –Specify the Template class that should be instantiated. Defaults to Django's
Template
class. -
origin
(Type[Origin]
, default:None
) –Sets
Template.Origin
. -
name
(Type[str]
, default:None
) –Sets
Template.name
-
engine
(Type[Any]
, default:None
) –Sets
Template.engine
from django_components import cached_template
template = cached_template("Variable: {{ variable }}")
# You can optionally specify Template class, and other Template inputs:
class MyTemplate(Template):
pass
template = cached_template(
"Variable: {{ variable }}",
template_cls=MyTemplate,
name=...
origin=...
engine=...
)
Source code in src/django_components/template.py
template_loader ¤
Template loader that loads templates from each Django app's "components" directory.
Classes:
-
Loader
–
Loader ¤
Bases: Loader
Methods:
-
get_dirs
–Prepare directories that may contain component files:
get_dirs ¤
Prepare directories that may contain component files:
Searches for dirs set in COMPONENTS.dirs
settings. If none set, defaults to searching for a "components" app. The dirs in COMPONENTS.dirs
must be absolute paths.
In addition to that, also all apps are checked for [app]/components
dirs.
Paths are accepted only if they resolve to a directory. E.g. /path/to/django_project/my_app/components/
.
BASE_DIR
setting is required.
Source code in src/django_components/template_loader.py
template_parser ¤
Overrides for the Django Template system to allow finer control over template parsing.
Based on Django Slippers v0.6.2 - https://github.com/mixxorz/slippers/blob/main/slippers/template.py
Functions:
-
parse_bits
–Parse bits for template tag helpers simple_tag and inclusion_tag, in
-
token_kwargs
–Parse token keyword arguments and return a dictionary of the arguments
parse_bits ¤
parse_bits(
parser: Parser, bits: List[str], params: List[str], name: str
) -> Tuple[List[FilterExpression], List[Tuple[str, FilterExpression]]]
Parse bits for template tag helpers simple_tag and inclusion_tag, in particular by detecting syntax errors and by extracting positional and keyword arguments.
This is a simplified version of django.template.library.parse_bits
where we use custom regex to handle special characters in keyword names.
Furthermore, our version allows duplicate keys, and instead of return kwargs as a dict, we return it as a list of key-value pairs. So it is up to the user of this function to decide whether they support duplicate keys or not.
Source code in src/django_components/template_parser.py
token_kwargs ¤
Parse token keyword arguments and return a dictionary of the arguments retrieved from the bits
token list.
bits
is a list containing the remainder of the token (split by spaces) that is to be checked for arguments. Valid arguments are removed from this list.
There is no requirement for all remaining token bits
to be keyword arguments, so return the dictionary as soon as an invalid argument format is reached.
Source code in src/django_components/template_parser.py
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 |
|
with_tag_spec ¤
Source code in src/django_components/templatetags/component_tags.py
types ¤
Helper types for IDEs.
util ¤
Modules:
cache ¤
Functions:
-
lazy_cache
–Decorator that caches the given function similarly to
functools.lru_cache
.
lazy_cache ¤
Decorator that caches the given function similarly to functools.lru_cache
. But the cache is instantiated only at first invocation.
cache
argument is a function that generates the cache function, e.g. functools.lru_cache()
.
Source code in src/django_components/util/cache.py
html ¤
Functions:
-
parse_document_or_nodes
–Use this if you do NOT know whether the given HTML is a full document
-
parse_multiroot_html
–Use this when you know the given HTML is a multiple nodes like
-
parse_node
–Use this when you know the given HTML is a single node like
parse_document_or_nodes ¤
Use this if you do NOT know whether the given HTML is a full document with <html>
, <head>
, and <body>
tags, or an HTML fragment.
Source code in src/django_components/util/html.py
parse_multiroot_html ¤
Use this when you know the given HTML is a multiple nodes like
<div> Hi </div> <span> Hello </span>
Source code in src/django_components/util/html.py
parse_node ¤
parse_node(html: str) -> LexborNode
Use this when you know the given HTML is a single node like
<div> Hi </div>
Source code in src/django_components/util/html.py
loader ¤
Classes:
-
ComponentFileEntry
–Result returned by
get_component_files()
.
Functions:
-
get_component_dirs
–Get directories that may contain component files.
-
get_component_files
–Search for files within the component directories (as defined in
ComponentFileEntry ¤
get_component_dirs ¤
Get directories that may contain component files.
This is the heart of all features that deal with filesystem and file lookup. Autodiscovery, Django template resolution, static file resolution - They all use this.
Parameters:
-
include_apps
(bool
, default:True
) –Include directories from installed Django apps. Defaults to
True
.
Returns:
get_component_dirs()
searches for dirs set in COMPONENTS.dirs
settings. If none set, defaults to searching for a "components"
app.
In addition to that, also all installed Django apps are checked whether they contain directories as set in COMPONENTS.app_dirs
(e.g. [app]/components
).
Notes:
-
Paths that do not point to directories are ignored.
-
BASE_DIR
setting is required. -
The paths in
COMPONENTS.dirs
must be absolute paths.
Source code in src/django_components/util/loader.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
get_component_files ¤
get_component_files(suffix: Optional[str] = None) -> List[ComponentFileEntry]
Search for files within the component directories (as defined in get_component_dirs()
).
Requires BASE_DIR
setting to be set.
Parameters:
-
suffix
(Optional[str]
, default:None
) –The suffix to search for. E.g.
.py
,.js
,.css
. Defaults toNone
, which will search for all files.
Returns:
-
List[ComponentFileEntry]
–List[ComponentFileEntry] A list of entries that contain both the filesystem path and the python import path (dot path).
Example:
Source code in src/django_components/util/loader.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
logger ¤
Functions:
-
trace
–TRACE level logger.
-
trace_msg
–TRACE level logger with opinionated format for tracing interaction of components,
trace ¤
TRACE level logger.
To display TRACE logs, set the logging level to 5.
Example:
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"handlers": {
"console": {
"class": "logging.StreamHandler",
"stream": sys.stdout,
},
},
"loggers": {
"django_components": {
"level": 5,
"handlers": ["console"],
},
},
}
Source code in src/django_components/util/logger.py
trace_msg ¤
trace_msg(
action: Literal["PARSE", "RENDR", "GET", "SET"],
node_type: Literal["COMP", "FILL", "SLOT", "PROVIDE", "N/A"],
node_name: str,
node_id: str,
msg: str = "",
component_id: Optional[str] = None,
) -> None
TRACE level logger with opinionated format for tracing interaction of components, nodes, and slots. Formats messages like so:
"ASSOC SLOT test_slot ID 0088 TO COMP 0087"
Source code in src/django_components/util/logger.py
misc ¤
Functions:
-
gen_id
–Generate a unique ID that can be associated with a Node
-
get_import_path
–Get the full import path for a class or a function, e.g.
"path.to.MyClass"
gen_id ¤
gen_id() -> str
Generate a unique ID that can be associated with a Node
Source code in src/django_components/util/misc.py
get_import_path ¤
Get the full import path for a class or a function, e.g. "path.to.MyClass"
Source code in src/django_components/util/misc.py
tag_parser ¤
types ¤
Classes:
-
EmptyDict
–TypedDict with no members.
Attributes:
-
EmptyTuple
–Tuple with no members.
EmptyTuple module-attribute
¤
EmptyTuple = Tuple[]
Tuple with no members.
You can use this to define a Component that accepts NO positional arguments:
from django_components import Component, EmptyTuple
class Table(Component(EmptyTuple, Any, Any, Any, Any, Any))
...
After that, when you call Component.render()
or Component.render_to_response()
, the args
parameter will raise type error if args
is anything else than an empty tuple.
Omitting args
is also fine:
Other values are not allowed. This will raise an error with MyPy:
EmptyDict ¤
Bases: TypedDict
TypedDict with no members.
You can use this to define a Component that accepts NO kwargs, or NO slots, or returns NO data from Component.get_context_data()
/ Component.get_js_data()
/ Component.get_css_data()
:
Accepts NO kwargs:
from django_components import Component, EmptyDict
class Table(Component(Any, EmptyDict, Any, Any, Any, Any))
...
Accepts NO slots:
from django_components import Component, EmptyDict
class Table(Component(Any, Any, EmptyDict, Any, Any, Any))
...
Returns NO data from get_context_data()
:
from django_components import Component, EmptyDict
class Table(Component(Any, Any, Any, EmptyDict, Any, Any))
...
Going back to the example with NO kwargs, when you then call Component.render()
or Component.render_to_response()
, the kwargs
parameter will raise type error if kwargs
is anything else than an empty dict.
Omitting kwargs
is also fine:
Other values are not allowed. This will raise an error with MyPy: