Skip to content

Commit 8690c1e

Browse files
authored
Merge pull request MrBin99#131 from Niicck/kebab-case
Enable custom kebab-case attributes
2 parents fee2efe + 923fc97 commit 8690c1e

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,11 @@ Any kwargs passed to vite_react_refresh will be added to its generated `<script/
196196
By default, all script tags are generated with a `type="module"` and `crossorigin=""` attributes just like ViteJS do by default if you are building a single-page app.
197197
You can override this behavior by adding or overriding this attributes like so :
198198

199-
```
200-
{% vite_asset '<path to your asset>' foo="bar" hello="world" %}
199+
```jinja-html
200+
{% vite_asset '<path to your asset>' foo="bar" hello="world" data_turbo_track="reload" %}
201201
```
202202

203-
This line will add `foo="bar"` and `hello="world"` attributes.
203+
This line will add `foo="bar"`, `hello="world"`, and `data-turbo-track="reload"` attributes.
204204

205205
You can also use context variables to fill attributes values :
206206

django_vite/core/asset_loader.py

-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,6 @@ def generate_vite_asset(
301301
str -- The <script> tag and all <link> tags to import
302302
this asset in your page.
303303
"""
304-
305304
if self.dev_mode:
306305
url = self._get_dev_server_url(path)
307306
return TagGenerator.script(

django_vite/core/tag_generator.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ def attrs_to_str(attrs: Dict[str, str]):
88
Convert dictionary of attributes into a string that can be injected into a <script/>
99
tag.
1010
"""
11-
attrs_str = " ".join([f'{key}="{value}"' for key, value in attrs.items()])
11+
attrs_str = " ".join(
12+
[f'{key.replace("_", "-")}="{value}"' for key, value in attrs.items()]
13+
)
1214
return attrs_str
1315

1416

tests/tests/templatetags/test_vite_asset.py

+15
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,21 @@ def test_vite_asset_override_default_attribute():
208208
assert script_tag["crossorigin"] == "anonymous"
209209

210210

211+
@pytest.mark.usefixtures("dev_mode_all")
212+
def test_vite_asset_kebab_attribute():
213+
template = Template(
214+
"""
215+
{% load django_vite %}
216+
{% vite_asset "src/entry.ts" data_item_track="reload" data_other="3" %}
217+
"""
218+
)
219+
html = template.render(Context({}))
220+
soup = BeautifulSoup(html, "html.parser")
221+
script_tag = soup.find("script")
222+
assert script_tag["data-item-track"] == "reload"
223+
assert script_tag["data-other"] == "3"
224+
225+
211226
def test_vite_asset_custom_attributes(dev_mode_all):
212227
template = Template(
213228
"""

0 commit comments

Comments
 (0)