rxdart_ext 0.2.3 copy "rxdart_ext: ^0.2.3" to clipboard
rxdart_ext: ^0.2.3 copied to clipboard

Some extension methods and classes built on top of RxDart - RxDart extension.

rxdart_ext #

Author: Petrus Nguyễn Thái Học #

codecov Dart CI Pub Version (including pre-releases) Hits GitHub Style

Some extension methods and classes built on top of RxDart - RxDart extension.

Buy me a coffee #

Liked some of my work? Buy me a coffee (or more likely a beer)

"Buy Me A Coffee"

RxDart compatibility #

rxdart rxdart_ext
0.26.0 below 0.0.1
from 0.27.0 to 0.27.1 from 0.1.0 to 0.1.1
0.27.2 0.1.2
0.27.3 from 0.1.3 to 0.2.0
from 0.27.4 to 0.27.5 from 0.2.1 to 0.2.3

API #

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)));
}

2. Operators for Stream #

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.

Example

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 ...;
  },
);

4. NotReplayValueStream #

A Stream that provides synchronous access to the last emitted item, but not replay the latest value.

5. Utils #

DisposableMixin

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'),
        );
  }
}

License #

MIT License

Copyright (c) 2020-2022 Petrus Nguyễn Thái Học

Tim Cook dancing to the sound of a permissive license.

10
likes
0
pub points
89%
popularity

Publisher

unverified uploader

Some extension methods and classes built on top of RxDart - RxDart extension.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, path, rxdart, stack_trace

More

Packages that depend on rxdart_ext