https://github.com/psmb/psmb.ajaxify
Lazily load any content on your Neos site
https://github.com/psmb/psmb.ajaxify
Last synced: about 1 year ago
JSON representation
Lazily load any content on your Neos site
- Host: GitHub
- URL: https://github.com/psmb/psmb.ajaxify
- Owner: psmb
- License: gpl-3.0
- Created: 2017-04-19T08:46:59.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-26T22:43:19.000Z (about 2 years ago)
- Last Synced: 2025-04-19T22:35:07.946Z (about 1 year ago)
- Language: PHP
- Size: 36.1 KB
- Stars: 13
- Watchers: 3
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Psmb.Ajaxify
Enhance your NeosCMS experience with Psmb.Ajaxify, a powerful package that streamlines asynchronous loading of specific page components through AJAX, all with just one line of Fusion code. Why bother? It significantly accelerates the initial page load by deferring the loading of less critical parts, such as comments.

## TL;DR
### **Installation**:
```bash
composer require psmb/ajaxify
```
### Integration:
Add `@process.myUniqueKey = Psmb.Ajaxify:Ajaxify` to any Fusion path. Ensure that the `myUniqueKey` remains globally unique.
Incorporate the sample AJAX loading script into your Fusion code:
```fusion
prototype(Neos.Neos:Page).head.ajaxLoader = Psmb.Ajaxify:CssTag
prototype(Neos.Neos:Page).body.javascripts.ajax = Psmb.Ajaxify:JsTag
```
Alternatively, integrate these assets via your preferred build tool or craft your custom loader.
### Completion:
Done. Now part of your pages will be lazily loaded via an AJAX request.
**Note**: Ensure that your Fusion component doesn't rely on any context variables apart from the standard ones. If you need to reuse an EEL expression, refrain from embedding it into context. Instead, encapsulate it within a `Neos.Fusion:Value` object for universal usage.
### Customization:
Feel free to override the `Psmb.Ajaxify:Loader` object to tailor the loader according to your requirements.
## Compatibility and Maintenance
This package is currently being maintained for the following versions:
| Neos Version | Version | Maintained |
|--------------------|---------|------------|
| Neos 7.3 and above | 1.x | Yes |
| Neos 3.3 - 7.2 | 0.4 | No |
## Contribution
Feel free to tweak and optimize your NeosCMS setup with Psmb.Ajaxify. Streamline your page loads and provide a smoother user experience effortlessly.