component_registry ¤
registry module-attribute
¤
registry: ComponentRegistry = ComponentRegistry()
The default and global component registry. Use this instance to directly register or remove components:
ComponentRegistry ¤
ComponentRegistry(library: Optional[Library] = None)
Manages which components can be used in the template tags.
Each ComponentRegistry instance is associated with an instance of Django's Library. So when you register or unregister a component to/from a component registry, behind the scenes the registry automatically adds/removes the component's template tag to/from the Library.
The Library instance can be set at instantiation. If omitted, then the default Library instance from django_components is used. The Library instance can be accessed under library
attribute.
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()
Source code in src/django_components/component_registry.py
library property
¤
The template tag library with which the component registry is associated.
all ¤
Retrieve all registered 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.
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 with this registry under the given name.
A component MUST be registered before it can be used in a template such as:
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
Unlinks a previously-registered component from the registry under the given name.
Once a component is unregistered, it CANNOT be used in a template anymore. Following would raise an error:
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
register ¤
register(name: str, registry: Optional[ComponentRegistry] = None) -> Callable[[_TComp], _TComp]
Class decorator to register a component.
Usage:
Optionally specify which ComponentRegistry
the component should be registered to by setting the registry
kwarg:
my_lib = django.template.Library()
my_reg = ComponentRegistry(library=my_lib)
@register("my_component", registry=my_reg)
class MyComponent(Component):
...