Server-side Event Handlers

Introduction

AJAX event handlers are PHP functions that can be defined in the page or layout PHP section or inside components and are used to execute the server-side functionality of an AJAX request made by the Request API or Data Attributes API.

Handler method names should be specified with the on prefix, followed by the event name in PascalCase - for example, onMyHandler or onCreatePost.

All handlers support the use of updating partials as part of the AJAX response. This behavior can also be controlled via the update option in the Request API or the data-request-update attribute in the Data Attributes API.

function onSubmitContactForm()
{
    // AJAX handler functionality goes here
}

If two handlers with the same name are defined in a page and layout together, the page handler will be executed. The handlers defined in components have the lowest priority.

Calling a handler

Every AJAX request should specify a handler name. When the request is made, the server will search all the registered handlers and run the handler with the highest priority.

<!-- Attributes API -->
<button data-request="onSubmitContactForm">Go</button>

<!-- JavaScript API -->
<script>
    Snowboard.request(null, 'onSubmitContactForm')
</script>

If two components register the same handler name, it is advised to prefix the handler with the component short name or alias. If a component uses an alias of mycomponent the handler can be targeted with mycomponent::onName.

<button data-request="mycomponent::onSubmitContactForm">Go</button>

You should use the __SELF__ variable instead of the hard coded alias in order to support multiple instances of your component existing on the same page.

<form data-request="{{ __SELF__ }}::onCalculate" data-request-update="'{{ __SELF__ }}::calcresult': '#result'">

Generic handler

Sometimes you may need to make an AJAX request for the sole purpose of updating page contents by pulling partial updates without executing any code. You may use the onAjax handler for this purpose. This handler is available everywhere the AJAX framework can respond.

clock.htm Partial

The time is {{ 'now' | date('H:i:s') }}

index.htm Page

<span id="clock-display">
    {% partial 'clock' %}
</span>
<button
    data-request="onAjax"
    data-request-update="'clock': '#clock-display'"
>
    Check the time
</button>

Redirects in AJAX handlers

If you need to redirect the browser to another location, return the Redirect object from the AJAX handler. The framework will redirect the browser as soon as the response is returned from the server.

function onRedirectMe()
{
    return Redirect::to('http://google.com');
}

You may also specify a redirect in the Request API options, or through the data-request-redirect data attribute. This setting will take precedence over any redirect returned in the AJAX response.

Returning data from AJAX handlers

You may want to return structured, arbitrary data from your AJAX handlers. If an AJAX handler returns an array, you can access its elements in the success callback handler.

function onFetchDataFromServer()
{
    /* Some server-side code */

    return [
        'totalUsers' => 1000,
        'totalProjects' => 937
    ];
}

Then, in JavaScript:

Snowboard.request(this, 'onHandleForm', {
    success: function(data) {
        console.log(data);
    }
});

Data returned in this fashion cannot be accessed through the Data Attributes API.

You may also retrieve the data in several events that fire as part of the Request lifecycle.

Throwing an AJAX exception

You may throw an AJAX exception using the AjaxException class to treat the response as an error while retaining the ability to send response contents as normal. Simply pass the response contents as the first argument of the exception.

throw new AjaxException([
    'error' => 'Not enough questions',
    'questionsNeeded' => 2
]);

NOTE: When throwing this exception type, partials will be updated as normal.

Running code before handlers

Sometimes you may want code to execute before a handler executes. Defining an onInit function as part of the page execution life cycle allows code to run before every AJAX handler.

function onInit()
{
    // From a page or layout PHP code section
}

You may define an init method inside a component class or backend widget class.

function init()
{
    // From a component or widget class
}
Copyright © 2024 Winter CMS
Edit on GitHub