You are here

public function JsExampleController::getJsWeightImplementation in Examples for Developers 8

Same name and namespace in other branches
  1. 3.x modules/js_example/src/Controller/JsExampleController.php \Drupal\js_example\Controller\JsExampleController::getJsWeightImplementation()

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 value

array A renderable array.

1 string reference to 'JsExampleController::getJsWeightImplementation'
js_example.routing.yml in js_example/js_example.routing.yml
js_example/js_example.routing.yml

File

js_example/src/Controller/JsExampleController.php, line 59

Class

JsExampleController
Controller for Hooks example description page.

Namespace

Drupal\js_example\Controller

Code

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;
}