Hello All
Trying to implement continuous scrolling for the pages with the same structure (as repeater or blog).
I have two collections relevant for this case:
Items: Artworks data with reference field to author and keeper
Persons: Person data with Label (Author/Keeper)
On every page:
-
Data about Keeper
-
Data about Author
-
Related items with data
Curren attempt to implement: dynamic page with repeater for items and anchor with
export function anchor1_onViewportEnter() {
$w(“#aDataset”).getNextDynamicPage()
.then( (next) => {
if (next){
wixLocation.to(next);
}
} );
}
Problems:
- Can’t implement as repeater because of repeater on page
- Can’t implement as dynamic category page (/Keeper/Author) because of reference fields
- Scrolling is not continuous (delay and jump)
I’d be greately appreciate any help/idea. The project is non profit and urgent.
Thanks in advance