How to integrate Angular 6 with Drupal 8

Created on 26 June 2019, almost 6 years ago
Updated 29 December 2023, over 1 year ago

I am new to Drupal. I was trying to integrate Angular 6 with Drupal 8.
Steps done:
1. create drupal block
2. create angular JS simple app and place it in component folder.
3. Run angular JS app on localhost:4200

When adding the block to a region , block comes but details are not coming from angular JS platform.

Can anyone please help ?

💬 Support request
Status

Active

Component

Documentation

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇦🇺Australia interlated

    1. Custom module

    Follow the examples module.

    2. Header attributes

    Via the module file

    function module_preprocess_html(&$variables) {
      $xuacompatible = [
        '#tag' => 'base',
        '#attributes' => [
          'href' => '/my-will',
        ],
      ];
    
      $variables['page']['#attached']['html_head'][] = [
        $xuacompatible,
        'x-ua-compatible',
      ];
    
      $variables['html_attributes']['data-critters-container'] = "";
    }
    

    3. Include js via module hook.

    I want to keep it on a specific page

    function module_js_alter(&$javascript,) {
      $current_path = \Drupal::service('path.current')->getPath();
      if ($current_path === '/node/4') {
        $javascript = [];
    
        $polyfill = Drupal::service('extension.list.module')
            ->getPath('will_exporter') . '/docwills/browser/polyfills.js';
    
        $javascript[$polyfill] = [
          'weight' => 100,
          'minified' => FALSE,
          'group' => 'interlated',
          'type' => 'file',
          'data' => $polyfill,
          'version' => '1.0.1',
          'cache' => TRUE,
          'preprocess' => FALSE,
          'attributes' => ['type' => 'module'],
          'licence' => [
            'name' => 'custom',
            'url' => 'https://www.interlated.com.au',
            'gpl-compatible' => FALSE,
          ],
          'scope' => 'footer',
        ];
    
        $angular_main = Drupal::service('extension.list.module')
            ->getPath('will_exporter') . '/docwills/browser/main.js';
    
        $javascript[$angular_main] = [
          'weight' => 100,
          'minified' => FALSE,
          'group' => 'interlated',
          'type' => 'file',
          'data' => $angular_main,
          'version' => '1.0.1',
          'cache' => TRUE,
          'preprocess' => FALSE,
          'attributes' => ['type' => 'module'],
          'licence' => [
            'name' => 'custom',
            'url' => 'https://www.interlated.com.au',
            'gpl-compatible' => FALSE,
          ],
          'scope' => 'footer',
        ];
      }
    }

    4. Include css via module.libaries.yml

    module:
    css:
    theme:
    docwills/browser/styles.css: { }

    5. Create a block for the html element. Use the block example from the examples module

    In the past I've attached the js files here. Link the inclusion of the files to the presence of the block.

    /**
     * @Block(
     *   id = "will_exporter",
     *   admin_label = @Translation("Will Exporter"),
     *   category = @Translation("Interlated"),
     * )
     */
    class AngularAppBlock extends BlockBase {
    
      /**
       * {@inheritdoc}
       */
      public function build() {
        return [
          '#type' => 'html_tag',
          '#tag' => 'app-root',
          '#attached' => [
            'library' => [
              'module/module',
            ],
          ],
        ];
      }
    }

    6. Change the build destination in the angular app to the module location

    angular.json

    "outputPath": "../../web/modules/custom/module/exporter",

    All the paths above point here

    7. No output hashing in the package.json build script

    If you keep this, you need to change the main.js and polyfills.js file names every time you build

    "prod": "ng build --configuration=production --output-hashing=none --base-href=./wills",

    8. Run the "prod" script

    npm run prod

    rebuild caches. Repeat until the javascript console shows no errors.

Production build 0.71.5 2024