I’ve seen similar questions posed on here, but I’m not sure what the current state is for the exact problem I’m facing.
We have typeform integrated with our React app, using the `@typeform/embed-react` library. Our app has login capabilities, so we have a unique id for a given user.
What I’d like to do is to allow a user to save progress as they go through a form. In the onStarted hook, you get access to the responseId. Ideally, we would save the responseId for a given user when they start the form. If they then close the page, and were to login on a different PC, we could restart the form from where they left off using this responseId. For example, Widget would take an optional responseId prop to facilitate this.
From what I can see, partial forms are only saved in terms of using the same browser. Is there any functionality/hack I can use to continue progress based on responseId?
This would also be useful for a user coming back to the form (e.g.) weeks later, and updating their answers.