djhtmx 1.2.2__tar.gz → 1.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {djhtmx-1.2.2 → djhtmx-1.2.4}/CHANGELOG.md +9 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/PKG-INFO +1 -1
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/__init__.py +1 -1
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/command_queue.py +4 -4
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/repo.py +3 -14
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/templates/htmx/headers.html +0 -2
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/templatetags/htmx.py +2 -1
- {djhtmx-1.2.2 → djhtmx-1.2.4}/.gitignore +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/LICENSE +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/MANIFEST.in +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/README.md +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/pyproject.toml +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/apps.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/commands.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/component.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/consumer.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/context.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/exceptions.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/global_events.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/introspection.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/json.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/management/commands/htmx.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/middleware.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/query.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/settings.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/ext/ws.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/htmx.amd.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/htmx.cjs.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/htmx.esm.d.ts +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/htmx.esm.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/htmx.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/2.0.4/htmx.min.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/static/htmx/django.js +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/templates/htmx/lazy.html +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/templatetags/__init__.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/testing.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/tracing.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/urls.py +0 -0
- {djhtmx-1.2.2 → djhtmx-1.2.4}/src/djhtmx/utils.py +0 -0
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.2.3] - 2025-10-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fixed OOB tag to use component ID directly instead of context 'id' key for more consistent behavior
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Refactored context merging logic in Repository.render() for better code clarity
|
|
17
|
+
- Removed CSRF meta tags
|
|
18
|
+
|
|
10
19
|
## [1.2.2] - 2025-10-06
|
|
11
20
|
|
|
12
21
|
### Fixed
|
|
@@ -124,12 +124,12 @@ class CommandQueue:
|
|
|
124
124
|
match command:
|
|
125
125
|
case Execute():
|
|
126
126
|
return 0, "", 0
|
|
127
|
+
case Destroy(component_id):
|
|
128
|
+
return 1, component_id, 0
|
|
127
129
|
case Signal(_, timestamp):
|
|
128
|
-
return 1, "", timestamp
|
|
129
|
-
case Emit(_, timestamp):
|
|
130
130
|
return 2, "", timestamp
|
|
131
|
-
case
|
|
132
|
-
return 3, "",
|
|
131
|
+
case Emit(_, timestamp):
|
|
132
|
+
return 3, "", timestamp
|
|
133
133
|
case SkipRender():
|
|
134
134
|
return 4, "", 0
|
|
135
135
|
case BuildAndRender(_, _, _, _, timestamp):
|
|
@@ -438,7 +438,7 @@ class Repository:
|
|
|
438
438
|
):
|
|
439
439
|
self.session.store(component)
|
|
440
440
|
|
|
441
|
-
|
|
441
|
+
final_context = {
|
|
442
442
|
"htmx_repo": self,
|
|
443
443
|
"hx_oob": oob == "true",
|
|
444
444
|
"this": component,
|
|
@@ -446,20 +446,9 @@ class Repository:
|
|
|
446
446
|
|
|
447
447
|
if lazy:
|
|
448
448
|
template = template or component._template_name_lazy
|
|
449
|
-
|
|
449
|
+
final_context |= {"hx_lazy": True} | component._get_lazy_context() | (context or {})
|
|
450
450
|
else:
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
# If context is provided, it should override the component context
|
|
454
|
-
if context is not None:
|
|
455
|
-
# Keep base_context (htmx_repo, hx_oob, this) but let provided context override everything else
|
|
456
|
-
final_context = {
|
|
457
|
-
"htmx_repo": self,
|
|
458
|
-
"hx_oob": oob == "true",
|
|
459
|
-
"this": component,
|
|
460
|
-
} | context
|
|
461
|
-
else:
|
|
462
|
-
final_context = base_context
|
|
451
|
+
final_context |= component._get_context() if context is None else context
|
|
463
452
|
|
|
464
453
|
html = mark_safe(component._get_template(template)(final_context).strip())
|
|
465
454
|
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{% load static %}
|
|
2
2
|
|
|
3
3
|
{% if enabled %}
|
|
4
|
-
<meta name="django-csrf-header-name" content="{{ CSRF_HEADER_NAME }}" />
|
|
5
|
-
<meta name="django-csrf-token" content="{{ csrf_token }}" />
|
|
6
4
|
{% for script_url in SCRIPT_URLS %}
|
|
7
5
|
<script defer src="{% static script_url %}"></script>
|
|
8
6
|
{% endfor %}
|
|
@@ -138,7 +138,8 @@ def hx_tag(context: Context):
|
|
|
138
138
|
def oob(context: Context, suffix: str):
|
|
139
139
|
oob = context.get("hx_oob")
|
|
140
140
|
context["hx_oob"] = False
|
|
141
|
-
|
|
141
|
+
component_id = component.id if (component := context.get("this")) else None
|
|
142
|
+
id = "-".join(filter(None, (component_id, suffix)))
|
|
142
143
|
return format_html_attrs({"id": id, "hx-swap-oob": "true" if oob else None})
|
|
143
144
|
|
|
144
145
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|