2022-08-18 16:33:33 +02:00
|
|
|
import 'package:injectable/injectable.dart';
|
2022-08-06 23:35:35 +02:00
|
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
|
|
|
import 'package:revanced_manager/app/app.router.dart';
|
2022-08-18 16:33:33 +02:00
|
|
|
import 'package:revanced_manager/models/patch.dart';
|
|
|
|
import 'package:revanced_manager/models/patched_application.dart';
|
2022-08-06 14:13:28 +02:00
|
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
import 'package:stacked_services/stacked_services.dart';
|
|
|
|
|
2022-08-18 16:33:33 +02:00
|
|
|
@lazySingleton
|
2022-08-06 14:13:28 +02:00
|
|
|
class PatcherViewModel extends BaseViewModel {
|
2022-08-18 16:33:33 +02:00
|
|
|
PatchedApplication? selectedApp;
|
|
|
|
List<Patch> selectedPatches = [];
|
|
|
|
|
|
|
|
final NavigationService _navigationService = locator<NavigationService>();
|
2022-08-06 14:13:28 +02:00
|
|
|
|
|
|
|
void navigateToAppSelector() {
|
2022-08-07 21:15:52 +02:00
|
|
|
_navigationService.navigateTo(Routes.appSelectorView);
|
|
|
|
}
|
|
|
|
|
|
|
|
void navigateToPatchesSelector() {
|
|
|
|
_navigationService.navigateTo(Routes.patchesSelectorView);
|
2022-08-06 14:13:28 +02:00
|
|
|
}
|
2022-08-13 11:56:30 +02:00
|
|
|
|
|
|
|
void navigateToInstaller() {
|
|
|
|
_navigationService.navigateTo(Routes.installerView);
|
|
|
|
}
|
2022-08-17 13:48:03 +02:00
|
|
|
|
|
|
|
bool showFabButton() {
|
2022-08-18 16:33:33 +02:00
|
|
|
return selectedPatches.isNotEmpty;
|
2022-08-17 13:48:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool dimPatchesCard() {
|
2022-08-18 16:33:33 +02:00
|
|
|
return selectedApp == null;
|
2022-08-17 13:48:03 +02:00
|
|
|
}
|
2022-08-06 14:13:28 +02:00
|
|
|
}
|