Help forum
- Search on items with pagination
Jehex
5 2 months ago
Hi there ! I have a gallery of images ( from my xano endpoint / database ) and already implemented pagination ( 1 page show 8 items ) and a search bar ( who search in the prompt attribute of my items ) Everything working great except that the search function only search on the current page showed instead of total of items . Would like to know if this is manageable directly on the front end or if this require a specific endpoint . Thanks ! - What do you use for refresh session?
unicodes
4 2 months ago
As it is now I have the login session very long (1day ) , I want to implement the refresh token system for providing a continuity experience . I was thinking to add for each API a check if the error is 401 then refresh the token if isn 't expired and if the refresh is success then recall the API . This solution is very annoying because I have to implement this refresh token for every single API and in some cases is huge (considering components , context callings etc . ) . I was thinking to create a listener if something in network fails with 401 to refresh token . Another solution would be to refresh the token every X time or in case of 401 to redirect to login (I want to avoid because in some cases you work on something and on pressing "save " , you will be redirected to login and lose everything ) I 'm curious what do you use , have you found something very simple to implement ? - SSR ability for Web Components
Pascal
75 2 months ago
This is a crucial consideration for me If I had Web Components for every layout component (having them rich -content -dynamic ) like hero , feature section etc . This would be absolutely insane but do they allow reliable serverside rendering , or even component -internal api requests ? My guess is no , but I want to have this confirmed . . . This would be relevant especially for SEO , and performance reasons . - Disaster Recovery Plan
James
7 2 months ago
Hi guys , does Nordcraft have a public disaster recovery plan ? A client is looking for the info . Thanks ! - Performance issues, editor laggy
yoelfdz
13 2 months ago
It would be awesome if someone from NordCraft team could have a look at a project . The editor is very laggy , and I think it should not be due to a lack of use of components in this case . The only thing I can think of is having large JSON data as test values on the editor ? Can that affect performance drastically ? - "Add element - form" not working
davicampos
5 2 months ago
Trying to learn nordcraft , but finding cofusing when tutorial videos don 't match the UI . This is one of the problems I 'm currently facing . When adding a form , it shows me a dot . Is it right ? - shopping cart - ✨instant feedback✨
needtheanswers
18 2 months ago
Hi there , just wondering how do you guys handle the shopping cart functionality in your onlineshop . Normally when as user clicks on "add to cart " I would call my api (s ) and let the backend handle this (add item , delete item , update quantity , . . ) . For safety reasons I didn ´t want the frontend to handle all of that ( reducing the risk of manipulation ) . The problem is that it kinda disrupts the flow because it takes a second or two until I get the data with the updated cart . So my question now is how do you handle this ? Do you mantain a second cart in the local storage or what is your solution for that ? Thanks - Could not find formula in package
Sakamoto
5 2 months ago
I suddenly got this error from my package and my tracking stop working 3 hours ago . - Help
Bankydoo
5 2 months ago
Not sure whats going on but this has been my view for the past three days on my macbook . - Best practice for importing script for a package
QuietRocket
✅17 2 months ago
Hi ! I am making a community package for Convex by wrapping Convex 's plain JavaScript library (inspired by their Svelte package ) . The documentation for the library can be found here : https://docs.convex.dev/quickstart/script-tag According to the docs , they recommend adding a script tag to unpkg https://unpkg.com/convex@1.3.1/dist/browser.bundle.js as such : <!doctype html>
<script src="https://unpkg.com/convex@1.3.1/dist/browser.bundle.js"></script>
<script>
const CONVEX_URL = "CONVEX_URL_GOES_HERE";
const client = new convex.ConvexClient(CONVEX_URL);
client.onUpdate("tasks:get", {}, (tasks) =>
console.log(tasks.map((task) => task.text)),
);
</script>This works in Nord by modifying the page external resources , but the problem is as a package , I don 't think it 's very reasonable for the end user to have to add the script every page manually . I tried importing an ESM variant through JSDelivr via a Nord action , but the imported module seems to be empty : https://cdn.jsdelivr.net/npm/convex@1.23.0/+esm Honestly I would prefer going about an import() the ESM way , but what 's the right module to import ? The import I 'm interested in is convex/browser (which contains ConvexClient , for example ) . Thanks 🙂 - Having Trouble setting up an account as a new user
Tired Bean
3 2 months ago
Hello I am currently having issues with setting up an account as continues to redirect me onto toddel and state : This site can ’t provide a secure connection icszvgolrcrgzcssgoqt .supabase .co sent an invalid response . ERR _SSL _PROTOCOL _ERROR - Getting project off google search
Kova
6 2 months ago
Hi , newbie question here , I know that I can use " <meta name = "robots " content = "noindex , nofollow " > " I tried with custom robots txt but it did not work , for the life of me I can 't figure out how to do it . . . - passing array in url parameter does not work
fss21
10 2 months ago
Hi there ! I am having issue of array in url parameter . Basically I want to set array value in url parameter so creating this formula - Test query parameter value from a context variable?
Jehex
2 2 months ago
Hi there ! Is they 're a way to test the value from a context variable ( here the id from my context variable ) without all the time insert manually an ID from my database ( who will remove my formula from the query parameter ) Thanks ! - Web Component Error in Wenflow
Alex
1 2 months ago
Hey everyone , I 've created a web component to place on external customer websites . It appears to be working inside the editor but not on the embedded sites . . . any ideas ?