Skip to main content

A Django App Providing the `{% include_by_ajax %}` Template Tag

Project description

pypi

A Django App Providing the {% include_by_ajax %} Template Tag

The Problem

Start pages usually show data aggregated from different sections. To render a start page might take some time if the relations and filters are complex or if there are a lot of images. The best practice for performance is to display the content above the fold (in the visible viewport area) as soon as possible, and then to load the rest of the page dynamically by JavaScript.

The Solution

This app allows you to organize heavy pages into sections which are included in the main page template. The default including can be done by the {% include template_name %} template tag and it is rendered immediately. We are introducing a new template tag {% include_by_ajax template_name %} which will initially render an empty placeholder, but then will load the content by Ajax dynamically.

The template included by {% include_by_ajax template_name %} will get all the context that would normally be passed to a normal {% include template_name %} template tag.

You can also pass a placeholder template which will be shown until the content is loaded. For this use {% include_by_ajax template_name placeholder_template_name=placeholder_template_name %}

Implementation Details

When you use the {% include_by_ajax template_name %}, the page is loaded and rendered twice:

  • At first, it is loaded and rendered minimally with empty placeholders <section class="ajax-placeholder"></section>.
  • Then, some JavaScript loads it fully by Ajax and replaces placeholders with their content.

The templates that you include by Ajax can contain <style> and <script> tags which will be executed when loaded.

In the end, 'include_by_ajax_all_loaded' event is triggered for the document so that you can further initialize JavaScript functions.

Caveats

The templates that are included by {% include_by_ajax template_name %} should always wrap the content into a single html tag, like <div>, <span>, <section>, <article> or other.

Requirements

The app works with Django 2.2+ on the server and jQuery 3.x in the frontend.

Installation and Configuration

  1. Install the library to your virtual environment:

    (venv)$ pip install django-include-by-ajax
    
  2. Add 'include_by_ajax' to INSTALLED_APPS.

  3. In your base template, link to jQuery and include_by_ajax.js:

    {% load static %}
    <script src="https://code.jquery.com/jquery-3.5.1.min.js" crossorigin="anonymous"></script>
    <script src="{% static 'include_by_ajax/js/include_by_ajax.min.js' %}" defer></script>
    
  4. In your page template, load and use the template tag for all content that is below the visible area of the page.

    {% extends "base.html" %}
    {% load include_by_ajax_tags %}
    
    {% block content %}
        <h1>My Website</h1>
        {% include "slideshows/includes/start_page_slideshow.html" %}
        <!-- the fold -->
        {% include_by_ajax "blog/includes/latest_blog_posts.html" %}
        {% include_by_ajax "news/includes/latest_news.html" %}
        {% include_by_ajax "gallery/includes/latest_pictures.html" placeholder_template_name="utils/loading.html" %}
    {% endblock %}
    
    {% block js %}
        <script>
        $(document).on('include_by_ajax_all_loaded', function() {
            console.log('Now all placeholders are loaded and replaced with content');
        })
        </script>
    {% endblock %}    
    
  5. Enjoy the faster-appearing web page at a glass of gingerbread latte.

Contributors

Thanks to everybody who contributed to this project:

Contributors

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

django-include-by-ajax-3.0.2.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

django_include_by_ajax-3.0.2-py2.py3-none-any.whl (23.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-include-by-ajax-3.0.2.tar.gz.

File metadata

File hashes

Hashes for django-include-by-ajax-3.0.2.tar.gz
Algorithm Hash digest
SHA256 a584031fe176334ed9ee11f0209bff8d5098c368bb8ad3d878c16fe24fb999e3
MD5 83ece0fbf52316ea2407afd87b714ce5
BLAKE2b-256 924661bcb647d18f0b6346bcf4015574f541ecbb27433e42aac41e4b01a5ccc9

See more details on using hashes here.

File details

Details for the file django_include_by_ajax-3.0.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_include_by_ajax-3.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ed29a049a40127090ab17ef29e5bf5b1fe029ae69e6092357ba6d8623086d053
MD5 febe80c72914a40a27a655fad4169c33
BLAKE2b-256 0adca0aedf31631b85b007c91e4fe08eb3e6d301c85bf91d4d0d049482fecd7e

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page