frintjs/frint

Proposal: Check availability of multiple Apps

Open

#425 ouverte le 7 juil. 2018

Voir sur GitHub
 (1 commentaire) (1 réaction) (0 assignés)JavaScript (37 forks)batch import
help wantedproposal

Métriques du dépôt

Stars
 (746 stars)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

Currently

We can trigger something as soon as our desired App is available, via this API:

rootApp.getAppOnceAvailable$('SomeAppName')
  .subscribe(someApp => console.log(someApp));

Proposal

It would be handy if we can check the availability of multiple apps together:

rootApp.getAppOnceAvailable$(['SomeApp', 'AnotherApp'])
  .subscribe(function (someApp, anotherApp) {
    // fires once, when both `SomeApp` and `AnotherApp` are available
  });

Guide contributeur