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

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 hashes)

Uploaded Source

Built Distribution

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

Uploaded Python 2 Python 3

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