Skip to content

dgouldin/django-hashsignal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Hashsignal

django-hashsignal aids existing Django projects in the transition to hashsignaling.

What is Hashsignaling?

In a typical website, a browser issues a normal request for a url, a response is issued by the web server, and that response is rendered by the browser. The url requested is displayed in the address bar once the response is received. Navigating from one page to another looks like this:

http://www.example.com/foo/ -> http://www.example.com/bar/

Hashsignaling works in a similar manner but keeps the user on a single page. Instead of allowing the browser issuing a normal request, an ajax request is made in its place, and the ajax response is rendered into the existing page to present the facade that the user has navigated to a different url. In order to preserve the abstraction, the path corresponding to the page currently being displayed to the user is stored in the uri hash fragment. When using hashsignaling, navigating from one "page" to another looks like this:

http://www.example.com/a/#/foo/ -> http://www.example.com/a/#/bar/

Installation

  1. Add the hashsignal directory to your Python path.

  2. Add hashsignal to your INSTALLED_APPS setting.

  3. Add the following middleware to your project's settings.py file:

    'hashsignal.middleware.AjaxRedirectMiddleware',

  4. Override TEMPLATE_LOADERS, adding the following as the first template loader:

    'hashsignal.loaders.AjaxLoader',

  5. Copy or symlink hashsignal/media/js into media service tree.

  6. Add script tags for jquery.ba-hashchange.min.js and jquery.hashsignal.js to the base template.

Implementation

  1. In any templates implementing hashsignaling, add {% load hashsignal %}. Replace {% block %} tags with {% ajaxblock %} for any blocks which should be loaded via hashsignaling.
  2. Add an urlconf item which uses Django's direct_to_template generic view to render the base template. (This will be referred to as the hashsignal container.)
  3. In the base template, add javascript to the document's head to redirect any url that is not the hashsignal container to a hashsignal container url including the requested path in the uri hash fragment. (See an example in example_project.)
  4. Register any javascript specific to parts of the page loaded by hashsignaling using jQuery.hashsignal.registerTransition. (See jQuery.hashsignal below.)

jQuery.hashsignal

As an effect of hashsignaling, javascript is never automatically unloaded and reloaded as it is during normal browser navigation. Since the hashsignal container's lifecycle is indefinite, measures must be taken to ensure the state of the container's loaded javascript remains sane.

jQuery.hashsignal is a jQuery plugin which provides tools to deal with the affects of an abnormally long page lifecycle and dynamically shifting dom structure.

TODO: jQuery.hashsignal API docs.

About

Django and jQuery helper tools for hash signaling powered websites

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published