gremo/pjax-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony bundle that provide a lightweight yet powerfull integration with pjax jQuery plugin.

Installs: 3 032

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 1

Open Issues: 0

Type:symfony-bundle

v1.0.1 2016-04-30 15:41 UTC

This package is auto-updated.

Last update: 2020-09-04 16:19:45 UTC


README

Latest stable Downloads total GitHub issues

Symfony bundle that provide a lightweight yet powerfull integration with pjax jQuery plugin.

New contributors are welcome!

Installation

Add the bundle in your composer.json file:

{
    "require": {
        "gremo/pjax-bundle": "~1.0"
    }
}

Then enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Gremo\PjaxBundle\GremoPjaxBundle(),
        // ...
    );
}

Configuration

Integration is disabled by default, see "Usage" to find out which method you need to enable.

Short configuration:

# GremoPjaxBundle Configuration
gremo_pjax:
    annotations:          false # should annotations be enabled?
    controller_injection: false # should controller injection be enabled?

Full configuration and defaults:

# GremoPjaxBundle Configuration
gremo_pjax:
    # Annotations configuration
    annotations:
        enabled: false # should annotations be enabled?
        # Annotation defaults (see "Annotations")
        defaults:
            version: ~
            filter:  true

    # Controller injection configuration
    controller_injection:
        enabled: false # should controller injection be enabled?
        # How controller parameters should be named?
        parameters:
            X-PJAX: _isPjax
            X-PJAX-Container: _pjaxContainer

Usage

This bundle provides two different types of integration: annotations and controller injection.

Annotations

This is the most unobtrusive way and it's fully automatic:

  • You don't need custom template logic or controller logic
  • Response HTML is automatically filtered (if filter option is true) and a <title> tag is injected in the pjax container fragment
  • Response time will slightly increase due to the filtering logic, but you still save bandwidth

Note: everything that is not a successfull response or text/html is simply ignored.

Available options:

  • version (string, default null): sets the pjax version (see Layout Reloading)
  • filter (bool, default true): whatever respose should contain only the pjax container or the full HTML

Note: annotations defined on a controller action inherit from class annotation and replace defaults from configuration.

The @Pjax annotation on a controller class defines all action routes as pjax-aware:

<?php

use Gremo\PjaxBundle\Annotation\Pjax;

/**
 * @Pjax(version="1.2")
 */
class DefaultController extends Controller
{
    // ...
}

Instead, on a controller action, the annotation defines the route as pjax-aware:

<?php

use Gremo\PjaxBundle\Annotation\Pjax;

class DefaultController extends Controller
{
    /**
     * @Pjax(filter=false)
     */
    public function indexAction(Request $request)
    {
        // ...
    }
}

Controller injection

This is the most obtrusive way but potentially the most powerful one:

  • You need to define the pjax action parameters (names are configurable)
  • You need to define a custom template/controller logic for returing the full HTML or just the pjax container
  • Extra logic allows to save queries and reduce the response time
<?php

class DefaultController extends Controller
{
    /**
     * @Route("/", name="homepage")
     */
    public function indexAction(Request $request, $_isPjax, $_pjaxContainer)
    {
        if ($_isPjax) {
            // Return just the pjax container HTML if pjax is enabled
            // ...
        }

        // Return the full layout
        // ...
    }
}