-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
-
I have a product that integrates GrapesJS and ChatGPT. I use GPT to generate projectData (JSON). Users can iterate through continuous conversations, with GPT updating the projectData. My client is responsible for calling loadProjectData to update the page.
As the pages become more numerous and complex, each loadProjectData call causes the browser to become unresponsive for around 10 seconds. This is unbearable.
Is there any way to update only a portion of a page?
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
Interesting use case :)
Is your project open source ?
This is how I avoided unresponsive browser in Silex when loading very big sites, by splitting per page
https://github.com/silexlabs/silex-lib/blob/main/src/ts/client/grapesjs/storage.ts
Beta Was this translation helpful? Give feedback.