summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/big_pipe/big_pipe.module
blob: 75509d6f649e2679c92880377f20b340b0c29d5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php

/**
 * @file
 */

/**
 * Implements hook_theme_suggestions_HOOK().
 */
function big_pipe_theme_suggestions_big_pipe_interface_preview(array $variables): array {
  $common_callbacks_simplified_suggestions = [
    'Drupal_block_BlockViewBuilder__lazyBuilder' => 'block',
  ];

  $suggestions = [];
  $suggestion = 'big_pipe_interface_preview';
  if ($variables['callback']) {
    $callback = preg_replace('/[^a-zA-Z0-9]/', '_', $variables['callback']);
    if (is_array($callback)) {
      $callback = implode('__', $callback);
    }

    // Use simplified template suggestion, if any.
    // For example, this simplifies
    // big-pipe-interface-preview--Drupal-block-BlockViewBuilder--lazyBuilder--<BLOCK ID>.html.twig
    // to
    // big-pipe-interface-preview--block--<BLOCK ID>.html.twig
    if (isset($common_callbacks_simplified_suggestions[$callback])) {
      $callback = $common_callbacks_simplified_suggestions[$callback];
    }

    $suggestions[] = $suggestion .= '__' . $callback;
    if (is_array($variables['arguments'])) {
      $arguments = preg_replace('/[^a-zA-Z0-9]/', '_', $variables['arguments']);
      foreach ($arguments as $argument) {
        if (empty($argument)) {
          continue;
        }
        $suggestions[] = $suggestion . '__' . $argument;
      }
    }
  }
  return $suggestions;
}