vivomedia / neos-structural-change-reload
Reload document on structural change
Installs: 3 256
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:neos-package
Requires
- neos/flow: *
- neos/neos-ui: *
README
In some cases you need to reload the whole collection or page when the structure of nodes within a collection has changed. Common examples are sliders, grids or galleries.
This package allows defining collections, which will get re-rendered if a direct child gets moved, inserted or removed.
Please note: This package is only working for "flat collections", which means NodeTypes, which are actually the collection and don't have tethered child collections.
Install
Install with composer
composer require vivomedia/neos-structural-change-reload
Configuration
Reload the collection if the structure has changed.
Vendor.Site:Content.ExampleCollection:
superTypes:
'Neos.Neos:Content': true
'Neos.Neos:ContentCollection': true
options:
reloadIfStructureHasChanged: true
Reload the page if the structure has changed.
Vendor.Site:Content.ExampleCollection:
superTypes:
'Neos.Neos:Content': true
'Neos.Neos:ContentCollection': true
options:
reloadPageIfStructureHasChanged: true
Inspired by SiteGeist.StageFog