- 🇨🇦Canada plousia
I had to do this and thought I'd write it up for those who may be looking for the same thing. Note that this setup is assuming a single-value image or image media entity reference field on a node, so you don't need to add unique IDs or anything like that as you do with Paragraphs where you may have more than one on the same page.
/** * Implements template_preprocess_node(). */ function MYTHEME_preprocess_node(&$vars) { $node = $vars['node']; $type = $node->bundle(); switch ($type) { // here you will need to replace 'landing_page' with the machine name of your content type case 'landing_page': // Make sure the image field is not empty. // Replace 'field_hero_image' with your content type's image field machine name if (!empty($node->get('field_hero_image')->getValue()[0]['target_id'])) { // in your node or page template, you will need to add a div with the class "page-hero". Change this class name if needed to whatever you want to use $css_selector = ' .page-hero'; // Here we call the method to generate media queries. // We pass in the CSS selector string as described above. // We pass in the entity object. // We pass in the machine name of the image/media image field. // We pass in the machine name of the Responsive Image Style. // In this example, I have a Responsive Image Style called 'fullscreen_hero'. // Replace the field machine name and the responsive image style machine name to whatever you are using. $style_tag = ResponsiveBackgroundImage::generateMediaQueries($css_selector, $node, 'field_hero_image', 'fullscreen_hero'); // We then check if the media queries were properly generated and attach them to the HTML head. if ($style_tag) { $vars['#attached']['html_head'][] = $style_tag; } } break; } }
You can also do this in a page preprocess function if you want, although if you use node preprocess and just put a div with the correct CSS class in your page template, it will still work. Here's the page preprocess function, you just need to check if it's a node page:
/** * Implements template_preprocess_page(). */ function MYTHEME_preprocess_page(&$vars) { $node = $vars['node']; if($node) { $type = $node->bundle(); switch ($type) { case 'landing_page': // Make sure the image field is not empty. if (!empty($node->get('field_hero_image')->getValue()[0]['target_id'])) { $css_selector = ' .page-hero'; $style_tag = ResponsiveBackgroundImage::generateMediaQueries($css_selector, $node, 'field_hero_image', 'fullscreen_hero'); if ($style_tag) { $vars['#attached']['html_head'][] = $style_tag; } } break; } } }
- 🇨🇦Canada plousia
@ maintainer, this might be useful to add to the documentation.