// ignore_for_file: use_build_context_synchronously import 'package:flutter/material.dart'; import 'package:flutter_i18n/flutter_i18n.dart'; import 'package:injectable/injectable.dart'; import 'package:revanced_manager/app/app.locator.dart'; import 'package:revanced_manager/app/app.router.dart'; import 'package:revanced_manager/models/patch.dart'; import 'package:revanced_manager/models/patched_application.dart'; import 'package:revanced_manager/services/manager_api.dart'; import 'package:revanced_manager/services/patcher_api.dart'; import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart'; import 'package:revanced_manager/utils/about_info.dart'; import 'package:stacked/stacked.dart'; import 'package:stacked_services/stacked_services.dart'; @lazySingleton class PatcherViewModel extends BaseViewModel { final NavigationService _navigationService = locator(); final ManagerAPI _managerAPI = locator(); final PatcherAPI _patcherAPI = locator(); PatchedApplication? selectedApp; List selectedPatches = []; void navigateToAppSelector() { _navigationService.navigateTo(Routes.appSelectorView); } void navigateToPatchesSelector() { _navigationService.navigateTo(Routes.patchesSelectorView); } void navigateToInstaller() { _navigationService.navigateTo(Routes.installerView); } bool showPatchButton() { return selectedPatches.isNotEmpty; } bool dimPatchesCard() { return selectedApp == null; } Future isValidPatchConfig() async { final bool needsResourcePatching = await _patcherAPI.needsResourcePatching( selectedPatches, ); if (needsResourcePatching && selectedApp != null) { final bool isSplit = await _managerAPI.isSplitApk(selectedApp!); return !isSplit; } return true; } Future showPatchConfirmationDialog(BuildContext context) async { final bool isValid = await isValidPatchConfig(); if (context.mounted) { if (isValid) { showArmv7WarningDialog(context); } else { return showDialog( context: context, builder: (context) => AlertDialog( title: I18nText('warning'), backgroundColor: Theme.of(context).colorScheme.secondaryContainer, content: I18nText('patcherView.armv7WarningDialogText'), actions: [ CustomMaterialButton( label: I18nText('noButton'), onPressed: () => Navigator.of(context).pop(), ), CustomMaterialButton( label: I18nText('yesButton'), isFilled: false, onPressed: () { Navigator.of(context).pop(); showArmv7WarningDialog(context); }, ) ], ), ); } } } Future showArmv7WarningDialog(BuildContext context) async { final bool armv7 = await AboutInfo.getInfo().then( (info) => info['arch'] != null && info['arch']!.contains('armeabi-v7a') && !info['arch']!.contains('arm64-v8a'), ); if (context.mounted && armv7) { return showDialog( context: context, builder: (context) => AlertDialog( title: I18nText('warning'), backgroundColor: Theme.of(context).colorScheme.secondaryContainer, content: I18nText('patcherView.armv7WarningDialogText'), actions: [ CustomMaterialButton( label: I18nText('noButton'), onPressed: () => Navigator.of(context).pop(), ), CustomMaterialButton( label: I18nText('yesButton'), isFilled: false, onPressed: () { Navigator.of(context).pop(); navigateToInstaller(); }, ) ], ), ); } else { // navigate To Installer navigateToInstaller(); } } String getAppSelectionString() { String text = '${selectedApp!.name} (${selectedApp!.packageName})'; if (text.length > 32) { text = '${text.substring(0, 32)}...)'; } return text; } String getRecommendedVersionString(BuildContext context) { String recommendedVersion = _patcherAPI.getRecommendedVersion(selectedApp!.packageName); if (recommendedVersion.isEmpty) { recommendedVersion = FlutterI18n.translate( context, 'appSelectorCard.anyVersion', ); } else { recommendedVersion = 'v$recommendedVersion'; } return '${FlutterI18n.translate( context, 'appSelectorCard.currentVersion', )}: v${selectedApp!.version}\n${FlutterI18n.translate( context, 'appSelectorCard.recommendedVersion', )}: $recommendedVersion'; } Future loadLastSelectedPatches() async { this.selectedPatches.clear(); final List selectedPatches = await _managerAPI.getSelectedPatches(selectedApp!.originalPackageName); final List patches = _patcherAPI.getFilteredPatches(selectedApp!.originalPackageName); this .selectedPatches .addAll(patches.where((patch) => selectedPatches.contains(patch.name))); notifyListeners(); } }