Aller au contenu

Processors

GENERATED_ROOT = Path(__file__).parent.resolve() / 'generated' module-attribute

Webpack

compile() staticmethod

Bundle js files with webpack for production.

Source code in staticfiles/processors.py
@staticmethod
def compile():
    """Bundle js files with webpack for production."""
    process = subprocess.Popen(["npm", "run", "compile"])
    process.wait()
    if process.returncode:
        raise RuntimeError(f"Webpack failed with returncode {process.returncode}")

runserver() staticmethod

Bundle js files automatically in background when called in debug mode.

Source code in staticfiles/processors.py
@staticmethod
def runserver() -> subprocess.Popen:
    """Bundle js files automatically in background when called in debug mode."""
    logging.getLogger("django").info("Running webpack server")
    return subprocess.Popen(["npm", "run", "serve"])

Scss

compile(files) staticmethod

Compile scss files to css files.

Source code in staticfiles/processors.py
@staticmethod
def compile(files: CompileArg | Iterable[CompileArg]):
    """Compile scss files to css files."""
    # Generate files inside the generated folder
    # .css files respects the hierarchy in the static folder it was found
    # This converts arg.absolute -> generated/{arg.relative}.scss
    # Example:
    #   app/static/foo.scss          -> generated/foo.css
    #   app/static/bar/foo.scss      -> generated/bar/foo.css
    #   custom/location/bar/foo.scss -> generated/bar/foo.css
    if isinstance(files, Scss.CompileArg):
        files = [files]

    base_args = {"output_style": "compressed", "precision": settings.SASS_PRECISION}

    compiled_files = {
        file.relative.with_suffix(".css"): sass.compile(
            filename=str(file.absolute), **base_args
        )
        for file in files
    }
    for file, content in compiled_files.items():
        dest = GENERATED_ROOT / file
        dest.parent.mkdir(exist_ok=True, parents=True)
        dest.write_text(content)

JS

OpenApi

compile() classmethod

Compile a TS client for the sith API. Only generates it if it changed.

Source code in staticfiles/processors.py
@classmethod
def compile(cls):
    """Compile a TS client for the sith API. Only generates it if it changed."""
    logging.getLogger("django").info("Compiling open api typescript client")
    out = cls.OPENAPI_DIR / "schema.json"
    cls.OPENAPI_DIR.mkdir(parents=True, exist_ok=True)

    old_hash = ""
    if out.exists():
        with open(out, "rb") as f:
            old_hash = sha1(f.read()).hexdigest()

    schema = api.get_openapi_schema()
    # Remove hash from operationIds
    # This is done for cache invalidation but this is too aggressive
    for path in schema["paths"].values():
        for action, desc in path.items():
            path[action]["operationId"] = "_".join(
                desc["operationId"].split("_")[:-1]
            )
    schema = str(schema)

    if old_hash == sha1(schema.encode("utf-8")).hexdigest():
        logging.getLogger("django").info("✨ Api did not change, nothing to do ✨")
        return

    with open(out, "w") as f:
        _ = f.write(schema)

    subprocess.run(["npx", "openapi-ts"], check=True)