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.