import 'dart:async'; import 'package:easy_localization/easy_localization.dart'; import 'package:selfprivacy/config/get_it_config.dart'; import 'package:selfprivacy/logic/api_maps/graphql_maps/server_api/server.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 { ServicesCubit(final ServerInstallationCubit serverInstallationCubit) : super(serverInstallationCubit, const ServicesState.empty()); final ServerApi api = ServerApi(); Timer? timer; @override Future load() async { if (serverInstallationCubit.state is ServerInstallationFinished) { final List services = await api.getAllServices(); emit( ServicesState( services: services, lockedServices: const [], ), ); timer = Timer(const Duration(seconds: 10), () => reload(useTimer: true)); } } Future reload({final bool useTimer = false}) async { final List services = await api.getAllServices(); emit( state.copyWith( services: services, ), ); if (useTimer) { timer = Timer(const Duration(seconds: 60), () => reload(useTimer: true)); } } Future restart(final String serviceId) async { emit(state.copyWith(lockedServices: [...state.lockedServices, serviceId])); final result = await api.restartService(serviceId); if (!result.success) { getIt().showSnackBar('jobs.generic_error'.tr()); return; } if (!result.data) { getIt() .showSnackBar(result.message ?? 'jobs.generic_error'.tr()); return; } await Future.delayed(const Duration(seconds: 2)); reload(); await Future.delayed(const Duration(seconds: 10)); emit( state.copyWith( lockedServices: state.lockedServices .where((final element) => element != serviceId) .toList(), ), ); reload(); } Future moveService( final String serviceId, final String destination, ) async { await api.moveService(serviceId, destination); } @override void clear() async { emit(const ServicesState.empty()); if (timer != null && timer!.isActive) { timer!.cancel(); timer = null; } } }