Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Archive

Add asset (JS) to modular page?

Started by Muut Archive 9 years ago · 5 replies · 1911 views
9 years ago

Hi
I've got a modular page and one module in it needs some javascript but since its only one module I was trying to avoid adding it sitewide.

I've tried adding this to my modular twig file but it just gets ignored when its rendered.

TWIG

    {% do assets.addJs('theme://js/icons.min.js') %}
{% endblock %}
9 years ago

Is your modular page implementing assets.js() or inheriting it from base.html.twig?
You need to have this somewhere in your template in order for js to be added to the page:

TWIG

{{ assets.js() }}
---
9 years ago

My base has asset.js and my modular.twig.html file extends the base
- {% extends 'partials/base.html.twig' %} -
so I think I've got this covered no?

I've adding

TWIG
 {{ parent() }} 

to modular.twig.html and that did nothing and I tried adding it to the modular page and Grav blew up

9 years ago

Calling parent() will not instantiate the parent, only return its object. In the context of modular-pages, their children - or modules - are not capable of adding assets upwards because they do not extend the base(.html.twig). Since your JS will be rendered page-wide for the modular, add it in modular.html.twig, as this template extends base.

9 years ago

ah I understand now. I was thinking it was down to the inheritance levels in twig but this makes sense. I've got it working now by updating the modular.twig.html with my JS. Thanks a lot

9 years ago

Adding JS assets to the modular template modular.html.twig is not a clean solution as other modular pages still use the modular template. There should be a standard way of injecting one-off CSS and JS assets from modules in my opinion.

👍 4

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1282 9 years ago
Archive · by Muut Archive, 9 years ago
2 889 9 years ago
Archive · by Muut Archive, 9 years ago
2 4019 9 years ago
Archive · by Muut Archive, 9 years ago
1 2894 9 years ago
Archive · by Muut Archive, 9 years ago
3 1078 9 years ago