In an issue comment @justin2pin mentioned
To enable test modules, add (or uncomment) this line in your local settings file (i.e. settings.local.php):
$settings['extension_discovery_scan_tests'] = TRUE;
So I believe that entails the following (assumes your docroot is "web"):
- cd web/sites/default
- cp --interactive example.settings.local.php settings.local.php
- edit settings.local.php, search for "extension_discovery_scan_tests", and uncomment the line
However, once that's done I'm not sure how to get it to take effect.
Clive over at Drupal Answers provided some direction. Turns out that a significant part of the issue is that the dragula css/js library is not installed as part of Mercury Editor installation and there is no instructions that call out the requirement to install it. Clive suggested
- Installing dragula (npm install dragula)
- Disabling CSS/JS aggregation
Once npm was installed the MIME type issues above were resolved and after disabling aggregation the Mercury Editor tray started working.
However, I'm still unable to get any drag and drop functionality to work as no UI controls are generated.
Chris Kelly suggested F12 browser debug which shows these errors -
The resource from โhttps://pmr.ddev.site/libraries/dragula/dist/dragula.min.css?ss20sbโ was blocked due to MIME type (โtext/htmlโ) mismatch (X-Content-Type-Options: nosniff).
The resource from โhttps://pmr.ddev.site/libraries/dragula/dist/dragula.min.js?v=3.7.3โ was blocked due to MIME type (โtext/htmlโ) mismatch (X-Content-Type-Options: nosniff).
So it looks like they need to be "text/css" and "application/javascript" respectively.
I have no idea how to do that and it sounds like dragula is probably very critical to the drag/drop Mercury Editor behavior so I probably need to wait for this issue to be resolved before I'll be able to proceed.
etxaleku โ created an issue.
Thanks! Layouts is now enabling smoothly.
etxaleku โ created an issue.
I have a Drupal 11.1.2 installation with Mercury Layouts 1.1.1 and it will not enable, says that "sdc" is missing.
Provides composable layouts for Mercury Editor
Machine name: mercury_layouts
Version: 1.1.1
Requires:
Layout Discovery, sdc (missing), Serialization (disabled), Style Options
$ ddev drush status
Drupal version : 11.1.2
I am struggling while trying to follow Justin's videos on setting up Layout Paragraphs and Mercury Editor.
Hmm, it looks like there are multiple automated ways to generate a subtheme.
Option 1 -
php web/core/scripts/drupal generate-theme my_theme --starterkit=bootstrap5
Option 2 -
drush --include="web/themes/contrib/bootstrap5/src/Drush" bootstrap5:generate-subtheme my_theme --subtheme-name="My Theme"
Option 1 works in Drupal 11.1.2 (after manually creating bootstrap5.starterkit.yml) while Option 2 fails with this stacktrace -
Error: Class "Drupal\bootstrap5\SubthemeManager" not found in /var/www/html/web/themes/contrib/bootstrap5/src/Drush/Commands/Bootstrap5Commands.php on line 67 #0 [internal function]: Drush\Commands\Bootstrap5Commands->generateSubtheme()
#1 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(276): call_user_func_array()
#2 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(212): Consolidation\AnnotatedCommand\CommandProcessor->runCommandCallback()
#3 /var/www/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(175): Consolidation\AnnotatedCommand\CommandProcessor->validateRunAndAlter()
#4 /var/www/html/vendor/consolidation/annotated-command/src/AnnotatedCommand.php(387): Consolidation\AnnotatedCommand\CommandProcessor->process()
#5 /var/www/html/vendor/symfony/console/Command/Command.php(279): Consolidation\AnnotatedCommand\AnnotatedCommand->execute()
#6 /var/www/html/vendor/symfony/console/Application.php(1094): Symfony\Component\Console\Command\Command->run()
#7 /var/www/html/vendor/symfony/console/Application.php(342): Symfony\Component\Console\Application->doRunCommand()
#8 /var/www/html/vendor/symfony/console/Application.php(193): Symfony\Component\Console\Application->doRun()
#9 /var/www/html/vendor/drush/drush/src/Runtime/Runtime.php(110): Symfony\Component\Console\Application->run()
#10 /var/www/html/vendor/drush/drush/src/Runtime/Runtime.php(40): Drush\Runtime\Runtime->doRun()
#11 /var/www/html/vendor/drush/drush/drush.php(140): Drush\Runtime\Runtime->run()
#12 /var/www/html/vendor/bin/drush.php(119): include('...')
#13 {main}
Error: Class "Drupal\bootstrap5\SubthemeManager" not found in Drush\Commands\Bootstrap5Commands->generateSubtheme() (line 67 of /var/www/html/web/themes/contrib/bootstrap5/src/Drush/Commands/Bootstrap5Commands.php).
[warning] Drush command terminated abnormally.
Why do you believe that to be the case? I am able to install Drupal 11.1.2 and then install Bootstrap5 4.0.3 successfully.
This is the sequence I used -
ddev config --project-type=drupal --php-version=8.3 --docroot=web
ddev composer create 'drupal/recommended-project:^11'
ddev composer require 'drush/drush'
ddev drush site:install
ddev composer require 'drupal/bootstrap5:^4.0'
I did run into an issue when I then tried to create a Bootstrap5 subtheme which I submitted as an issue ๐ subtheme generation via generate-theme broken Active .
It would probably help to post the errors or description of why you believe there's a support/compatibility issue.
etxaleku โ created an issue.