Skip to content

autodiscover ¤

autodiscover ¤

autodiscover(map_module: Optional[Callable[[str], str]] = None) -> List[str]

Search for component files and import them. Returns a list of module paths of imported files.

Autodiscover searches in the locations as defined by Loader.get_dirs.

You can map the module paths with map_module function. This serves as an escape hatch for when you need to use this function in tests.

Source code in src/django_components/autodiscover.py
def autodiscover(
    map_module: Optional[Callable[[str], str]] = None,
) -> List[str]:
    """
    Search for component files and import them. Returns a list of module
    paths of imported files.

    Autodiscover searches in the locations as defined by `Loader.get_dirs`.

    You can map the module paths with `map_module` function. This serves
    as an escape hatch for when you need to use this function in tests.
    """
    dirs = get_dirs()
    component_filepaths = search_dirs(dirs, "**/*.py")
    logger.debug(f"Autodiscover found {len(component_filepaths)} files in component directories.")

    modules = [_filepath_to_python_module(filepath) for filepath in component_filepaths]
    return _import_modules(modules, map_module)

get_dirs ¤

get_dirs(engine: Optional[Engine] = None) -> List[Path]

Helper for using django_component's FilesystemLoader class to obtain a list of directories where component python files may be defined.

Source code in src/django_components/autodiscover.py
def get_dirs(engine: Optional[Engine] = None) -> List[Path]:
    """
    Helper for using django_component's FilesystemLoader class to obtain a list
    of directories where component python files may be defined.
    """
    current_engine = engine
    if current_engine is None:
        current_engine = Engine.get_default()

    loader = Loader(current_engine)
    return loader.get_dirs()

import_libraries ¤

import_libraries(map_module: Optional[Callable[[str], str]] = None) -> List[str]

Import modules set in COMPONENTS.libraries setting.

You can map the module paths with map_module function. This serves as an escape hatch for when you need to use this function in tests.

Source code in src/django_components/autodiscover.py
def import_libraries(
    map_module: Optional[Callable[[str], str]] = None,
) -> List[str]:
    """
    Import modules set in `COMPONENTS.libraries` setting.

    You can map the module paths with `map_module` function. This serves
    as an escape hatch for when you need to use this function in tests.
    """
    from django_components.app_settings import app_settings

    return _import_modules(app_settings.LIBRARIES, map_module)

search_dirs ¤

search_dirs(dirs: List[Path], search_glob: str) -> List[Path]

Search the directories for the given glob pattern. Glob search results are returned as a flattened list.

Source code in src/django_components/autodiscover.py
def search_dirs(dirs: List[Path], search_glob: str) -> List[Path]:
    """
    Search the directories for the given glob pattern. Glob search results are returned
    as a flattened list.
    """
    matched_files: List[Path] = []
    for directory in dirs:
        for path in glob.iglob(str(Path(directory) / search_glob), recursive=True):
            matched_files.append(Path(path))

    return matched_files