Configure Twig Namespaces to work for nested components and Drupal template system

Created on 25 July 2022, almost 2 years ago
Updated 30 May 2023, about 1 year ago

Problem/Motivation

Embedded or included twig components with Nested components are not loading in organisms or pages

Proposed resolution

Add the following namespaces with paths for Drupal in the vartheme_bs5.info.yml file

components:
  namespaces:
    vartheme_bs5: src/components
    atoms: src/components/atoms
    molecules: src/components/molecules
    organisms: src/components/organisms
    templates: src/components/templates
    pages: src/components/pages

Add the following namespaces with paths for Storybook, Webpack, and Mix in the webpack.config.js file

  // Twig
  config.module.rules.push({
    test: /\.(html.twig|twig)$/,
    use: [
      {
        loader: 'twig-loader',
        options: {
          twigOptions: {
            namespaces: {
              vartheme_bs5: path.resolve(__dirname, '../', 'src/components'),
              atoms: path.resolve(__dirname, '../', 'src/components/atoms'),
              molecules: path.resolve(__dirname, '../', 'src/components/molecules'),
              organisms: path.resolve(__dirname, '../', 'src/components/organisms'),
              templates: path.resolve(__dirname, '../', 'src/components/templates'),
              pages: path.resolve(__dirname, '../', 'src/components/pages'),
            },
          },
        },
      },
    ],
  });

Update all Components Twig files and Drupal template files

Remaining tasks

  • βœ… File an issue about this project
  • βœ… Addition/Change/Update/Fix to this project
  • βœ… Testing to ensure no regression
  • βž– Automated unit/functional testing coverage
  • βž– Developer Documentation support on feature change/addition
  • βž– User Guide Documentation support on feature change/addition
  • βœ… Accessibility and Readability
  • βœ… Code review from 1 Varbase core team member
  • βœ… Full testing and approval
  • βœ… Credit contributors
  • βœ… Review with the product owner
  • βœ… Update Release Notes and Update Helper on new feature change/addition
  • βœ… Release varbase-10.0.0-alpha1 β†’ , vartheme_bs5-2.0.0-alpha1 β†’

Varbase update type

  • βœ… No Update
  • βž– Optional Update
  • βž– Forced Update
  • βž– Forced Update if Unchanged

User interface changes

  • N/A

API changes

  • N/A

Data model changes

  • N/A

Release notes snippet

πŸ“Œ Task
Status

Fixed

Version

2.0

Component

Code

Created by

πŸ‡―πŸ‡΄Jordan Rajab Natshah Jordan

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.

Production build 0.69.0 2024