A small, rudimentary helper app for RiotJS integration into django projects.
Project description
A small, rudimentary helper app for RiotJS (https://riot.js.org) integration into django projects.
Quickstart
Install Django RiotJS Helper:
pip install django-riotjs-helper
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'riotjs_helper',
...
)
Add this to your base template (base.html):
{% include 'riotjs_helper/riotjs_core.html' %}
{% block riot_tags %}
{% endblock riot_tags %}
{% include 'riotjs_helper/riotjs_mount.html' %}
If you plan on using django rest framework you can switch riotjs_core.html to the more elaborate riotjs_setup.html:
{% include 'riotjs_helper/riotjs_setup.html' %}
This setup requires some additional libraries as well, allready included in the requirements.txt:
djangorestframework
django-filter
django-rest-swagger
httpie
Markdown
python-dateutil
coreapi
coreapi-cli
coreschema
And these has to be added to your INSTALLED_APPS, urls has to be updated etc.
And then to create some tags:
python manage.py riot_tag <appname> <tag1-name> <tag2-name>
In the page you want to use your tag:
{% block content %}
...
<tag1-name></tag1-name>
...
<tag2-name></tag2-name>
...
{% endblock %}
{% block riot_tags %}
{% include '<appname>/include/<tag1-name>_tag.html' %}
{% include '<appname>/include/<tag2-name>_tag.html' %}
{% endblock riot_tags %}
If you need to add more context to your tags you can do that by editing the generated include files, for instance like so:
{% load static %}
<script src="{% static '<appname>/tags/<tag1-name>.tag' %}" type="riot/tag"></script>
<script>
riot_context['<tag1-name>'] = {more_context_goes_here: { ... something fancy ...}};
</script>
If you want to look at some boilerplate/example code generate your tags with the –example-code option:
python manage.py riot_tag <appname> <tag1-name> <tag2-name> --example-code
History
0.1.0 (2018-09-23)
First release on PyPI.
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-riotjs-helper-0.1.1.tar.gz
.
File metadata
- Download URL: django-riotjs-helper-0.1.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a39b920d22bac71c037c62d514559dc8cf1f25da93b9429d885405ed099ba6d |
|
MD5 | 4f45cfbc13a5a20c91e14a7009abaded |
|
BLAKE2b-256 | 9b7598f98b1857aa3082c1b82ab5cd810cb36955229a3791abba3d316b5f098f |
File details
Details for the file django_riotjs_helper-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_riotjs_helper-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 169f3f8d5de68b249c1015da720a2b1a02f3e4192bda6d19352350e958508418 |
|
MD5 | a35f019181e98a2a86bdf1a36ee9df36 |
|
BLAKE2b-256 | 34d4a4ac780544b5d4781c3b245aac9477c96b30d19deae3fc85b80e84121e68 |