Author: Petrus Nguyễn Thái Học
Some extension methods and classes built on top of RxDart
- RxDart
extension.
Liked some of my work? Buy me a coffee (or more likely a beer)
rxdart_ext | rxdart | Dart SDK |
---|---|---|
0.1.2 |
^0.27.2 |
>=2.12.0 <4.0.0 |
0.1.3 → 0.2.0 |
^0.27.3 |
>=2.12.0 <4.0.0 |
0.2.1 → 0.2.2 |
^0.27.4 |
>=2.12.0 <4.0.0 |
0.2.3 → 0.2.9 |
^0.27.5 |
>=2.12.0 <4.0.0 |
^0.3.0 |
^0.28.0 |
>=2.12.0 <4.0.0 |
^0.4.0 |
^0.28.0 |
^3.0.0 |
The latest version of rxdart_ext
always works fine with the latest version of rxdart
.
API - Documentation
1. Single
A Stream which emits single event, either data or error, and then close with a done-event.
Success case: ------------(*)|------
data done
Failure case: ------------(x)|------
error done
NOTE: Single extends Stream, so all operators and transformers for Stream are available for Single as well.
Single
is suitable for one-shot operations (likes Future
but lazy - executes when listening), eg. making API request, reading local storage, ...
import 'package:http/http.dart' as http;
Single<User> fetchUser(String id) {
return Single.fromCallable(() => http.get(Uri.parse('$baseUrl/users/$id')))
.flatMapSingle((res) => res.statusCode == HttpStatus.ok
? Single.value(res.body)
: Single.error(Exception('Cannot fetch user with id=$id')))
.map((body) => User.fromJson(jsonEncode(body)));
}
-
Create Single
-
Factory constructors.
-
Static methods provided by RxSingles class
-
Convert others to Single via extensions.
-
-
Operators for Single (returns a Single instead of Stream)
- asNullable
- debug, collect
- distinctUniqueBy
- distinctBy
- doOn
- doneOnError
- flatMapBatches
- flatMapBatchesSingle
- ignoreErrors
mapNotNull
(moved torxdart 0.27.4
as standard operator: mapNotNull)- toSingleSubscription
- asVoid
whereNotNull
(moved torxdart 0.27.4
as standard operator: whereNotNull)
3. StateStream
A Stream that provides synchronous access to the last emitted item, and two consecutive values are not equal. The equality between previous data event and current data event is determined by StateStream.equals. This Stream always has no error.
- Broadcast
- Single-subscription
Useful for Flutter BLoC pattern
- StreamBuilder
, expose broadcast state stream to UI, can synchronous access to the last emitted item, and distinct until changed
-
Distinct
: distinct until changed. -
Value
: can synchronous access to the last emitted item. -
NotReplay
: not replay the latest value. -
Connectable
: broadcast stream - can be listened to multiple time.
Stream (dart:core)
^
|
|
|--------------------------------------------|
| |
| |
ValueStream (rxdart) |
^ |
| |
| |
NotReplayValueStream (rxdart_ext) |
^ ConnectableStream (rxdart)
| ^
| |
StateStream (rxdart_ext) |
^ |
| |
|------------ -----------|
| |
| |
StateConnectableStream (rxdart_ext)
class UiState { ... }
final Stream<UiState> state$ = ...;
final StateConnectableStream<UiState> state$ = state$.publishState(UiState.initial());
final connection = state$.connect();
StreamBuilder<UiState>(
initialData: state$.value,
stream: state$,
builder: (context, snapshot) {
final UiState state = snapshot.requireData;
return ...;
},
);
See also flutter_bloc_pattern/RxStreamBuilder,
it can be used with StateStream
perfectly and more easily (don't require initialData
and don't need to call snapshot.requireData
).
final StateStream<UiState> state$;
RxStreamBuilder<UiState>(
stream: state$,
builder: (context, UiState state) {
// use state directly
return ...;
}
);
A Stream that provides synchronous access to the last emitted item, but not replay the latest value.
- Broadcast
- Single-subscription
A mixin that makes it easy to dispose streams without having to store and close a StreamSubscription
variable.
Typical usage is as follows:
class DisposableExample with DisposableMixin {
DisposableExample({
required Stream<DateTime> dateTimeStream,
}) {
dateTimeStream.takeUntil(dispose$).listen(
(value) => print('Disposable example: $value'),
);
}
}
MIT License
Copyright (c) 2020-2022 Petrus Nguyễn Thái Học