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 |
|