JsExampleController.php

Same filename in other branches
  1. 8.x-1.x js_example/src/Controller/JsExampleController.php
  2. 4.0.x modules/js_example/src/Controller/JsExampleController.php

Namespace

Drupal\js_example\Controller

File

modules/js_example/src/Controller/JsExampleController.php

View source
<?php

namespace Drupal\js_example\Controller;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\examples\Utility\DescriptionTemplateTrait;

/**
 * Controller for Hooks example description page.
 *
 * This class uses the DescriptionTemplateTrait to display text we put in the
 * templates/description.html.twig file.
 */
class JsExampleController {
    use DescriptionTemplateTrait;
    use StringTranslationTrait;
    
    /**
     * {@inheritdoc}
     */
    protected function getModuleName() {
        return 'js_example';
    }
    
    /**
     * Weights demonstration.
     *
     * Here we demonstrate attaching a number of scripts to the render array via
     * a library. These scripts generate content according to 'weight' and color.
     *
     * In this controller, on the Drupal side, we do three main things:
     * - Create a container DIV, with an ID all the scripts can recognize.
     * - Attach some scripts which generate color-coded content. We use the
     *   'weight' attribute to set the order in which the scripts are included in
     *   the library declaration.
     * - Add the color->weight array to drupalSettings, which is where Drupal
     *   passes data out to JavaScript.
     *
     * Each of the color scripts (red.js, blue.js, etc) uses jQuery to find our
     * DIV, and then add some content to it. The order in which the color scripts
     * execute will end up being the order of the content.
     *
     * The 'weight' atttribute in libraries yml file determines the order in which
     * a script is output to the page. To see this in action:
     * - Uncheck the 'Aggregate Javascript files' setting at:
     *   admin/config/development/performance.
     * - Load the page: examples/js_example/weights. Examine the page source.
     *   You will see that the color js scripts have been added in the <head>
     *   element in weight order.
     *
     * To test further, change a weight in the $weights array below and in library
     * yml file, then rebuild cache and reload examples/js_example/weights.
     * Examine the new source to see the reordering.
     *
     * @return array
     *   A renderable array.
     */
    public function getJsWeightImplementation() {
        // Create an array of items with random-ish weight values.
        $weights = [
            'red' => -4,
            'blue' => -2,
            'green' => -1,
            'brown' => -2,
            'black' => -1,
            'purple' => -5,
        ];
        // Start building the content.
        $build = [];
        // Main container DIV. We give it a unique ID so that the JavaScript can
        // find it using jQuery.
        $build['content'] = [
            '#markup' => '<div id="js-weights" class="js-weights"></div>',
        ];
        // Attach library containing css and js files.
        $build['#attached']['library'][] = 'js_example/js_example.weights';
        // Attach the weights array to our JavaScript settings. This allows the
        // color scripts we just attached to discover their weight values, by
        // accessing drupalSettings.js_example.js_weights.*color*. The color scripts
        // only use this information for display to the user.
        $build['#attached']['drupalSettings']['js_example']['js_weights'] = $weights;
        return $build;
    }
    
    /**
     * Accordion page implementation.
     *
     * We're allowing a twig template to define our content in this case,
     * which isn't normally how things work, but it's easier to demonstrate
     * the JavaScript this way.
     *
     * @return array
     *   A renderable array.
     */
    public function getJsAccordionImplementation() {
        $title = $this->t('Click sections to expand or collapse:');
        // Build using our theme. This gives us content, which is not a good
        // practice, but which allows us to demonstrate adding JavaScript here.
        $build['myelement'] = [
            '#theme' => 'js_example_accordion',
            '#title' => $title,
        ];
        // Add our script. It is tiny, but this demonstrates how to add it. We pass
        // our module name followed by the internal library name declared in
        // libraries yml file.
        $build['myelement']['#attached']['library'][] = 'js_example/js_example.accordion';
        // Return the renderable array.
        return $build;
    }

}

Classes

Title Deprecated Summary
JsExampleController Controller for Hooks example description page.