luketowers/oc-easyspa-plugin

Adds Single Page Application like features to the OctoberCMS frontend using the OctoberCMS AJAX framework

Installs: 76

Dependents: 0

Suggesters: 0

Security: 0

Stars: 20

Watchers: 4

Forks: 16

Open Issues: 5

Language:JavaScript

Type:october-plugin

v1.0.4 2020-09-23 08:39 UTC

This package is auto-updated.

Last update: 2024-03-23 16:13:07 UTC


README

Adds Single Page Application like features to the OctoberCMS frontend using the OctoberCMS AJAX framework. More specifically, it enables (through the adding of a component to your layout) loading and updating page content through AJAX.

Requirements

This plugin requires the Ajax Framework to be included in your layout/page in order to handle requests.

Current Support

Only loading new pages (Static Pages or CMS Pages, any URL that is controlled by the CMS) is currently supported. Components on dynamically loaded pages will also work, and assets will be dynamically added and removed as required.

Installation

To install from the Marketplace, click on the "Add to Project" button and then select the project you wish to add it to before updating the project to pull in the plugin.

To install from the backend, go to Settings -> Updates & Plugins -> Install Plugins and then search for LukeTowers.EasySPA.

To install from the repository, clone it into plugins/luketowers/easyspa and then run composer update from your project root in order to pull in the dependencies.

To install it with Composer, run composer require luketowers/oc-easyspa-plugin from your project root.

Usage

To use this plugin, simply attach the [easySPA] component to any layouts that you want to be able to have their pages loaded over AJAX. The loader needs to be attached to an element on the page that contains anchor tags with the URLs to the pages that are to be loaded. This is done by adding the data-control="easy-spa-loader" attribute onto the containing element. There is also an optional attribute data-refresh-partials that can be used to define additional partials that should be refreshed when the page is load in the form of partialPath1:#partialSelector1 with additional partials appended with an & symbol.

Example Layout:

description="Default layout"
[easySPA]
==
<html>
    <head>
        ...
    </head>
    <body data-control="easy-spa-loader" data-refresh-partials="site/header:#site-header">
        <header id="site-header">
            {% partial 'site/header' %}
        </header>

        {% page %}

        <footer>
            ...
        </footer>
    </body>
</html>

Use Of Third-party/Custom Javascript

Since this plugin uses the Ajax framework to dynamically make changes to the DOM, not all third-party Javascript libraries/scripts may work properly when a page is updated. This is because many of these scripts rely on the $(document).ready event or $(window).load which is not triggered during an ajax update. If you have scripts like this, you may need to re-instantiate some Javascript objects in your code using a $(document).render event listener.

Example (with fake third-party libraries):

 $(document).render(function(){
    $('.example-slider').slider({transition: 30});
    $('.example-carousel').carousel();
 }); 

Note: The script file with your $(document).render event listener must be included (script tag) after {% framework extras %} to work properly.