Skip to main content

A convenient helper to use Django URLs in Javascript.

Project description

License https://img.shields.io/pypi/pyversions/django-js-urls.svg Latest Version https://travis-ci.org/impak-finance/django-js-urls.svg?branch=master https://codecov.io/gh/impak-finance/django-js-urls/branch/master/graph/badge.svg

Django4-js-urls is a lightweight Django application allowing to easily get absolute path references matching given URL names and optional parameters on the client side - just like reverse does, but in a Javascript fashion.

Main requirements

Python 3.8+, Django 3.2+.

Installation

To install Django4-js-urls, please use pip (or pipenv) as follows:

$ pip install django4-js-urls

Once installed you just need to add js_urls to INSTALLED_APPS in your project’s settings module:

INSTALLED_APPS = (
    # other apps
    'js_urls',
)

URLs that are included in the Javascript helper tool are configured using a single JS_URL setting. This setting can embed URL namespaces or specific URL names that should be included in the generated Javascript file. For example:

JS_URLS = (
    'admin',
    'blog:article_list',
    'blog:article_detail',
)

Important: only URLs defined in this setting will be included in the generated Javascript file. You don’t want to expose all the URLs of your Django project in a Javascript file.

Then you can include the view responsible for generating the Javascript file in your URLs root module:

from js_urls.views import JsUrlsView

urlpatterns = [
    # other urls
    url('js-urls/$', JsUrlsView.as_view(), name='js_urls'),
]

And finally you can include the Javascript script in your base template as follows:

<script src="{% url 'js_urls' %}" type="text/javascript"></script>

Usage

URLs included in the generated Javascript file can be used in your scripts by using the window.reverse function. Here are some example:

const url1 = window.reverse('home');
const url2 = window.reverse('blog:article_list');
const url3 = window.reverse('blog:article_detail', articleId);
const url4 = window.reverse('blog:article_detail', [articleId, ]);
const url5 = window.reverse('blog:article_detail', { pk: articleId });

Settings

JS_URLS

Default: []

The JS_URLS setting allows to define URL namespaces or specific URL names that should be included in the generated Javascript file.

JS_URLS_FUNCTION_NAME

Default: 'reverse'

The JS_URLS_FUNCTION_NAME setting allows customize the name of the function used to reverse URLs on the client side. This function is made available through the window global object.

Authors

impak Finance <tech@impakfinance.com>.

License

MIT. See LICENSE for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django4-js-urls-0.1.3.2.tar.gz (7.7 kB view details)

Uploaded Source

File details

Details for the file django4-js-urls-0.1.3.2.tar.gz.

File metadata

  • Download URL: django4-js-urls-0.1.3.2.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.0

File hashes

Hashes for django4-js-urls-0.1.3.2.tar.gz
Algorithm Hash digest
SHA256 9e4f3ddac36970f1ebe668ad11db1c67349b7a128cccd07fe17a34caa74f9ff6
MD5 2a9b073aa66be8908f7bec233af676c5
BLAKE2b-256 c6e67b5b3bf06b2f1528d3f5e34a544e1eae1314852d1a7061ef213edb8e28f5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page