netlogix / esi-rendering
Render content in fusion as esi:include
Installs: 7 655
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 1
Type:neos-package
Requires
- neos/neos: ^5.3 || ^7.3 || ^8.0
Suggests
- flowpack/varnish: For Varnish support including caching ESIs individually with their own lifetime
This package is auto-updated.
Last update: 2024-10-23 22:54:41 UTC
README
This package provides a simple way to render edge side includes in Neos. This alows you to individually cache parts of the page (e.g. header/footer).
We recommend using this package together with flowpack/varnish for Varnish integration.
Install package
composer require netlogix/esi-rendering
Usage
To render a fusion path as ESI, you can use the Netlogix.EsiRendering:RenderAsEsi
Fusion implementation:
renderer = afx` <p>This is rendered outside of the esi</p> <Netlogix.EsiRendering:RenderAsEsi node={props.site} cacheIdentifier="my-esi"> <p>This is rendered inside of the esi</p> <p>The given node is available as {node}</p> </Netlogix.EsiRendering:RenderAsEsi> `
This will render a <esi:include src="...">
tag after the first <p>
.
ESIs are not used in the Neos backend, instead the content will be rendered directly.
Debugging
To get the ESI uri, you can set the following setting to true
:
Netlogix: EsiRendering: debug: true
This will render a link
before the ESI:
<link rel="esi:include" esi-identifier="my-esi" context-node="/sites/my-site@live" href="/esirendering?fusionPath=...">
This is enabled by default for the Development context.