watch method

Stream<DtoUser?> watch(
  1. UserId id
)

Returns the Stream of real-time changes happening with the DtoUser identified by the provided id.

Implementation

Stream<DtoUser?> watch(UserId id) {
  return stream((db) {
    final stmt = db.select(db.users)..where((u) => u.id.equals(id.val));

    StreamController<DtoUser?>? controller = _controllers[id];
    if (controller == null) {
      controller = StreamController<DtoUser?>.broadcast(sync: true);
      _controllers[id] = controller;
    }

    return StreamGroup.merge([
      controller.stream,
      stmt.watch().map((e) => e.isEmpty ? null : UserDb.fromDb(e.first)),
    ]);
  });
}