import 'dart:convert'; import 'dart:io'; import 'dart:typed_data'; import 'package:aves/app_flavor.dart'; import 'package:aves/flutter_version.dart'; import 'package:aves/model/settings/enums/enums.dart'; import 'package:aves/model/settings/settings.dart'; import 'package:aves/ref/mime_types.dart'; import 'package:aves/services/common/services.dart'; import 'package:aves/theme/colors.dart'; import 'package:aves/theme/durations.dart'; import 'package:aves/utils/constants.dart'; import 'package:aves/widgets/common/action_mixins/feedback.dart'; import 'package:aves/widgets/common/extensions/build_context.dart'; import 'package:aves/widgets/common/identity/aves_filter_chip.dart'; import 'package:aves/widgets/common/identity/buttons.dart'; import 'package:device_info_plus/device_info_plus.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:intl/intl.dart'; import 'package:package_info_plus/package_info_plus.dart'; import 'package:provider/provider.dart'; import 'package:url_launcher/url_launcher.dart'; class BugReport extends StatefulWidget { const BugReport({super.key}); @override State createState() => _BugReportState(); } class _BugReportState extends State with FeedbackMixin { late Future _infoLoader; bool _showInstructions = false; static final bugReportUri = Uri.parse('${Constants.avesGithub}/issues/new?labels=type%3Abug&template=bug_report.md'); @override void initState() { super.initState(); _infoLoader = _getInfo(context); } @override Widget build(BuildContext context) { final l10n = context.l10n; final animationDuration = context.select((v) => v.expansionTileAnimation); return ExpansionPanelList( expansionCallback: (index, isExpanded) { setState(() => _showInstructions = !isExpanded); }, animationDuration: animationDuration, expandedHeaderPadding: EdgeInsets.zero, elevation: 0, children: [ ExpansionPanel( headerBuilder: (context, isExpanded) => ConstrainedBox( constraints: const BoxConstraints(minHeight: 48), child: Container( padding: const EdgeInsets.symmetric(horizontal: 16), alignment: AlignmentDirectional.centerStart, child: Text(l10n.aboutBug, style: Constants.titleTextStyle), ), ), body: Padding( padding: const EdgeInsets.symmetric(horizontal: 16), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ _buildStep(1, l10n.aboutBugSaveLogInstruction, l10n.aboutBugSaveLogButton, _saveLogs), _buildStep(2, l10n.aboutBugCopyInfoInstruction, l10n.aboutBugCopyInfoButton, _copySystemInfo), FutureBuilder( future: _infoLoader, builder: (context, snapshot) { final info = snapshot.data; if (info == null) return const SizedBox(); final theme = Theme.of(context); return Container( decoration: BoxDecoration( color: theme.cardColor, border: Border.all( color: theme.colorScheme.onPrimary, ), borderRadius: const BorderRadius.all(Radius.circular(8)), ), constraints: const BoxConstraints(maxHeight: 100), margin: const EdgeInsets.symmetric(vertical: 8), clipBehavior: Clip.antiAlias, child: SingleChildScrollView( padding: const EdgeInsetsDirectional.only(start: 8, top: 4, end: 16, bottom: 4), // to show a scroll bar, we would need to provide a scroll controller // to both the `Scrollable` and the `Scrollbar`, but // as of Flutter v3.0.0, `SelectableText` does not allow passing the `scrollController` child: SelectableText(info), ), ); }, ), _buildStep(3, l10n.aboutBugReportInstruction, l10n.aboutBugReportButton, _goToGithub), const SizedBox(height: 16), ], ), ), isExpanded: _showInstructions, canTapOnHeader: true, backgroundColor: Colors.transparent, ), ], ); } Widget _buildStep(int step, String text, String buttonText, VoidCallback onPressed) { final isMonochrome = settings.themeColorMode == AvesThemeColorMode.monochrome; return Padding( padding: const EdgeInsets.symmetric(vertical: 4), child: Row( children: [ Container( padding: const EdgeInsets.all(12), decoration: BoxDecoration( border: Border.fromBorderSide(BorderSide( color: isMonochrome ? context.select((v) => v.neutral) : Theme.of(context).colorScheme.secondary, width: AvesFilterChip.outlineWidth, )), shape: BoxShape.circle, ), child: Text('$step'), ), const SizedBox(width: 8), Expanded(child: Text(text)), const SizedBox(width: 8), AvesOutlinedButton( label: buttonText, onPressed: onPressed, ), ], ), ); } Future _getInfo(BuildContext context) async { final packageInfo = await PackageInfo.fromPlatform(); final androidInfo = await DeviceInfoPlugin().androidInfo; final installer = await androidAppService.getAppInstaller(); final flavor = context.read().toString().split('.')[1]; return [ 'Aves version: ${packageInfo.version}-$flavor (Build ${packageInfo.buildNumber})', 'Flutter version: ${version['frameworkVersion']} (Channel ${version['channel']})', 'Android version: ${androidInfo.version.release} (SDK ${androidInfo.version.sdkInt})', 'Android build: ${androidInfo.display}', 'Device: ${androidInfo.manufacturer} ${androidInfo.model}', 'Mobile services: ${mobileServices.isServiceAvailable ? 'ready' : 'not available'}', 'System locales: ${WidgetsBinding.instance.window.locales.join(', ')}', 'Aves locale: ${settings.locale ?? 'system'} -> ${settings.appliedLocale}', 'Installer: $installer', ].join('\n'); } Future _saveLogs() async { final result = await Process.run('logcat', ['-d']); final logs = result.stdout; final success = await storageService.createFile( 'aves-logs-${DateFormat('yyyyMMdd_HHmmss').format(DateTime.now())}.txt', MimeTypes.plainText, Uint8List.fromList(utf8.encode(logs)), ); if (success != null) { if (success) { showFeedback(context, context.l10n.genericSuccessFeedback); } else { showFeedback(context, context.l10n.genericFailureFeedback); } } } Future _copySystemInfo() async { await Clipboard.setData(ClipboardData(text: await _infoLoader)); showFeedback(context, context.l10n.genericSuccessFeedback); } Future _goToGithub() async { if (await canLaunchUrl(bugReportUri)) { await launchUrl(bugReportUri, mode: LaunchMode.externalApplication); } } }