mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 01:43:13 +00:00
29 lines
903 B
Dart
29 lines
903 B
Dart
|
import 'package:equatable/equatable.dart';
|
||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||
|
import 'package:selfprivacy/config/get_it_config.dart';
|
||
|
|
||
|
part 'connection_status_event.dart';
|
||
|
part 'connection_status_state.dart';
|
||
|
|
||
|
class ConnectionStatusBloc
|
||
|
extends Bloc<ConnectionStatusEvent, ConnectionStatusState> {
|
||
|
ConnectionStatusBloc()
|
||
|
: super(
|
||
|
const ConnectionStatusState(
|
||
|
connectionStatus: ConnectionStatus.nonexistent,
|
||
|
),
|
||
|
) {
|
||
|
final apiConnectionRepository = getIt<ApiConnectionRepository>();
|
||
|
apiConnectionRepository.connectionStatusStream.listen(
|
||
|
(final ConnectionStatus connectionStatus) {
|
||
|
add(
|
||
|
ConnectionStatusChanged(connectionStatus),
|
||
|
);
|
||
|
},
|
||
|
);
|
||
|
on<ConnectionStatusChanged>((final event, final emit) {
|
||
|
emit(ConnectionStatusState(connectionStatus: event.connectionStatus));
|
||
|
});
|
||
|
}
|
||
|
}
|