使用promises观察光标并停止光标

时间:2015-10-19 14:42:11

标签: javascript meteor promise ecmascript-2016

我找不到一个很好的方法来做到这一点,但这是我的基本方法。它的目标是观察对象的状态,直到找到与正则表达式匹配的消息。

Cylon.waitForMessage(regex) {
  check(regex, RegExp);

  const observer = this.connections.find({
    name: 'messages'
  }).observe({
    changed: function (doc) {
      console.log(doc.lastMessage) // this is the last message to scan.
    }
  });
  let promise = new Promise((resolve, reject) => {
    // need to find the last message here and check if it matches regex
  }).then(() => observer.stop());

  return Promise.await(promise);
}

这样做的适当方法是什么?承诺完成后如何阻止听众或观察者?

1 个答案:

答案 0 :(得分:0)

只需移动promise函数中的逻辑:

const observer = this.connections.find({
    name: 'messages'
});

let promise = new Promise((resolve, reject) => {
    observer.observe({
        changed: function(doc){
            if(regex.test(doc.lastMessage)){
               resolve(doc.lastMessage);
               observer.stop();
            }
        });
    });
  }).then((message) => doSomethingWithResolvedMessage());