| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- import 'dart:io';
- import 'package:flutter/material.dart';
- import '../services/database_helper.dart';
- import '../models/palm_record.dart';
- import '../models/palm_correction.dart';
- import '../constants/mpob_colors.dart';
- import '../theme/app_theme.dart';
- import '../services/app_strings.dart';
- import '../theme/locale_controller.dart';
- import 'record_detail_screen.dart';
- class BatchReportScreen extends StatefulWidget {
- final String batchId;
- const BatchReportScreen({super.key, required this.batchId});
- @override
- State<BatchReportScreen> createState() => _BatchReportScreenState();
- }
- class _BatchReportScreenState extends State<BatchReportScreen> {
- final DatabaseHelper _dbHelper = DatabaseHelper();
- List<PalmRecord> _records = [];
- Map<int, PalmCorrection> _latestCorrections = {};
- bool _isLoading = true;
- @override
- void initState() {
- super.initState();
- _load();
- }
- Future<void> _load() async {
- final records = await _dbHelper.getRecordsByBatch(widget.batchId);
- final corrections = <int, PalmCorrection>{};
- for (final record in records) {
- if (record.id == null) continue;
- final correction = await _dbHelper.getLatestCorrection(record.id!);
- if (correction != null) corrections[record.id!] = correction;
- }
- setState(() {
- _records = records;
- _latestCorrections = corrections;
- _isLoading = false;
- });
- }
- /// Per photo: use the harvester's correction if one exists, else fall
- /// back to the AI's own detections. Never mutates either source list.
- List<Map<String, dynamic>> _detectionsFor(PalmRecord record) {
- final correction = record.id == null ? null : _latestCorrections[record.id];
- return correction?.correctedDetections ?? record.detections;
- }
- int get _correctedFrameCount => _records.where((r) => r.id != null && _latestCorrections.containsKey(r.id)).length;
- Map<String, int> get _correctedClassTally {
- final tally = <String, int>{};
- for (final record in _records) {
- for (final d in _detectionsFor(record)) {
- final className = (d['className'] ?? d['class'] ?? 'Unknown').toString();
- tally[className] = (tally[className] ?? 0) + 1;
- }
- }
- return tally;
- }
- int get _totalDetections => _records.fold(0, (sum, r) => sum + r.detections.length);
- double get _avgConfidence =>
- _records.isEmpty ? 0 : _records.map((r) => r.confidence).reduce((a, b) => a + b) / _records.length;
- double? get _avgInferenceMs {
- final withTiming = _records.where((r) => r.inferenceMs != null).toList();
- if (withTiming.isEmpty) return null;
- return withTiming.map((r) => r.inferenceMs!).reduce((a, b) => a + b) / withTiming.length;
- }
- Map<String, int> get _classTally {
- final tally = <String, int>{};
- for (final record in _records) {
- for (final d in record.detections) {
- final className = (d['className'] ?? d['class'] ?? 'Unknown').toString();
- tally[className] = (tally[className] ?? 0) + 1;
- }
- }
- return tally;
- }
- @override
- Widget build(BuildContext context) {
- return ValueListenableBuilder<String>(
- valueListenable: LocaleController.localeCode,
- builder: (context, _, _) => _buildScaffold(context),
- );
- }
- Widget _buildScaffold(BuildContext context) {
- final colorScheme = Theme.of(context).colorScheme;
- if (_isLoading) {
- return const Scaffold(body: Center(child: CircularProgressIndicator()));
- }
- if (_records.isEmpty) {
- return Scaffold(
- appBar: AppBar(title: Text(AppStrings.t('batch_report_title'))),
- body: Center(child: Text(AppStrings.t('batch_no_records'))),
- );
- }
- final start = _records.first.timestamp;
- final end = _records.last.timestamp;
- final tally = _classTally;
- final totalTally = tally.values.fold(0, (a, b) => a + b);
- return Scaffold(
- appBar: AppBar(title: Text(AppStrings.t('batch_report_title'))),
- body: ListView(
- padding: const EdgeInsets.all(16),
- children: [
- _buildKpiGrid(start, end, colorScheme),
- const SizedBox(height: 24),
- Text(AppStrings.t('mpob_class_distribution_title'), style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold, color: colorScheme.onSurface)),
- const SizedBox(height: 4),
- Text(AppStrings.t('ai_result_label'), style: TextStyle(fontSize: 12, fontWeight: FontWeight.w600, color: colorScheme.onSurface.withValues(alpha: 0.6))),
- const SizedBox(height: 8),
- if (totalTally == 0)
- Text(AppStrings.t('no_detections_in_batch'), style: TextStyle(color: colorScheme.onSurface.withValues(alpha: 0.6)))
- else ...[
- _buildTallyBar(tally, totalTally),
- const SizedBox(height: 12),
- _buildTallyLegend(tally, totalTally),
- ],
- if (_correctedFrameCount > 0) ...[
- const SizedBox(height: 24),
- Row(
- children: [
- Text(AppStrings.t('batch_corrected_label'), style: TextStyle(fontSize: 12, fontWeight: FontWeight.w600, color: colorScheme.onSurface.withValues(alpha: 0.6))),
- const SizedBox(width: 8),
- Container(
- padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 2),
- decoration: BoxDecoration(
- color: colorScheme.primary.withValues(alpha: 0.12),
- borderRadius: BorderRadius.circular(20),
- ),
- child: Text(
- AppStrings.tp('frames_corrected_pill', {'count': '$_correctedFrameCount', 'total': '${_records.length}'}),
- style: TextStyle(fontSize: 11, fontWeight: FontWeight.w600, color: colorScheme.primary),
- ),
- ),
- ],
- ),
- const SizedBox(height: 8),
- Builder(builder: (context) {
- final correctedTally = _correctedClassTally;
- final correctedTotal = correctedTally.values.fold(0, (a, b) => a + b);
- if (correctedTotal == 0) {
- return Text(AppStrings.t('no_detections_in_batch'), style: TextStyle(color: colorScheme.onSurface.withValues(alpha: 0.6)));
- }
- return Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- _buildTallyBar(correctedTally, correctedTotal),
- const SizedBox(height: 12),
- _buildTallyLegend(correctedTally, correctedTotal),
- ],
- );
- }),
- ],
- const SizedBox(height: 24),
- Text(AppStrings.tp('frames_section_title', {'count': '${_records.length}'}), style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold, color: colorScheme.onSurface)),
- const SizedBox(height: 12),
- _buildFrameGrid(),
- ],
- ),
- );
- }
- Widget _buildKpiGrid(DateTime start, DateTime end, ColorScheme colorScheme) {
- final avgInference = _avgInferenceMs;
- final accents = AppTheme.chartAccents;
- return GridView.count(
- crossAxisCount: 2,
- shrinkWrap: true,
- physics: const NeverScrollableScrollPhysics(),
- mainAxisSpacing: 12,
- crossAxisSpacing: 12,
- childAspectRatio: 2.2,
- children: [
- _kpiCard(AppStrings.t('kpi_frames'), "${_records.length}", Icons.photo_library, accents[0], colorScheme),
- _kpiCard(AppStrings.t('kpi_total_detections'), "$_totalDetections", Icons.center_focus_strong, accents[1], colorScheme),
- _kpiCard(AppStrings.t('kpi_avg_confidence'), "${(_avgConfidence * 100).toStringAsFixed(1)}%", Icons.verified, accents[2], colorScheme),
- _kpiCard(
- AppStrings.t('kpi_avg_inference'),
- avgInference == null ? AppStrings.t('na_label') : "${avgInference.toStringAsFixed(0)} ms",
- Icons.speed,
- accents[3],
- colorScheme,
- ),
- _kpiCard(AppStrings.t('kpi_start'), _formatTime(start), Icons.play_circle_outline, accents[4], colorScheme),
- _kpiCard(AppStrings.t('kpi_end'), _formatTime(end), Icons.stop_circle_outlined, accents[4], colorScheme),
- ],
- );
- }
- Widget _kpiCard(String label, String value, IconData icon, Color color, ColorScheme colorScheme) {
- return Container(
- padding: const EdgeInsets.all(12),
- decoration: BoxDecoration(
- color: colorScheme.surfaceContainerHighest,
- borderRadius: BorderRadius.circular(12),
- border: Border.all(color: color.withValues(alpha: 0.2)),
- boxShadow: [BoxShadow(color: color.withValues(alpha: 0.08), blurRadius: 8, offset: const Offset(0, 4))],
- ),
- child: Row(
- children: [
- Icon(icon, color: color, size: 28),
- const SizedBox(width: 10),
- Expanded(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- mainAxisSize: MainAxisSize.min,
- children: [
- Text(value, style: TextStyle(fontWeight: FontWeight.bold, fontSize: 16, color: colorScheme.onSurface), overflow: TextOverflow.ellipsis),
- Text(label, style: TextStyle(fontSize: 11, color: colorScheme.onSurface.withValues(alpha: 0.6))),
- ],
- ),
- ),
- ],
- ),
- );
- }
- Widget _buildTallyBar(Map<String, int> tally, int total) {
- return ClipRRect(
- borderRadius: BorderRadius.circular(8),
- child: SizedBox(
- height: 24,
- child: Row(
- children: mpobClasses.where((c) => (tally[c] ?? 0) > 0).map((className) {
- final count = tally[className]!;
- return Expanded(
- flex: count,
- child: Container(color: getMPOBColor(className)),
- );
- }).toList(),
- ),
- ),
- );
- }
- Widget _buildTallyLegend(Map<String, int> tally, int total) {
- final colorScheme = Theme.of(context).colorScheme;
- return Wrap(
- spacing: 16,
- runSpacing: 8,
- children: mpobClasses.where((c) => (tally[c] ?? 0) > 0).map((className) {
- final count = tally[className]!;
- final pct = (count / total * 100).toStringAsFixed(1);
- return Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- Container(width: 12, height: 12, decoration: BoxDecoration(color: getMPOBColor(className), shape: BoxShape.circle)),
- const SizedBox(width: 6),
- Text("${AppStrings.className(className)}: $count ($pct%)", style: TextStyle(fontSize: 13, color: colorScheme.onSurface)),
- ],
- );
- }).toList(),
- );
- }
- Widget _buildFrameGrid() {
- return GridView.builder(
- shrinkWrap: true,
- physics: const NeverScrollableScrollPhysics(),
- gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
- crossAxisCount: 3,
- mainAxisSpacing: 8,
- crossAxisSpacing: 8,
- ),
- itemCount: _records.length,
- itemBuilder: (context, index) {
- final record = _records[index];
- final color = getStatusColor(record.ripenessClass);
- final hasImage = record.imagePath.isNotEmpty && File(record.imagePath).existsSync();
- return GestureDetector(
- onTap: () => Navigator.push(
- context,
- MaterialPageRoute(builder: (context) => RecordDetailScreen(frames: _records, initialIndex: index)),
- ),
- child: ClipRRect(
- borderRadius: BorderRadius.circular(10),
- child: Stack(
- fit: StackFit.expand,
- children: [
- hasImage
- ? Image.file(File(record.imagePath), fit: BoxFit.cover)
- : Container(color: Colors.grey.shade200, child: const Icon(Icons.image, color: Colors.grey)),
- Positioned(
- left: 0,
- right: 0,
- bottom: 0,
- child: Container(
- padding: const EdgeInsets.symmetric(horizontal: 4, vertical: 2),
- color: color.withValues(alpha: 0.85),
- child: Text(
- AppStrings.className(record.ripenessClass),
- style: const TextStyle(color: Colors.white, fontSize: 10, fontWeight: FontWeight.bold),
- overflow: TextOverflow.ellipsis,
- ),
- ),
- ),
- ],
- ),
- ),
- );
- },
- );
- }
- String _formatTime(DateTime t) {
- final h = t.hour.toString().padLeft(2, '0');
- final m = t.minute.toString().padLeft(2, '0');
- final s = t.second.toString().padLeft(2, '0');
- return "$h:$m:$s";
- }
- }
|