top of page

Forum Posts

stuart.lynn21
Jan 11, 2019
In Coding with Velo
Hi, can anyone shed any light on why Wix throws so many 403 errors against the Wix .js libraries (apart from the unhandled promise message which is me)? Or am I the only person seeing these? Thanks in advance
What are these Wix library load errors? content media
0
2
26
stuart.lynn21
Jan 06, 2019
In Coding with Velo
Hi, I'm trying to apply a number of filters to a dataset at the same time, e.g. prior to calling the statement below I've created a superQuery array which filters $w('#dataset1') to show the records that match the superQuery ... then I'm trying to apply a second filter the records that match the .hasSome statement with an additional parameter stored in (newFilter) Is this possible, as when I run the code it applies the .hasSome but not the newFilter? $w('#dataset1').setFilter(wixData.filter(newFilter)                 .hasSome("clusterCodes", superQuery))
0
3
71
stuart.lynn21
Dec 23, 2018
In Coding with Velo
From api notes it looks like local and session variables can only be strings ... is that correct and if so what’s the best way to make an array accessible across the whole site? thanks in advance ...
1
2
699
stuart.lynn21
Dec 23, 2018
In Coding with Velo
Only stared to use Wix recently but like many other users I experienced significant page load performance issues when using repeaters. Despite optimising images etc and reading dozens of posts on the forum I couldn't find a solution. So I decided to experiment with different approaches and here's by best effort so far. I hope this all makes sense and I'd love for someone to tell me there is a better/easier/faster way to do this?? #MerryChristmas Page is here www.technortheast.co.uk/ecosystem albeit it seems to work faster again if you go to the homepage www.technortheast.co.uk and select VIEW ECOSYSTEM from the menu (not sure why this would be the case unless the Wix framework is loaded with the home page making the ecosystem page seem faster. The technique I had the best results with was to ditch the repeater control panel completely and do everything with code instead... and rather than keep hitting the dataset for each repeater, I use a data array. e.g. 1. Use wixData.query to read the contents of my database into an array originalDataset [] 2. I then call the function renderRepeater('#repeater1', '#image1', 'Leading'); #repeater1 and #image reference the repeater and 'Leading' is the keyword that I want to filter originalDataset with *** however I only do this for the first repeater as I can only see the first repeater on load and it's much faster only loading what you can see ... the rest are loaded incrementally as I scroll own the page*** import wixData from "wix-data"; let originalDataset = []; var paintSection1 = 0; var paintSection2 = 0; var paintSection3 = 0; var paintSection4 = 0; $w.onReady(function () { //Query to get the information from the database and store in 'originalDataset array for future use         wixData.query("Entity_Details")         .limit(1000)         .ascending("title")         .find()         .then((results) => {             originalDataset = results.items; // Render the first repeater only onReady and load the rest as the user browses down the page // using 4x repeater viewportLeave events             renderRepeater('#repeater1', '#image1', 'Leading');         })         .catch((err) => { let errorMsg = err;         }); }); 3. Within my renderRepeater() function I set the repeaters data to the results of the function function filterCompanies(companies, match) ... and show() the repeater and set the three attributes of image src, url link, and tooltip *** I made he repeater hidden on load thinking that might speed up load times but I'm not sure if this is so*** function renderRepeater(repeaterID, ImageID, categoryFilter) { // Filter the originalDataset using the categoryFilter element passed into the function     $w(repeaterID).data = filterCompanies(originalDataset, categoryFilter);     $w(repeaterID).show() //Set the information to the repeater        $w(repeaterID).onItemReady(($w, itemData) => { //add here all the relevant elements of the repeater         $w(ImageID).src = itemData.profile_image;         $w(ImageID).link = itemData.website;         $w(ImageID).tooltip = itemData.title;     }) } // Simple Array Filter function function filterCompanies(companies, match) { return originalDataset.filter(company => company.category.includes(match)); } 4. Then as I scroll down the page I load the other repeaters three at a time (I use the var paintSection1 (2,3,4) the check of I've done this already as I only need to render each of repeaters once in batches of 3 ... loading one repeater ahead to make the scroll look seamless ) *** then I have 3x more viewportLeave functions for repeaters 3,6 and 9 *** export function repeater1_viewportLeave(event) { //Test to see if the section has already been displayed, if not then display if (paintSection1 === 0) {         renderRepeater('#repeater2', '#image2', 'Core');         renderRepeater('#repeater3', '#image3', 'Rising');         renderRepeater('#repeater4', '#image4', 'Service');         paintSection1 = 1;     } } #THEEND
5
2
972

stuart.lynn21

More actions

This website was designed with Velo by Wix

bottom of page