1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/widgets/safe_state.dart

46 lines
989 B
Dart
Raw Normal View History

2020-04-18 11:48:21 +00:00
import 'dart:async';
import 'package:comunic/helpers/events_helper.dart';
import 'package:flutter/material.dart';
/// Little State hack to avoid issues
///
/// @author Pierre HUBERT
abstract class SafeState<T extends StatefulWidget> extends State<T> {
2020-04-18 11:48:21 +00:00
final _subscriptions = List<StreamSubscription>();
2020-04-20 15:47:51 +00:00
bool _unmounted = false;
2020-04-18 11:48:21 +00:00
@override
void dispose() {
2020-04-20 15:47:51 +00:00
_unmounted = true;
2020-04-18 11:48:21 +00:00
// Close subscriptions
_subscriptions.forEach((f) => f.cancel());
super.dispose();
}
@override
void setState(fn) {
2020-04-20 15:47:51 +00:00
if (mounted && !_unmounted) super.setState(fn);
}
2020-04-18 11:48:21 +00:00
/// Register to a new subscription
@protected
void listen<T>(void onEvent(T event)) {
_subscriptions.add(EventsHelper.on<T>(onEvent));
}
/// Register to a new subscription
///
/// Callback will we called inside of setState
@protected
void listenChangeState<T>(void onEvent(T event)) {
_subscriptions.add(EventsHelper.on<T>((d) {
setState(() => onEvent(d));
}));
}
}