mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
53 lines
1.5 KiB
Dart
53 lines
1.5 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:selfprivacy/logic/api_maps/graphql_maps/server_api/server.dart';
|
|
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
|
|
import 'package:selfprivacy/logic/cubit/app_config_dependent/authentication_dependend_cubit.dart';
|
|
import 'package:selfprivacy/logic/models/service.dart';
|
|
|
|
part 'services_state.dart';
|
|
|
|
class ServicesCubit extends ServerInstallationDependendCubit<ServicesState> {
|
|
ServicesCubit(final ServerInstallationCubit serverInstallationCubit)
|
|
: super(serverInstallationCubit, const ServicesState.empty());
|
|
final ServerApi api = ServerApi();
|
|
Timer? timer;
|
|
@override
|
|
Future<void> load() async {
|
|
if (serverInstallationCubit.state is ServerInstallationFinished) {
|
|
final List<Service> services = await api.getAllServices();
|
|
emit(
|
|
ServicesState(
|
|
services: services,
|
|
),
|
|
);
|
|
timer = Timer(const Duration(seconds: 10), () => reload(useTimer: true));
|
|
}
|
|
}
|
|
|
|
Future<void> reload({final bool useTimer = false}) async {
|
|
final List<Service> services = await api.getAllServices();
|
|
emit(
|
|
ServicesState(
|
|
services: services,
|
|
),
|
|
);
|
|
if (useTimer) {
|
|
timer = Timer(const Duration(seconds: 60), () => reload(useTimer: true));
|
|
}
|
|
}
|
|
|
|
Future<void> restart(final String serviceId) async {
|
|
await api.restartService(serviceId);
|
|
}
|
|
|
|
@override
|
|
void clear() async {
|
|
emit(const ServicesState.empty());
|
|
if (timer != null && timer!.isActive) {
|
|
timer!.cancel();
|
|
timer = null;
|
|
}
|
|
}
|
|
}
|