2022-11-12 21:25:33 +05:30
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
2023-04-18 11:38:10 +02:00
|
|
|
import 'package:revanced_manager/ui/views/settings/settingsFragment/settings_manage_keystore_password.dart';
|
2023-04-19 01:32:43 +05:30
|
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
2022-11-12 21:25:33 +05:30
|
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
|
|
|
|
|
|
|
final _settingsViewModel = SettingsViewModel();
|
|
|
|
|
|
|
|
class SExportSection extends StatelessWidget {
|
|
|
|
const SExportSection({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return SettingsSection(
|
|
|
|
title: 'settingsView.exportSectionTitle',
|
|
|
|
children: <Widget>[
|
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
|
|
|
'settingsView.exportPatchesLabel',
|
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
subtitle: I18nText('settingsView.exportPatchesHint'),
|
|
|
|
onTap: () => _settingsViewModel.exportPatches(),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
|
|
|
'settingsView.importPatchesLabel',
|
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
subtitle: I18nText('settingsView.importPatchesHint'),
|
2023-08-15 14:50:27 +05:45
|
|
|
onTap: () => _settingsViewModel.importPatches(context),
|
2022-11-12 21:25:33 +05:30
|
|
|
),
|
2023-04-18 11:38:10 +02:00
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
2023-10-15 05:56:02 -04:00
|
|
|
'settingsView.resetStoredPatchesLabel',
|
2023-04-18 11:38:10 +02:00
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-10-15 05:56:02 -04:00
|
|
|
subtitle: I18nText('settingsView.resetStoredPatchesHint'),
|
|
|
|
onTap: () => _showResetDialog(
|
|
|
|
context,
|
|
|
|
'settingsView.resetStoredPatchesDialogTitle',
|
|
|
|
'settingsView.resetStoredPatchesDialogText',
|
|
|
|
_settingsViewModel.resetSelectedPatches,
|
|
|
|
),
|
2023-04-18 11:38:10 +02:00
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
2023-10-15 05:56:02 -04:00
|
|
|
'settingsView.resetStoredOptionsLabel',
|
2023-04-18 11:38:10 +02:00
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-10-15 05:56:02 -04:00
|
|
|
subtitle: I18nText('settingsView.resetStoredOptionsHint'),
|
|
|
|
onTap: () => _showResetDialog(
|
|
|
|
context,
|
|
|
|
'settingsView.resetStoredOptionsDialogTitle',
|
|
|
|
'settingsView.resetStoredOptionsDialogText',
|
|
|
|
_settingsViewModel.resetAllOptions,
|
|
|
|
),
|
2023-04-18 11:38:10 +02:00
|
|
|
),
|
2022-11-12 21:25:33 +05:30
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
2023-10-15 05:56:02 -04:00
|
|
|
'settingsView.exportKeystoreLabel',
|
2022-11-12 21:25:33 +05:30
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-10-15 05:56:02 -04:00
|
|
|
subtitle: I18nText('settingsView.exportKeystoreHint'),
|
|
|
|
onTap: () => _settingsViewModel.exportKeystore(),
|
2023-10-12 00:00:39 +00:00
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
2023-10-15 05:56:02 -04:00
|
|
|
'settingsView.importKeystoreLabel',
|
2023-10-12 00:00:39 +00:00
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-10-15 05:56:02 -04:00
|
|
|
subtitle: I18nText('settingsView.importKeystoreHint'),
|
|
|
|
onTap: () async {
|
|
|
|
await _settingsViewModel.importKeystore();
|
|
|
|
final sManageKeystorePassword = SManageKeystorePassword();
|
|
|
|
if (context.mounted) {
|
|
|
|
sManageKeystorePassword.showKeystoreDialog(context);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
|
|
title: I18nText(
|
|
|
|
'settingsView.regenerateKeystoreLabel',
|
|
|
|
child: const Text(
|
|
|
|
'',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
),
|
|
|
|
),
|
2023-10-12 00:00:39 +00:00
|
|
|
),
|
2023-10-15 05:56:02 -04:00
|
|
|
subtitle: I18nText('settingsView.regenerateKeystoreHint'),
|
|
|
|
onTap: () => _showDeleteKeystoreDialog(context),
|
2022-11-12 21:25:33 +05:30
|
|
|
),
|
2023-10-15 05:56:02 -04:00
|
|
|
// SManageKeystorePasswordUI(),
|
2022-11-12 21:25:33 +05:30
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
2023-07-08 11:01:10 +07:00
|
|
|
|
2023-10-12 00:00:39 +00:00
|
|
|
Future<void> _showResetDialog(
|
|
|
|
context,
|
|
|
|
dialogTitle,
|
|
|
|
dialogText,
|
|
|
|
dialogAction,
|
|
|
|
) {
|
2023-07-08 11:01:10 +07:00
|
|
|
return showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => AlertDialog(
|
2023-10-12 00:00:39 +00:00
|
|
|
title: I18nText(dialogTitle),
|
|
|
|
content: I18nText(dialogText),
|
2023-07-08 11:01:10 +07:00
|
|
|
actions: <Widget>[
|
2023-12-22 20:34:03 +07:00
|
|
|
TextButton(
|
2023-07-08 11:01:10 +07:00
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
2023-12-22 20:34:03 +07:00
|
|
|
child: I18nText('noButton'),
|
2023-07-08 11:01:10 +07:00
|
|
|
),
|
2023-12-22 20:34:03 +07:00
|
|
|
FilledButton(
|
2023-07-08 11:01:10 +07:00
|
|
|
onPressed: () => {
|
|
|
|
Navigator.of(context).pop(),
|
2023-10-12 00:00:39 +00:00
|
|
|
dialogAction(),
|
2023-07-08 11:01:10 +07:00
|
|
|
},
|
2023-12-22 20:34:03 +07:00
|
|
|
child: I18nText('yesButton'),
|
2023-08-06 14:39:46 +07:00
|
|
|
),
|
2023-07-08 11:01:10 +07:00
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2023-10-15 05:56:02 -04:00
|
|
|
|
|
|
|
Future<void> _showDeleteKeystoreDialog(context) {
|
|
|
|
return showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => AlertDialog(
|
|
|
|
title: I18nText('settingsView.regenerateKeystoreDialogTitle'),
|
|
|
|
content: I18nText('settingsView.regenerateKeystoreDialogText'),
|
|
|
|
actions: <Widget>[
|
2023-12-22 20:34:03 +07:00
|
|
|
TextButton(
|
2023-10-15 05:56:02 -04:00
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
2023-12-22 20:34:03 +07:00
|
|
|
child: I18nText('noButton'),
|
2023-10-15 05:56:02 -04:00
|
|
|
),
|
2023-12-22 20:34:03 +07:00
|
|
|
FilledButton(
|
2023-10-15 05:56:02 -04:00
|
|
|
onPressed: () => {
|
|
|
|
Navigator.of(context).pop(),
|
|
|
|
_settingsViewModel.deleteKeystore(),
|
|
|
|
},
|
2023-12-22 20:34:03 +07:00
|
|
|
child: I18nText('yesButton'),
|
2023-10-15 05:56:02 -04:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2022-11-12 21:25:33 +05:30
|
|
|
}
|