gpt4 book ai didi

flutter - 您如何组合 2 Riverpod StreamProvider,其中 1 个流取决于来自另一个流的数据?

转载 作者:行者123 更新时间:2023-12-04 12:33:51 28 4
gpt4 key购买 nike

有时我想我得到了提供者的逻辑,然后我被难住了几个小时试图做下面的事情。
我需要从 Firestore 集合流中获取连接 ID 列表。简单。
但是,我需要将此连接 ID 的流列表提供给另一个 firestore 集合流。下面,您可以看到我即将推出的EventsStreamProvider 是 ref.watch 数据库和connectionsStream。 Riverpod 或 firestore 不会抛出任何错误。但是,在日志中,我按以下顺序看到了我的打印语句:

returned data
returned null stream value
我如何滥用 Riverpod 提供商的权力?哈哈。
final connectionsStreamProvider = StreamProvider<List<UidConnections>>((ref) {
final database = ref.watch(databaseProvider);
return database != null ? database.connectionsStream() : Stream.value(null);
});

final connectionsListStateProvider = StateProvider<List>((ref) => []);

final upcomingEventsStreamProvider = StreamProvider<List<SpecialEvents>>((ref) {
final database = ref.watch(databaseProvider);
final connectionsStream = ref.watch(connectionsStreamProvider);
if (database != null && connectionsStream != null) {
connectionsStream.whenData((data) {
if (data != null) {
data.forEach((event) {
if (event?.active == true && event?.connectedUid != null) {
ref
.read(connectionsListStateProvider)
.state
.add(event.connectedUid);
}
});
print('returned data');
return database.upcomingSpecialEventsStream(
ref.read(connectionsListStateProvider).state);
}
});
}

print('returned null stream value');
return Stream.value(null);
});
或者,我是否只需要重构我的 Firebase Cloud Firestore 查询来首先获取连接 ID 流?我宁愿使用 Riverpod,因为我仍然需要单独的连接 ID 流。

最佳答案

仍然难倒如何完成将 2 个流与 Riverpod 单独结合。但是,我确实设法解决了我的问题,这里是其他任何遇到此用例的人的信息,其中一个流依赖于另一个流中的数据。
行之有效的解决方案是使用 rxdart Rx.combineLatest2 .见下文。现在 Riverpod 很高兴,并为我的合并流提供状态。由于 rxdart,我需要的连接 ID 现在是我帐户模型的一部分。希望这对那里的人有帮助。

final accountInfoStreamProvider = StreamProvider<Account>((ref) {
final database = ref.watch(databaseProvider);
return database != null
? AccountInfoModel(database: database).accountInfoStream()
: Stream.value(null);
});

class AccountInfoModel {
AccountInfoModel({@required this.database});
final FirestoreDatabase database;

Stream<Account> accountInfoStream() {
return Rx.combineLatest2(
database.accountStream(),
database.connectionsStream(),
(Account account, List<Connections> connections) {
connections.forEach((connection) {
account.connections.add(connection.documentId);
});
return account;
},
);
}
}

关于flutter - 您如何组合 2 Riverpod StreamProvider,其中 1 个流取决于来自另一个流的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66678150/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com