bravo3/spa-bundle

Symfony 2 bundle to create a SPA web application

Installs: 72

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

0.1.1 2015-05-09 05:59 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:18:35 UTC


README

This bundle enables you to turn any normal Symfony 2 application into a 'SPA' application, causing the first page load to be rendered normally and all consequtive page hits to be loaded via XHR.

Page content is broken into "blocks", only required blocks of the main site layout will be re-rendered.

This bundle requires your application to use Twig rendering, only minor changes to the controller are required:

class HomeController extends AbstractSpaController
{
    /**
     * @Route("/", name="home")
     * @param Request $request
     * @return Response
     */
    public function homeAction(Request $request)
    {
        // .. 
        
        // Call the AbstractSpaController#render() function to trigger the SPA engine -
        return $this->render('@MySiteBundle/Home/home.html.twig', ['param' => 'value']);
    }
}