Custom Django template tags for integrating Hyperscript with Django templates.
Project description
Django Hyperscript
This package is intended to simplify the process of dumping data from Django into Hyperscript by providing two template tags with options for customizing the output.
Installation
- Install using pip:
pip install django-hyperscript
- Add
django_hyperscript
toINSTALLED_APPS
in your Django project'ssettings.py
:
# settings.py
INSTALLED_APPS = [
...,
'django_hyperscript',
]
- Load the tag library in the necessary templates:
{% load hyperscript %}
Usage
hs_dump
Dumps data into a single Hyperscript variable.
{% hs_dump data 'myData' %}
assuming data
is {"foo": "bar"}
, the tag would output
<div _="
init
set global myData to {'foo': 'bar'}
then remove me
end"></div>
hs_expand
Expands a dictionary into Hyperscript variables.
{% hs_expand data %}
assuming data
is {"foo": "bar", "baz": "qux"}
, the tag would output
<div _="
init
set global foo to bar
set global baz to qux
then remove me
end"></div>
Configuration
Both hs_dump
and hs_expand
have a set of additional keyword arguments to configure their behavior.
show
Type: bool
| Default: False
Removes Hyperscript from the DOM after initializing if True
.
translate
Type: bool
| Default: True
"Translates" dictionary keys from snake case (snake_case) to camel case (camelCase) to fit JavaScript naming conventions.
scope
Type: str
| Default: global
Determines the scope of the Hyperscript variable (global, element, or local).
wrap
Type: bool
| Default: True
Wraps the Hyperscript in a <div>
if True
, otherwise returns the raw Hyperscript text.
Note: If both wrap
and show
are False
, the element will not be removed and the Hyperscript attribute and value will be removed from the element.
Final example
{% hs_dump data 'my_data' show=True translate=False scope='element' wrap=False %}
assuming data
is {"my_value": 25}
, the tag would output
"init set element my_data to {'my_value': 25} end"
In this example:
- The Hyperscript remains in the DOM since
show
isTrue
- The keys within the dumped data remain in snake case since
translate
isFalse
- The variable is scoped to the element the Hyperscript belongs to since
scope
is set to'element'
- The output is just the raw Hyperscript text since
wrap
is set toFalse
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_hyperscript-1.0.2.tar.gz
.
File metadata
- Download URL: django_hyperscript-1.0.2.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adf926a7ebb767117a467c359c1fed1cdcb5e64ece91cd3bcbd0bec56909421d |
|
MD5 | a73c6d655d7746aa7233a1bf8dc7707a |
|
BLAKE2b-256 | f92743bca1061b5af2c493dc689ddb2d94d4f19989e190651751898bb64eda35 |
File details
Details for the file django_hyperscript-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: django_hyperscript-1.0.2-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cf96a01e2b41517121cd185c49a79b00a9348da7d7581e2fdc033cdac634e8b |
|
MD5 | 2b6d3ff7139551a72d2cef0f99214124 |
|
BLAKE2b-256 | 8741334538db28fcb292ff27cef6c1cb9d6f26dbfb5fbd14ab7046c9c6e8639b |