2
function sendMessage(){

        ...

        if(file){
            sendingMessage = true;
            setTimeout(() => {              
                sendingMessage = false;
                messages = [...messages, chatmessage];
            }, 3800)            
        }
        chatmessage = '';
        inputRef.focus()
        updateScroll();
    }

Right now when this function is called, chatmessage is first set to an empty string, etc. then the code in the timeout function is executed which is the corect behaviour. However, is there a way make setTimeout synchronous?

This is the behaviour I want:

  1. If if(file) is true, set sendingMessage = true (sendingMessage triggers a spinning wheel animation)
  2. Wait for 3.8 seconds and execute the content in the timeout function.
  3. Only then, set chatmessage to empty string, etc (rest of the code)

Edit 1: I can just move the code inside the timeout function but the issue is in my case, if file is not present, it should just skip the timeout function alltogether. Then I would have to write another if block to check if the file is not present to execute the same commands (duplicate code). Another way to solve this would be to put the same code in a function and call it both places but feel like its not the ideal way to go and creating a function to change the value of three variables seems like overkill.

rohanharikr
  • 374
  • 3
  • 11
  • 2
    Uhm, just move the commands inside the setTimeOut's callback function? – obscure Oct 16 '20 at 10:40
  • Does this answer your question? [What is the JavaScript version of sleep()?](https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep) – Emiel Zuurbier Oct 16 '20 at 10:41
  • const promise1 = new Promise((resolve, reject) => { setTimeout(() => { resolve('foo'); }, 300); }); promise1.then((value) => { console.log(value); // expected output: "foo" }); – 3squad Oct 16 '20 at 10:44
  • 1
    @obscure yup this works, but the issue if file is not present it should skip the timeout function and proceed to execute the rest. If am moving the commands inside the timeout function then I would have to write the same commands again in another if block (if !file) but I am just trying to avoid writing duplicate code. But feel like I can make this a function and call it both the places? What do you think? – rohanharikr Oct 16 '20 at 10:46

3 Answers3

3

You could make use of a Promise to wait for 3 seconds before executing the code.

For this to work, create a function that returns a promise which resolves after 3 seconds.

function wait(seconds) {
   return new Promise(resolve => {
      setTimeout(resolve, seconds * 1000);
   });
} 

Then inside the sendMessage function, call this function, passing in the number of seconds you want to wait. When the promise returned by this wait function resolves, execute the code that you want to execute after wait time is over.

Following code shows an example of how you coulc call wait function inside sendMessage function.

async function sendMessage() {

    ...

    if(file){
        sendingMessage = true;
   
        await wait(3);          // wait for 3 seconds

        sendingMessage = false;
        messages = [...messages, chatmessage];      
    }

    chatmessage = '';
    inputRef.focus()
    updateScroll();
}
Yousaf
  • 20,803
  • 4
  • 23
  • 45
1

You can use promise here, your example is to complex, so I will show smaller

function sleep(time) {
  return new Promise(resolve=>setTimeout(resolve, time));
}

async function run() {
  console.log(1);
  await sleep(1000);
  console.log(2);
}

run();
zb'
  • 7,714
  • 4
  • 32
  • 64
1

You can't achieve this directly. You have to wrap your timeout function into a promise and await for the result inside an async function.

let file = true

function asyncTimeout(resolver){
    return new Promise(resolver) 
}

async function sendMessage(){

        console.log("Before setTimeout")

    if(file){
    
      await asyncTimeout((resolve, reject) => {
        setTimeout( function() {
          console.log("Timeout finished!")
          resolve()
        }, 3800) 
      })
         
    }
    
    console.log("After setTimeout")
}


sendMessage()

Here is a fiddle: https://jsfiddle.net/38rwznm6/

twboc
  • 885
  • 8
  • 10