0

I have a forward navigation function, which triggers an async API call on certain stages, where it is required that it does not proceed (move forward) until said API call is finished (it triggers a processor in the background required for the following stages).

My issue is that it continues to proceed, despite the call not yet being completed. I'm confused at to the best and most suggested way to implement this, and would be happy for any advice.

Code:

 async postData(url = "", data = {}) {
 const response = await fetch(url, {
 method: "POST",
 headers: {
 "Content-Type": "application/json",
 },
 body: JSON.stringify(data),
 });
},
forwardTicketId(ticketId) {
 const origin = new URL(window.location.href).origin;
 const addr = `${origin}/current_ticket_id`;
 this.postData(`${addr}`, {
 data: ticketId,
 });
},
goNext() {
 if (this.isRequiredStage) { # this needs to complete before anything else runs
 this.forwardTicketId(this.ticketId);
 }
 this.navGoNext();
},

How the goNext function is called:

 <div class="level-right">
 <TicketStepsNavButtons
 @goPrev="goPrev"
 @goNext="goNext"
 />
 </div>
asked Jun 30, 2022 at 8:08

1 Answer 1

1

Use await in the calls too.

 async postData(url = "", data = {}) {
 const response = await fetch(url, {
 method: "POST",
 headers: {
 "Content-Type": "application/json",
 },
 body: JSON.stringify(data),
 });
 // you can return the response if you need it
 return response;
},
forwardTicketId(ticketId) {
 const origin = new URL(window.location.href).origin;
 const addr = `${origin}/current_ticket_id`;
 // return to chain the next promises, you can async/await instead if you don't care about the result
 return this.postData(`${addr}`, { 
 data: ticketId,
 });
},
async goNext() {
 if (this.isRequiredStage) { // this needs to complete before anything else runs
 // await here
 await this.forwardTicketId(this.ticketId); 
 }
 this.navGoNext();
},
answered Jun 30, 2022 at 8:10
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.