Typescript returning boolean after promise resolved

57,749

Solution 1

You can return a Promise that resolves to a boolean like this:

get tokenValid(): Promise<boolean> {
  // |
  // |----- Note this additional return statement. 
  // v
  return this.storage.get('expires_at')
    .then((expiresAt) => {
      return Date.now() < expiresAt;
    })
    .catch((err) => {
      return false;
    });
}

The code in your question only has two return statements: one inside the Promise's then handler and one inside its catch handler. We added a third return statement inside the tokenValid() accessor, because the accessor needs to return something too.

Here is a working example in the TypeScript playground:

class StorageManager { 

  // stub out storage for the demo
  private storage = {
    get: (prop: string): Promise<any> => { 
      return Promise.resolve(Date.now() + 86400000);
    }
  };

  get tokenValid(): Promise<boolean> {
    return this.storage.get('expires_at')
      .then((expiresAt) => {
        return Date.now() < expiresAt;
      })
      .catch((err) => {
        return false;
      });
  }
}

const manager = new StorageManager();
manager.tokenValid.then((result) => { 
  window.alert(result); // true
});

Solution 2

Your function should be:

get tokenValid(): Promise<Boolean> {
    return new Promise((resolve, reject) => {
      this.storage.get('expires_at')
        .then((expiresAt) => {
          resolve(Date.now() < expiresAt);
        })
        .catch((err) => {
          reject(false);
      });
 });
}
Share:
57,749
user2473015
Author by

user2473015

Problem Solver User Experience Geek. JavaScript Lover. Unity 3D Developer #SOreadytohelp

Updated on July 09, 2022

Comments

  • user2473015
    user2473015 almost 2 years

    I'm trying to return a boolean after a promise resolves but typescript gives an error saying

    A 'get' accessor must return a value.

    my code looks like.

    get tokenValid(): boolean {
        // Check if current time is past access token's expiration
        this.storage.get('expires_at').then((expiresAt) => {
          return Date.now() < expiresAt;
        }).catch((err) => { return false });
    }
    

    This code is for Ionic 3 Application and the storage is Ionic Storage instance.