Restore UI functionalities and clean up dependencies

This commit is contained in:
streaper2
2026-05-08 08:32:58 +02:00
parent 8946955f76
commit 0895b7d5bc
26751 changed files with 4207476 additions and 158 deletions

View File

@@ -1,9 +1,6 @@
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:fl_chart/fl_chart.dart'; // La librairie pour les courbes
import '../../core/constants/app_constants.dart';
import '../../core/theme/app_theme.dart';
import '../../data/models/session.dart';
import '../../data/repositories/session_repository.dart';
import '../../services/statistics_service.dart';
@@ -55,6 +52,28 @@ class _StatisticsScreenState extends State<StatisticsScreen> {
);
}
List<double> _getScoreHistory() {
if (_statistics == null || _statistics!.sessions.isEmpty) return [0];
// Sort sessions by date and take last 10
final sortedSessions = List<Session>.from(_statistics!.sessions)
..sort((a, b) => a.createdAt.compareTo(b.createdAt));
return sortedSessions.map((s) => s.totalScore.toDouble()).toList();
}
List<double> _getPrecisionHistory() {
if (_statistics == null || _statistics!.sessions.isEmpty) return [0];
// We would need to calculate precision for each session individually to have a history.
// For now, let's just use the score trend as a proxy if we don't have per-session precision cached.
// Actually, let's use the scores but normalized if possible.
final sortedSessions = List<Session>.from(_statistics!.sessions)
..sort((a, b) => a.createdAt.compareTo(b.createdAt));
return sortedSessions.map((s) {
if (s.shots.isEmpty) return 0.0;
// Simple precision proxy: score / max possible (assuming 10 is max)
return (s.totalScore / (s.shots.length * 10)) * 100;
}).toList();
}
@override
Widget build(BuildContext context) {
return Scaffold(
@@ -120,23 +139,33 @@ class _StatisticsScreenState extends State<StatisticsScreen> {
_buildChartSection(
'Score',
'${_statistics?.totalScore ?? 0}',
[8, 12, 10, 15, 14, 18],
_getScoreHistory(),
),
const SizedBox(height: 20),
_buildChartSection(
'Précision',
'${_statistics?.precision.precisionScore.toStringAsFixed(1)}%',
[60, 75, 70, 85, 80, 95],
_getPrecisionHistory(),
),
const SizedBox(height: 20),
_buildChartSection('Groupement moyen', '14.2 mm', [
20,
18,
22,
15,
14,
12,
]), // mm fictif pour l'exemple
_buildChartSection(
'Groupement moyen',
'${(_statistics?.precision.groupingDiameter ?? 0 * 100).toStringAsFixed(1)}%',
_getScoreHistory().map((e) => e / 10).toList(), // Proxy for grouping history
),
const SizedBox(height: 25),
// 4. DISTRIBUTION ET BIAIS (Restauré)
if (_statistics != null && _statistics!.totalShots > 0) ...[
_buildRegionalDistribution(),
const SizedBox(height: 20),
_buildQuadrantGrid(),
const SizedBox(height: 20),
if (_statistics!.regional.biasX.abs() > 0.05 ||
_statistics!.regional.biasY.abs() > 0.05)
_buildBiasWarning(),
],
const SizedBox(height: 30),
@@ -278,17 +307,20 @@ class _StatisticsScreenState extends State<StatisticsScreen> {
}
LineChartData _mainChartData(List<double> points) {
if (points.isEmpty) points = [0];
return LineChartData(
gridData: const FlGridData(show: false),
titlesData: const FlTitlesData(show: false),
borderData: FlBorderData(show: false),
lineBarsData: [
LineChartBarData(
spots: points
.asMap()
.entries
.map((e) => FlSpot(e.key.toDouble(), e.value))
.toList(),
spots: points.length == 1
? [const FlSpot(0, 0), FlSpot(1, points[0])]
: points
.asMap()
.entries
.map((e) => FlSpot(e.key.toDouble(), e.value))
.toList(),
isCurved: true,
color: const Color(0xFF4CAF50), // Vert comme sur ton design
barWidth: 3,
@@ -302,4 +334,186 @@ class _StatisticsScreenState extends State<StatisticsScreen> {
],
);
}
// --- NOUVEAUX WIDGETS RESTAURÉS ---
Widget _buildRegionalDistribution() {
final regional = _statistics!.regional;
return Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: const Color(0xFF1E1E1E),
borderRadius: BorderRadius.circular(12),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Distribution Régionale',
style: TextStyle(
color: Colors.white,
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 12),
Row(
children: [
const Icon(Icons.explore, color: Color(0xFF1A73E8), size: 20),
const SizedBox(width: 8),
Text(
'Direction dominante : ${regional.dominantDirection}',
style: const TextStyle(color: Colors.white70, fontSize: 14),
),
],
),
const SizedBox(height: 12),
Wrap(
spacing: 8,
runSpacing: 8,
children: regional.sectorDistribution.entries
.where((e) => e.value > 0)
.map((e) {
final percentage = (e.value / _statistics!.totalShots * 100);
return Container(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
decoration: BoxDecoration(
color: const Color(0xFF1A73E8).withOpacity(0.1),
borderRadius: BorderRadius.circular(20),
border: Border.all(color: const Color(0xFF1A73E8).withOpacity(0.3)),
),
child: Text(
'${e.key}: ${e.value} (${percentage.toStringAsFixed(0)}%)',
style: const TextStyle(color: Colors.white, fontSize: 12),
),
);
}).toList(),
),
],
),
);
}
Widget _buildQuadrantGrid() {
final quadrants = _statistics!.regional.quadrantDistribution;
return Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: const Color(0xFF1E1E1E),
borderRadius: BorderRadius.circular(12),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Répartition par Quadrant',
style: TextStyle(
color: Colors.white,
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 16),
AspectRatio(
aspectRatio: 1,
child: GridView.count(
crossAxisCount: 2,
mainAxisSpacing: 4,
crossAxisSpacing: 4,
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
children: [
_buildQuadrantCell('Haut-Gauche', quadrants['Haut-Gauche'] ?? 0),
_buildQuadrantCell('Haut-Droite', quadrants['Haut-Droite'] ?? 0),
_buildQuadrantCell('Bas-Gauche', quadrants['Bas-Gauche'] ?? 0),
_buildQuadrantCell('Bas-Droite', quadrants['Bas-Droite'] ?? 0),
],
),
),
],
),
);
}
Widget _buildQuadrantCell(String label, int count) {
final percentage = (count / _statistics!.totalShots * 100);
final intensity = count / _statistics!.totalShots;
return Container(
decoration: BoxDecoration(
color: Color.lerp(
const Color(0xFF2A2A2A),
const Color(0xFF1A73E8),
intensity,
)!.withOpacity(0.8),
borderRadius: BorderRadius.circular(8),
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'$count',
style: const TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
Text(
'${percentage.toStringAsFixed(0)}%',
style: const TextStyle(color: Colors.white70, fontSize: 12),
),
Text(
label,
style: const TextStyle(color: Colors.white54, fontSize: 10),
),
],
),
);
}
Widget _buildBiasWarning() {
final regional = _statistics!.regional;
String description = '';
if (regional.biasX.abs() > 0.05) {
description += regional.biasX > 0 ? 'vers la droite' : 'vers la gauche';
}
if (regional.biasY.abs() > 0.05) {
if (description.isNotEmpty) description += ' et ';
description += regional.biasY > 0 ? 'vers le bas' : 'vers le haut';
}
return Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.orange.withOpacity(0.1),
borderRadius: BorderRadius.circular(12),
border: Border.all(color: Colors.orange.withOpacity(0.3)),
),
child: Row(
children: [
const Icon(Icons.warning_amber_rounded, color: Colors.orange),
const SizedBox(width: 12),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Biais détecté',
style: TextStyle(
color: Colors.orange,
fontWeight: FontWeight.bold,
),
),
Text(
'Tendance $description',
style: const TextStyle(color: Colors.white70, fontSize: 13),
),
],
),
),
],
),
);
}
}