如何在抖动时返回流中的对象列表

时间:2018-12-25 19:25:48

标签: dart flutter google-cloud-firestore rxdart

我具有以下firestore结构和一种从DB获取用户供稿的方法。

我需要像

那样串流
  1. 首先来自User / FeedIDs集合的所有feed ID

  2. 然后针对每个feedID,获取有关feed详细信息的文档,并返回到它们的列表。

我可以找到一种解决方法,因为toList()不起作用或者我做错了事。

// User Collection
- User
   - RandomDocumentID
      - Feed
         - FeedIDasDocumentID
           - field1
           - field2
             .
             .

// Feed Collection
- Feed
   - RandomDocumentID
      - field1
      - field2
        .
        .

// Method in my repository to get feed for User
Observable<Feed> getCurrentUserFeed(String uid) {
    return Observable(Firestore.instance
          .collection('User')
          .document(uid)
          .collection("FeedIDs")
          .snapshots()
          .expand((snapshots) => snapshots.documents)
          .map((document) => UserFeed.fromMap(document.data))
        )
        .flatMap((userFeed) => Firestore.instance
                               .collection("Feed")
                               .document(userFeed.id)
                               .snapshots()
        )
        .map((document) => Feed.fromMap(document.data));
        // ????
        // I tried to put .toList() and of the stream but it is not working, 
       // i wanna return List<Feed> instead of every single feed object
  }


// in my BLoC
// I had to do that because I could acquire to get streams elements as a list
// 
List<Feed> feedList = List();
FirebaseUser user = await _feedRepository.getFirebaseUser();
_feedRepository.getCurrentUserFeed(user.uid).listen((feed) {
    feedList.add(feed);
    dispatch(UserFeedResultEvent(feedList));
 };

如果还有其他链接方法,可以分享。谢谢

1 个答案:

答案 0 :(得分:2)

我认为这里的问题是,Firestore被设置为在记录更改时发送更新。当您查询snapshots时,这是一个Stream,它将永远不会发送完成事件,因为总是有新的更新出现。

如果流不发送完成事件,则返回Future的Stream上的某些方法将永远不会完成。其中包括.single.toList()。您可能正在寻找.first,它将在第一个事件通过流发送(数据库中记录的当前状态)并停止侦听更改之后完成。