Compare commits
9 Commits
v0.3.4-dev
...
v0.5.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 1c15546b66 | |||
| e1ad1ea685 | |||
| 9b307ab56b | |||
| 8cf43c76e2 | |||
| 2600e90efa | |||
| a9bc6c306c | |||
| 54026aa93a | |||
| 0971124fd4 | |||
| 4bd6f0bbed |
@@ -10,7 +10,7 @@ env:
|
|||||||
JAVA_VERSION: "17"
|
JAVA_VERSION: "17"
|
||||||
ANDROID_SDK_ROOT: "${{ github.workspace }}/android-sdk"
|
ANDROID_SDK_ROOT: "${{ github.workspace }}/android-sdk"
|
||||||
FLUTTER_VERSION: "3.38.5"
|
FLUTTER_VERSION: "3.38.5"
|
||||||
BUILD_WINDOWS: "false" # set to "true" when you actually want Windows builds
|
BUILD_WINDOWS: "false" # Windows build disabled (no runner available)
|
||||||
GITEA_BASE_URL: https://git.tgj.services
|
GITEA_BASE_URL: https://git.tgj.services
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@@ -27,8 +27,13 @@ class App extends StatelessWidget {
|
|||||||
ChangeNotifierProvider<AuthService>(
|
ChangeNotifierProvider<AuthService>(
|
||||||
create: (context) => AuthService(api: context.read<ApiService>()),
|
create: (context) => AuthService(api: context.read<ApiService>()),
|
||||||
),
|
),
|
||||||
ChangeNotifierProvider<DataService>(
|
ChangeNotifierProxyProvider<AuthService, DataService>(
|
||||||
create: (context) => DataService(api: context.read<ApiService>()),
|
create: (context) => DataService(api: context.read<ApiService>()),
|
||||||
|
update: (context, auth, data) {
|
||||||
|
data ??= DataService(api: context.read<ApiService>());
|
||||||
|
data.handleAuthChanged(auth.userId);
|
||||||
|
return data;
|
||||||
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
child: const MyApp(),
|
child: const MyApp(),
|
||||||
|
|||||||
@@ -36,7 +36,6 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
|||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
final changes = data.latestLocoChanges;
|
final changes = data.latestLocoChanges;
|
||||||
final isLoading = data.isLatestLocoChangesLoading;
|
final isLoading = data.isLatestLocoChangesLoading;
|
||||||
final hasMore = data.latestLocoChangesHasMore;
|
|
||||||
final textTheme = Theme.of(context).textTheme;
|
final textTheme = Theme.of(context).textTheme;
|
||||||
|
|
||||||
return Card(
|
return Card(
|
||||||
@@ -52,7 +51,7 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
|||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Text(
|
child: Text(
|
||||||
'Latest loco changes',
|
'Latest Loco Changes',
|
||||||
style: textTheme.titleMedium?.copyWith(
|
style: textTheme.titleMedium?.copyWith(
|
||||||
fontWeight: FontWeight.w800,
|
fontWeight: FontWeight.w800,
|
||||||
),
|
),
|
||||||
@@ -287,7 +286,7 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
|||||||
],
|
],
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
separatorBuilder: (_, __) => const Divider(height: 8),
|
separatorBuilder: (_, index) => const Divider(height: 8),
|
||||||
itemCount: grouped.length,
|
itemCount: grouped.length,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
import 'dart:convert';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.dart';
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
@@ -38,19 +36,72 @@ class _LegCardState extends State<LegCard> {
|
|||||||
title: LayoutBuilder(
|
title: LayoutBuilder(
|
||||||
builder: (context, constraints) {
|
builder: (context, constraints) {
|
||||||
final isWide = constraints.maxWidth > 520;
|
final isWide = constraints.maxWidth > 520;
|
||||||
final routeText = Text('${leg.start} → ${leg.end}');
|
final beginTimeWidget = _timeWithDelay(
|
||||||
final timeText =
|
context,
|
||||||
Text(_formatDateTime(leg.beginTime, includeDate: widget.showDate));
|
leg.beginTime,
|
||||||
|
leg.beginDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
);
|
||||||
|
final endTimeWidget = leg.endTime == null
|
||||||
|
? null
|
||||||
|
: _timeWithDelay(
|
||||||
|
context,
|
||||||
|
leg.endTime!,
|
||||||
|
leg.endDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
);
|
||||||
|
|
||||||
|
final routeText = Text(
|
||||||
|
'${leg.start} → ${leg.end}',
|
||||||
|
softWrap: true,
|
||||||
|
);
|
||||||
if (!isWide) {
|
if (!isWide) {
|
||||||
return routeText;
|
final timeStyle = Theme.of(context).textTheme.labelSmall;
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
routeText,
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Wrap(
|
||||||
|
spacing: 6,
|
||||||
|
runSpacing: 4,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
children: [
|
||||||
|
_timeWithDelay(
|
||||||
|
context,
|
||||||
|
leg.beginTime,
|
||||||
|
leg.beginDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
style: timeStyle,
|
||||||
|
),
|
||||||
|
if (endTimeWidget != null) ...[
|
||||||
|
const Text('·'),
|
||||||
|
_timeWithDelay(
|
||||||
|
context,
|
||||||
|
leg.endTime!,
|
||||||
|
leg.endDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
style: timeStyle,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return Row(
|
|
||||||
|
return Wrap(
|
||||||
|
spacing: 6,
|
||||||
|
runSpacing: 4,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
timeText,
|
beginTimeWidget,
|
||||||
const SizedBox(width: 6),
|
|
||||||
const Text('·'),
|
const Text('·'),
|
||||||
const SizedBox(width: 6),
|
routeText,
|
||||||
Expanded(child: routeText),
|
if (endTimeWidget != null) ...[
|
||||||
|
const Text('·'),
|
||||||
|
endTimeWidget,
|
||||||
|
],
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@@ -58,8 +109,12 @@ class _LegCardState extends State<LegCard> {
|
|||||||
subtitle: LayoutBuilder(
|
subtitle: LayoutBuilder(
|
||||||
builder: (context, constraints) {
|
builder: (context, constraints) {
|
||||||
final isWide = constraints.maxWidth > 520;
|
final isWide = constraints.maxWidth > 520;
|
||||||
final timeWidget =
|
final timeWidget = _timeWithDelay(
|
||||||
Text(_formatDateTime(leg.beginTime, includeDate: widget.showDate));
|
context,
|
||||||
|
leg.beginTime,
|
||||||
|
leg.beginDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
);
|
||||||
final tractionWrap = !_expanded && leg.locos.isNotEmpty
|
final tractionWrap = !_expanded && leg.locos.isNotEmpty
|
||||||
? Wrap(
|
? Wrap(
|
||||||
spacing: 8,
|
spacing: 8,
|
||||||
@@ -90,9 +145,7 @@ class _LegCardState extends State<LegCard> {
|
|||||||
children.add(tractionWrap);
|
children.add(tractionWrap);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
children.add(timeWidget);
|
|
||||||
if (tractionWrap != null) {
|
if (tractionWrap != null) {
|
||||||
children.add(const SizedBox(height: 4));
|
|
||||||
children.add(tractionWrap);
|
children.add(tractionWrap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -191,6 +244,12 @@ class _LegCardState extends State<LegCard> {
|
|||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
],
|
],
|
||||||
|
if (_hasTrainDetails(leg)) ...[
|
||||||
|
Text('Train', style: textTheme.titleSmall),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
..._buildTrainDetails(leg, textTheme),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
],
|
||||||
if (routeSegments.isNotEmpty) ...[
|
if (routeSegments.isNotEmpty) ...[
|
||||||
Text('Route', style: textTheme.titleSmall),
|
Text('Route', style: textTheme.titleSmall),
|
||||||
const SizedBox(height: 6),
|
const SizedBox(height: 6),
|
||||||
@@ -224,6 +283,7 @@ class _LegCardState extends State<LegCard> {
|
|||||||
);
|
);
|
||||||
if (confirmed != true) return;
|
if (confirmed != true) return;
|
||||||
|
|
||||||
|
if (!context.mounted) return;
|
||||||
final data = context.read<DataService>();
|
final data = context.read<DataService>();
|
||||||
final messenger = ScaffoldMessenger.of(context);
|
final messenger = ScaffoldMessenger.of(context);
|
||||||
try {
|
try {
|
||||||
@@ -237,6 +297,40 @@ class _LegCardState extends State<LegCard> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _timeWithDelay(
|
||||||
|
BuildContext context,
|
||||||
|
DateTime time,
|
||||||
|
int? delay, {
|
||||||
|
bool includeDate = true,
|
||||||
|
TextStyle? style,
|
||||||
|
}) {
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
|
final colorScheme = Theme.of(context).colorScheme;
|
||||||
|
final delayMinutes = delay ?? 0;
|
||||||
|
final delayText =
|
||||||
|
delayMinutes == 0 ? null : '${delayMinutes > 0 ? '+' : ''}$delayMinutes';
|
||||||
|
final delayColor = delayMinutes == 0
|
||||||
|
? null
|
||||||
|
: (delayMinutes < 0 ? Colors.green : colorScheme.error);
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
_formatDateTime(time, includeDate: includeDate),
|
||||||
|
style: style,
|
||||||
|
),
|
||||||
|
if (delayText != null) ...[
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
'$delayText m',
|
||||||
|
style:
|
||||||
|
(style ?? textTheme.labelSmall)?.copyWith(color: delayColor),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
String _formatDate(DateTime? date) {
|
String _formatDate(DateTime? date) {
|
||||||
if (date == null) return '';
|
if (date == null) return '';
|
||||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||||
@@ -285,6 +379,51 @@ class _LegCardState extends State<LegCard> {
|
|||||||
.toList();
|
.toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool _hasTrainDetails(Leg leg) {
|
||||||
|
return leg.headcode.isNotEmpty ||
|
||||||
|
leg.origin.isNotEmpty ||
|
||||||
|
leg.destination.isNotEmpty ||
|
||||||
|
leg.originTime != null ||
|
||||||
|
leg.destinationTime != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildTrainDetails(Leg leg, TextTheme textTheme) {
|
||||||
|
final widgets = <Widget>[];
|
||||||
|
if (leg.headcode.isNotEmpty) {
|
||||||
|
widgets.add(
|
||||||
|
Text(
|
||||||
|
'Headcode: ${leg.headcode}',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
final originLine = _locationLine(
|
||||||
|
'Origin',
|
||||||
|
leg.origin,
|
||||||
|
leg.originTime,
|
||||||
|
);
|
||||||
|
if (originLine != null) {
|
||||||
|
widgets.add(Text(originLine, style: textTheme.bodyMedium));
|
||||||
|
}
|
||||||
|
final destinationLine = _locationLine(
|
||||||
|
'Destination',
|
||||||
|
leg.destination,
|
||||||
|
leg.destinationTime,
|
||||||
|
);
|
||||||
|
if (destinationLine != null) {
|
||||||
|
widgets.add(Text(destinationLine, style: textTheme.bodyMedium));
|
||||||
|
}
|
||||||
|
return widgets;
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _locationLine(String label, String location, DateTime? time) {
|
||||||
|
final parts = <String>[];
|
||||||
|
if (location.trim().isNotEmpty) parts.add(location.trim());
|
||||||
|
if (time != null) parts.add(_formatDateTime(time));
|
||||||
|
if (parts.isEmpty) return null;
|
||||||
|
return '$label: ${parts.join(' · ')}';
|
||||||
|
}
|
||||||
|
|
||||||
Widget _buildRouteList(List<String> segments) {
|
Widget _buildRouteList(List<String> segments) {
|
||||||
return Column(
|
return Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
@@ -305,38 +444,7 @@ class _LegCardState extends State<LegCard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
List<String> _parseRouteSegments(String route) {
|
List<String> _parseRouteSegments(List<String> route) {
|
||||||
final trimmed = route.trim();
|
return route.map((e) => e.toString()).where((e) => e.trim().isNotEmpty).toList();
|
||||||
if (trimmed.isEmpty) return [];
|
|
||||||
try {
|
|
||||||
final decoded = jsonDecode(trimmed);
|
|
||||||
if (decoded is List) {
|
|
||||||
return decoded.map((e) => e.toString()).toList();
|
|
||||||
}
|
|
||||||
} catch (_) {}
|
|
||||||
if (trimmed.startsWith('[') && trimmed.endsWith(']')) {
|
|
||||||
try {
|
|
||||||
final replaced = trimmed.replaceAll("'", '"');
|
|
||||||
final decoded = jsonDecode(replaced);
|
|
||||||
if (decoded is List) {
|
|
||||||
return decoded.map((e) => e.toString()).toList();
|
|
||||||
}
|
|
||||||
} catch (_) {}
|
|
||||||
}
|
|
||||||
if (trimmed.contains('->')) {
|
|
||||||
return trimmed
|
|
||||||
.split('->')
|
|
||||||
.map((e) => e.trim())
|
|
||||||
.where((e) => e.isNotEmpty)
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
if (trimmed.contains(',')) {
|
|
||||||
return trimmed
|
|
||||||
.split(',')
|
|
||||||
.map((e) => e.trim())
|
|
||||||
.where((e) => e.isNotEmpty)
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
return [trimmed];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:mileograph_flutter/services/authservice.dart';
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class LoginScreen extends StatefulWidget {
|
class LoginScreen extends StatefulWidget {
|
||||||
@@ -16,7 +17,9 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) => _checkExistingSession());
|
WidgetsBinding.instance.addPostFrameCallback(
|
||||||
|
(_) => _checkExistingSession(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _checkExistingSession() async {
|
Future<void> _checkExistingSession() async {
|
||||||
@@ -26,7 +29,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
if (!valid) return;
|
if (!valid) return;
|
||||||
await auth.tryRestoreSession();
|
await auth.tryRestoreSession();
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
context.go('/');
|
context.go('/dashboard');
|
||||||
} finally {
|
} finally {
|
||||||
if (mounted) setState(() => _checkingSession = false);
|
if (mounted) setState(() => _checkingSession = false);
|
||||||
}
|
}
|
||||||
@@ -70,23 +73,39 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (_checkingSession)
|
|
||||||
const Padding(
|
|
||||||
padding: EdgeInsets.only(top: 12),
|
|
||||||
child: SizedBox(
|
|
||||||
height: 24,
|
|
||||||
width: 24,
|
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 50),
|
const SizedBox(height: 50),
|
||||||
const LoginPanel(),
|
const LoginPanel(),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.settings, color: Colors.grey),
|
icon: const Icon(Icons.settings, color: Colors.grey),
|
||||||
tooltip: 'Settings',
|
tooltip: 'Settings',
|
||||||
onPressed: () => context.go('/settings'),
|
onPressed: () {
|
||||||
|
Navigator.of(context).push(
|
||||||
|
MaterialPageRoute(
|
||||||
|
fullscreenDialog: true,
|
||||||
|
builder: (_) => const SettingsPage(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
|
if (_checkingSession) ...[
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
const SizedBox(
|
||||||
|
height: 24,
|
||||||
|
width: 24,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Text(
|
||||||
|
'Trying to log in',
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -179,14 +198,15 @@ class _LoginPanelContentState extends State<LoginPanelContent> {
|
|||||||
setState(() {
|
setState(() {
|
||||||
_loggingIn = false;
|
_loggingIn = false;
|
||||||
});
|
});
|
||||||
|
context.go('/dashboard');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
setState(() {
|
setState(() {
|
||||||
_loggingIn = false;
|
_loggingIn = false;
|
||||||
});
|
});
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(
|
||||||
SnackBar(content: Text('Login failed: $e')),
|
context,
|
||||||
);
|
).showSnackBar(SnackBar(content: Text('Login failed: $e')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -297,14 +317,16 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
|||||||
);
|
);
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
const SnackBar(content: Text('Registration successful. Please log in.')),
|
const SnackBar(
|
||||||
|
content: Text('Registration successful. Please log in.'),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
widget.onBack();
|
widget.onBack();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(
|
||||||
SnackBar(content: Text('Registration failed: $e')),
|
context,
|
||||||
);
|
).showSnackBar(SnackBar(content: Text('Registration failed: $e')));
|
||||||
} finally {
|
} finally {
|
||||||
if (mounted) setState(() => _registering = false);
|
if (mounted) setState(() => _registering = false);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -509,7 +509,7 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
icon: Icons.bookmark,
|
icon: Icons.bookmark,
|
||||||
title: 'Trips',
|
title: 'Trips',
|
||||||
action: TextButton(
|
action: TextButton(
|
||||||
onPressed: () => context.push('/trips'),
|
onPressed: () => context.push('/logbook/trips'),
|
||||||
child: const Text('View all'),
|
child: const Text('View all'),
|
||||||
),
|
),
|
||||||
child: trips.isEmpty
|
child: trips.isEmpty
|
||||||
|
|||||||
@@ -299,7 +299,6 @@ class _FieldInput extends StatelessWidget {
|
|||||||
final name = field.name.toLowerCase();
|
final name = field.name.toLowerCase();
|
||||||
if (name == 'max_speed') {
|
if (name == 'max_speed') {
|
||||||
final unit = entry.unit ?? 'kph';
|
final unit = entry.unit ?? 'kph';
|
||||||
final isNumber = true;
|
|
||||||
return Row(
|
return Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
@@ -307,7 +306,7 @@ class _FieldInput extends StatelessWidget {
|
|||||||
initialValue: value?.toString(),
|
initialValue: value?.toString(),
|
||||||
onChanged: (val) {
|
onChanged: (val) {
|
||||||
final parsed = double.tryParse(val);
|
final parsed = double.tryParse(val);
|
||||||
onChanged(isNumber ? parsed : val, unit: unit);
|
onChanged(parsed, unit: unit);
|
||||||
},
|
},
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
|
|||||||
42
lib/components/pages/logbook.dart
Normal file
42
lib/components/pages/logbook.dart
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/legs.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/trips.dart';
|
||||||
|
|
||||||
|
enum LogbookTab { entries, trips }
|
||||||
|
|
||||||
|
class LogbookPage extends StatelessWidget {
|
||||||
|
const LogbookPage({super.key, this.initialTab = LogbookTab.entries});
|
||||||
|
|
||||||
|
final LogbookTab initialTab;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final initialIndex = initialTab == LogbookTab.trips ? 1 : 0;
|
||||||
|
return DefaultTabController(
|
||||||
|
key: ValueKey(initialTab),
|
||||||
|
initialIndex: initialIndex,
|
||||||
|
length: 2,
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
TabBar(
|
||||||
|
onTap: (index) {
|
||||||
|
final dest = index == 0 ? '/logbook/entries' : '/logbook/trips';
|
||||||
|
final current = GoRouterState.of(context).uri.path;
|
||||||
|
if (current != dest) {
|
||||||
|
context.go(dest);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
tabs: const [
|
||||||
|
Tab(text: 'Entries'),
|
||||||
|
Tab(text: 'Trips'),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: TabBarView(children: const [LegsPage(), TripsPage()]),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
68
lib/components/pages/more.dart
Normal file
68
lib/components/pages/more.dart
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/profile.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||||
|
|
||||||
|
class MorePage extends StatelessWidget {
|
||||||
|
const MorePage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Navigator(
|
||||||
|
onGenerateRoute: (settings) {
|
||||||
|
final name = settings.name ?? '/';
|
||||||
|
Widget page;
|
||||||
|
switch (name) {
|
||||||
|
case '/settings':
|
||||||
|
page = const SettingsPage();
|
||||||
|
break;
|
||||||
|
case '/profile':
|
||||||
|
page = const ProfilePage();
|
||||||
|
break;
|
||||||
|
case '/more/settings':
|
||||||
|
page = const SettingsPage();
|
||||||
|
break;
|
||||||
|
case '/more/profile':
|
||||||
|
page = const ProfilePage();
|
||||||
|
break;
|
||||||
|
case '/':
|
||||||
|
default:
|
||||||
|
page = _MoreHome();
|
||||||
|
}
|
||||||
|
return MaterialPageRoute(builder: (_) => page, settings: settings);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MoreHome extends StatelessWidget {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return ListView(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'More',
|
||||||
|
style: Theme.of(context).textTheme.headlineSmall,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Card(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
ListTile(
|
||||||
|
leading: const Icon(Icons.emoji_events),
|
||||||
|
title: const Text('Badges'),
|
||||||
|
onTap: () => Navigator.of(context).pushNamed('/more/profile'),
|
||||||
|
),
|
||||||
|
const Divider(height: 1),
|
||||||
|
ListTile(
|
||||||
|
leading: const Icon(Icons.settings),
|
||||||
|
title: const Text('Settings'),
|
||||||
|
onTap: () => Navigator.of(context).pushNamed('/more/settings'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,6 +13,9 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
if (choice == _ExitChoice.save) {
|
if (choice == _ExitChoice.save) {
|
||||||
await _saveDraftEntry(draftId: _activeDraftId);
|
await _saveDraftEntry(draftId: _activeDraftId);
|
||||||
} else if (choice == _ExitChoice.discard) {
|
} else if (choice == _ExitChoice.discard) {
|
||||||
|
// Delay reset to avoid setState during the dialog/build phase.
|
||||||
|
await Future<void>.delayed(Duration.zero);
|
||||||
|
if (!mounted) return false;
|
||||||
await _resetFormState(clearDraft: true);
|
await _resetFormState(clearDraft: true);
|
||||||
_activeDraftId = null;
|
_activeDraftId = null;
|
||||||
}
|
}
|
||||||
@@ -29,12 +32,21 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool _formIsEmpty() {
|
bool _formIsEmpty() {
|
||||||
|
final beginDelayVal = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelayVal = _parseDelayMinutes(_endDelayController.text);
|
||||||
return _startController.text.trim().isEmpty &&
|
return _startController.text.trim().isEmpty &&
|
||||||
_endController.text.trim().isEmpty &&
|
_endController.text.trim().isEmpty &&
|
||||||
_headcodeController.text.trim().isEmpty &&
|
_headcodeController.text.trim().isEmpty &&
|
||||||
_notesController.text.trim().isEmpty &&
|
_notesController.text.trim().isEmpty &&
|
||||||
_networkController.text.trim().isEmpty &&
|
_networkController.text.trim().isEmpty &&
|
||||||
_mileageController.text.trim().isEmpty &&
|
_mileageController.text.trim().isEmpty &&
|
||||||
|
_originController.text.trim().isEmpty &&
|
||||||
|
_destinationController.text.trim().isEmpty &&
|
||||||
|
beginDelayVal == 0 &&
|
||||||
|
endDelayVal == 0 &&
|
||||||
|
!_hasOriginTime &&
|
||||||
|
!_hasDestinationTime &&
|
||||||
|
!_hasEndTime &&
|
||||||
_routeResult == null &&
|
_routeResult == null &&
|
||||||
_tractionItems.length <= 1;
|
_tractionItems.length <= 1;
|
||||||
}
|
}
|
||||||
@@ -122,6 +134,30 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
"notes": _notesController.text,
|
"notes": _notesController.text,
|
||||||
"mileage": _mileageController.text,
|
"mileage": _mileageController.text,
|
||||||
"network": _networkController.text,
|
"network": _networkController.text,
|
||||||
|
"origin": _originController.text,
|
||||||
|
"destination": _destinationController.text,
|
||||||
|
"hasEndTime": _hasEndTime,
|
||||||
|
"hasOriginTime": _hasOriginTime,
|
||||||
|
"hasDestinationTime": _hasDestinationTime,
|
||||||
|
"endDate": _selectedEndDate.toIso8601String(),
|
||||||
|
"endTime": {
|
||||||
|
"hour": _selectedEndTime.hour,
|
||||||
|
"minute": _selectedEndTime.minute,
|
||||||
|
},
|
||||||
|
"originDate": _selectedOriginDate.toIso8601String(),
|
||||||
|
"originTime": {
|
||||||
|
"hour": _selectedOriginTime.hour,
|
||||||
|
"minute": _selectedOriginTime.minute,
|
||||||
|
},
|
||||||
|
"destinationDate": _selectedDestinationDate.toIso8601String(),
|
||||||
|
"destinationTime": {
|
||||||
|
"hour": _selectedDestinationTime.hour,
|
||||||
|
"minute": _selectedDestinationTime.minute,
|
||||||
|
},
|
||||||
|
"matchOriginToEntry": _matchOriginToEntry,
|
||||||
|
"matchDestinationToEntry": _matchDestinationToEntry,
|
||||||
|
"beginDelay": _parseDelayMinutes(_beginDelayController.text),
|
||||||
|
"endDelay": _parseDelayMinutes(_endDelayController.text),
|
||||||
"useManualMileage": _useManualMileage,
|
"useManualMileage": _useManualMileage,
|
||||||
"selectedTripId": _selectedTripId,
|
"selectedTripId": _selectedTripId,
|
||||||
"routeResult": _routeResult == null
|
"routeResult": _routeResult == null
|
||||||
@@ -200,6 +236,12 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
bool includeTimestamp = true,
|
bool includeTimestamp = true,
|
||||||
}) {
|
}) {
|
||||||
final routeStations = _routeResult?.calculatedRoute ?? [];
|
final routeStations = _routeResult?.calculatedRoute ?? [];
|
||||||
|
final endTime = _legEndDateTime;
|
||||||
|
final originTime = _originDateTime;
|
||||||
|
final destinationTime = _destinationDateTime;
|
||||||
|
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelay =
|
||||||
|
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||||
final startVal = _useManualMileage
|
final startVal = _useManualMileage
|
||||||
? _startController.text.trim()
|
? _startController.text.trim()
|
||||||
: (routeStations.isNotEmpty ? routeStations.first : '');
|
: (routeStations.isNotEmpty ? routeStations.first : '');
|
||||||
@@ -210,27 +252,33 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
? double.tryParse(_mileageController.text.trim()) ?? 0
|
? double.tryParse(_mileageController.text.trim()) ?? 0
|
||||||
: (_routeResult?.distance ?? 0);
|
: (_routeResult?.distance ?? 0);
|
||||||
final tractionPayload = _buildTractionPayload();
|
final tractionPayload = _buildTractionPayload();
|
||||||
|
final commonPayload = {
|
||||||
|
"leg_trip": _selectedTripId,
|
||||||
|
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||||
|
if (endTime != null) "leg_end_time": endTime.toIso8601String(),
|
||||||
|
if (originTime != null) "leg_origin_time": originTime.toIso8601String(),
|
||||||
|
if (destinationTime != null)
|
||||||
|
"leg_destination_time": destinationTime.toIso8601String(),
|
||||||
|
"leg_notes": _notesController.text.trim(),
|
||||||
|
"leg_headcode": _headcodeController.text.trim(),
|
||||||
|
"leg_network": _networkController.text.trim(),
|
||||||
|
"leg_origin": _originController.text.trim(),
|
||||||
|
"leg_destination": _destinationController.text.trim(),
|
||||||
|
"leg_begin_delay": beginDelay,
|
||||||
|
if (_hasEndTime) "leg_end_delay": endDelay,
|
||||||
|
"locos": tractionPayload,
|
||||||
|
};
|
||||||
final payload = _useManualMileage
|
final payload = _useManualMileage
|
||||||
? {
|
? {
|
||||||
"leg_trip": _selectedTripId,
|
...commonPayload,
|
||||||
"leg_start": startVal,
|
"leg_start": startVal,
|
||||||
"leg_end": endVal,
|
"leg_end": endVal,
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"leg_distance": mileageVal,
|
"leg_distance": mileageVal,
|
||||||
"isKilometers": false,
|
"isKilometers": false,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
"leg_trip": _selectedTripId,
|
...commonPayload,
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_route": routeStations,
|
"leg_route": routeStations,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
"leg_mileage": _routeResult?.distance ?? mileageVal,
|
"leg_mileage": _routeResult?.distance ?? mileageVal,
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
@@ -265,6 +313,29 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
final beginTime = beginStr == null
|
final beginTime = beginStr == null
|
||||||
? DateTime.now()
|
? DateTime.now()
|
||||||
: DateTime.tryParse(beginStr) ?? DateTime.now();
|
: DateTime.tryParse(beginStr) ?? DateTime.now();
|
||||||
|
final originTimeStr = payload['leg_origin_time'] as String?;
|
||||||
|
final destinationTimeStr = payload['leg_destination_time'] as String?;
|
||||||
|
final originTime =
|
||||||
|
originTimeStr == null ? null : DateTime.tryParse(originTimeStr);
|
||||||
|
final destinationTime = destinationTimeStr == null
|
||||||
|
? null
|
||||||
|
: DateTime.tryParse(destinationTimeStr);
|
||||||
|
final endStr = payload['leg_end_time'] as String?;
|
||||||
|
final endTime =
|
||||||
|
endStr == null ? null : DateTime.tryParse(endStr);
|
||||||
|
final beginDelay =
|
||||||
|
_parseDelayMinutes('${payload['leg_begin_delay'] ?? ''}');
|
||||||
|
final endDelay =
|
||||||
|
_parseDelayMinutes('${payload['leg_end_delay'] ?? ''}');
|
||||||
|
final hasEndTime = endTime != null || endDelay != 0;
|
||||||
|
final matchOrigin = data['matchOriginToEntry'] == true;
|
||||||
|
final matchDestination = data['matchDestinationToEntry'] == true;
|
||||||
|
final hasOriginTime =
|
||||||
|
originTime != null || data['hasOriginTime'] == true;
|
||||||
|
final hasDestinationTime =
|
||||||
|
destinationTime != null || data['hasDestinationTime'] == true;
|
||||||
|
final origin = payload['leg_origin'] as String? ?? '';
|
||||||
|
final destination = payload['leg_destination'] as String? ?? '';
|
||||||
final tripRaw = payload['leg_trip'];
|
final tripRaw = payload['leg_trip'];
|
||||||
final tripId = tripRaw is num ? tripRaw.toInt() : null;
|
final tripId = tripRaw is num ? tripRaw.toInt() : null;
|
||||||
|
|
||||||
@@ -312,6 +383,21 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
_useManualMileage = useManual;
|
_useManualMileage = useManual;
|
||||||
_selectedDate = beginTime;
|
_selectedDate = beginTime;
|
||||||
_selectedTime = TimeOfDay.fromDateTime(beginTime);
|
_selectedTime = TimeOfDay.fromDateTime(beginTime);
|
||||||
|
_selectedEndDate = endTime ?? beginTime;
|
||||||
|
_selectedEndTime = TimeOfDay.fromDateTime(endTime ?? beginTime);
|
||||||
|
_hasEndTime = hasEndTime;
|
||||||
|
_matchOriginToEntry = matchOrigin;
|
||||||
|
_matchDestinationToEntry = matchDestination;
|
||||||
|
_selectedOriginDate = originTime ?? beginTime;
|
||||||
|
_selectedOriginTime =
|
||||||
|
TimeOfDay.fromDateTime(originTime ?? beginTime);
|
||||||
|
_selectedDestinationDate =
|
||||||
|
destinationTime ?? endTime ?? beginTime;
|
||||||
|
_selectedDestinationTime = TimeOfDay.fromDateTime(
|
||||||
|
destinationTime ?? endTime ?? beginTime,
|
||||||
|
);
|
||||||
|
_hasOriginTime = hasOriginTime;
|
||||||
|
_hasDestinationTime = hasDestinationTime;
|
||||||
_selectedTripId = tripId == null || tripId == 0 ? null : tripId;
|
_selectedTripId = tripId == null || tripId == 0 ? null : tripId;
|
||||||
_routeResult = restoredRouteResult;
|
_routeResult = restoredRouteResult;
|
||||||
_headcodeController.text = (payload['leg_headcode'] as String? ?? '')
|
_headcodeController.text = (payload['leg_headcode'] as String? ?? '')
|
||||||
@@ -319,6 +405,10 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
_networkController.text = (payload['leg_network'] as String? ?? '')
|
_networkController.text = (payload['leg_network'] as String? ?? '')
|
||||||
.toUpperCase();
|
.toUpperCase();
|
||||||
_notesController.text = payload['leg_notes'] ?? '';
|
_notesController.text = payload['leg_notes'] ?? '';
|
||||||
|
_originController.text = origin;
|
||||||
|
_destinationController.text = destination;
|
||||||
|
_beginDelayController.text = beginDelay.toString();
|
||||||
|
_endDelayController.text = endDelay.toString();
|
||||||
|
|
||||||
if (useManual) {
|
if (useManual) {
|
||||||
_startController.text = payload['leg_start'] ?? '';
|
_startController.text = payload['leg_start'] ?? '';
|
||||||
@@ -359,6 +449,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
includeTimestamp: false,
|
includeTimestamp: false,
|
||||||
);
|
);
|
||||||
_restoringDraft = false;
|
_restoringDraft = false;
|
||||||
|
_scheduleMatchUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _loadDraft() async {
|
Future<void> _loadDraft() async {
|
||||||
|
|||||||
@@ -14,15 +14,32 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
final _formKey = GlobalKey<FormState>();
|
final _formKey = GlobalKey<FormState>();
|
||||||
DateTime _selectedDate = DateTime.now();
|
DateTime _selectedDate = DateTime.now();
|
||||||
TimeOfDay _selectedTime = TimeOfDay.now();
|
TimeOfDay _selectedTime = TimeOfDay.now();
|
||||||
|
DateTime _selectedEndDate = DateTime.now();
|
||||||
|
TimeOfDay _selectedEndTime = TimeOfDay.now();
|
||||||
final _startController = TextEditingController();
|
final _startController = TextEditingController();
|
||||||
final _endController = TextEditingController();
|
final _endController = TextEditingController();
|
||||||
final _headcodeController = TextEditingController();
|
final _headcodeController = TextEditingController();
|
||||||
final _notesController = TextEditingController();
|
final _notesController = TextEditingController();
|
||||||
final _mileageController = TextEditingController();
|
final _mileageController = TextEditingController();
|
||||||
final _networkController = TextEditingController();
|
final _networkController = TextEditingController();
|
||||||
|
final _originController = TextEditingController();
|
||||||
|
final _destinationController = TextEditingController();
|
||||||
|
final _beginDelayController = TextEditingController(text: '0');
|
||||||
|
final _endDelayController = TextEditingController(text: '0');
|
||||||
|
DateTime _selectedOriginDate = DateTime.now();
|
||||||
|
DateTime _selectedDestinationDate = DateTime.now();
|
||||||
|
TimeOfDay _selectedOriginTime = TimeOfDay.now();
|
||||||
|
TimeOfDay _selectedDestinationTime = TimeOfDay.now();
|
||||||
|
bool _hasOriginTime = false;
|
||||||
|
bool _hasDestinationTime = false;
|
||||||
bool _submitting = false;
|
bool _submitting = false;
|
||||||
bool _useManualMileage = false;
|
bool _useManualMileage = false;
|
||||||
|
bool _hasEndTime = false;
|
||||||
|
bool _matchOriginToEntry = false;
|
||||||
|
bool _matchDestinationToEntry = false;
|
||||||
RouteResult? _routeResult;
|
RouteResult? _routeResult;
|
||||||
|
List<Station> _stations = const [];
|
||||||
|
bool _loadingStations = false;
|
||||||
final List<_TractionItem> _tractionItems = [_TractionItem.marker()];
|
final List<_TractionItem> _tractionItems = [_TractionItem.marker()];
|
||||||
int? _selectedTripId;
|
int? _selectedTripId;
|
||||||
bool _restoringDraft = false;
|
bool _restoringDraft = false;
|
||||||
@@ -50,9 +67,11 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
final data = context.read<DataService>();
|
final data = context.read<DataService>();
|
||||||
data.fetchClassList();
|
data.fetchClassList();
|
||||||
data.fetchTripOptions();
|
data.fetchTripOptions();
|
||||||
|
_loadStations();
|
||||||
if (_draftPersistenceEnabled) {
|
if (_draftPersistenceEnabled) {
|
||||||
_loadDraft();
|
_loadDraft();
|
||||||
}
|
}
|
||||||
|
_loadStations();
|
||||||
if (_isEditing && widget.editLegId != null) {
|
if (_isEditing && widget.editLegId != null) {
|
||||||
_loadLegForEdit(widget.editLegId!);
|
_loadLegForEdit(widget.editLegId!);
|
||||||
}
|
}
|
||||||
@@ -68,6 +87,10 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
_notesController.dispose();
|
_notesController.dispose();
|
||||||
_mileageController.dispose();
|
_mileageController.dispose();
|
||||||
_networkController.dispose();
|
_networkController.dispose();
|
||||||
|
_originController.dispose();
|
||||||
|
_destinationController.dispose();
|
||||||
|
_beginDelayController.dispose();
|
||||||
|
_endDelayController.dispose();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -136,7 +159,8 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
child: const Text('Cancel'),
|
child: const Text('Cancel'),
|
||||||
),
|
),
|
||||||
ElevatedButton(
|
ElevatedButton(
|
||||||
onPressed: () => Navigator.of(dialogContext).pop(controller.text.trim()),
|
onPressed: () =>
|
||||||
|
Navigator.of(dialogContext).pop(controller.text.trim()),
|
||||||
child: const Text('Add'),
|
child: const Text('Add'),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@@ -147,15 +171,15 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (result != null && result.isNotEmpty) {
|
if (result != null && result.isNotEmpty) {
|
||||||
final api = context.read<ApiService>();
|
final api = context.read<ApiService>();
|
||||||
final data = context.read<DataService>();
|
final data = context.read<DataService>();
|
||||||
final messenger = ScaffoldMessenger.maybeOf(context);
|
final messenger = ScaffoldMessenger.maybeOf(context);
|
||||||
try {
|
try {
|
||||||
final encoded = Uri.encodeComponent(result);
|
final encoded = Uri.encodeComponent(result);
|
||||||
final res = await api.put('/trips/new?trip_name=$encoded', {});
|
final res = await api.put('/trips/new?trip_name=$encoded', {});
|
||||||
await data.fetchTripOptions();
|
await data.fetchTripOptions();
|
||||||
if (!context.mounted) return;
|
if (!context.mounted) return;
|
||||||
final trips = data.tripList;
|
final trips = data.tripList;
|
||||||
final apiTripId = res is Map ? res['trip_id'] as int? : null;
|
final apiTripId = res is Map ? res['trip_id'] as int? : null;
|
||||||
TripSummary match;
|
TripSummary match;
|
||||||
try {
|
try {
|
||||||
@@ -206,6 +230,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
_useManualMileage = false;
|
_useManualMileage = false;
|
||||||
});
|
});
|
||||||
_saveDraft();
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -218,6 +243,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
);
|
);
|
||||||
if (picked != null) setState(() => _selectedDate = picked);
|
if (picked != null) setState(() => _selectedDate = picked);
|
||||||
_saveDraft();
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _pickTime() async {
|
Future<void> _pickTime() async {
|
||||||
@@ -229,6 +255,158 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
setState(() => _selectedTime = picked);
|
setState(() => _selectedTime = picked);
|
||||||
_saveDraft();
|
_saveDraft();
|
||||||
}
|
}
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _pickEndDate() async {
|
||||||
|
final picked = await showDatePicker(
|
||||||
|
context: context,
|
||||||
|
initialDate: _selectedEndDate,
|
||||||
|
firstDate: DateTime(1970),
|
||||||
|
lastDate: DateTime.now().add(const Duration(days: 365)),
|
||||||
|
);
|
||||||
|
if (picked != null) setState(() => _selectedEndDate = picked);
|
||||||
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _pickEndTime() async {
|
||||||
|
final picked = await showTimePicker(
|
||||||
|
context: context,
|
||||||
|
initialTime: _selectedEndTime,
|
||||||
|
);
|
||||||
|
if (picked != null) {
|
||||||
|
setState(() => _selectedEndTime = picked);
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleEndTime(bool? value) {
|
||||||
|
final useEndTime = value ?? false;
|
||||||
|
final wasEnabled = _hasEndTime;
|
||||||
|
setState(() {
|
||||||
|
_hasEndTime = useEndTime;
|
||||||
|
if (useEndTime && !wasEnabled) {
|
||||||
|
_selectedEndDate = _selectedDate;
|
||||||
|
_selectedEndTime = _selectedTime;
|
||||||
|
if (_endDelayController.text.isEmpty) {
|
||||||
|
_endDelayController.text = '0';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleMatchOrigin(bool? value) {
|
||||||
|
final enabled = value ?? false;
|
||||||
|
setState(() {
|
||||||
|
_matchOriginToEntry = enabled;
|
||||||
|
if (enabled) _hasOriginTime = true;
|
||||||
|
});
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleMatchDestination(bool? value) {
|
||||||
|
final enabled = value ?? false;
|
||||||
|
setState(() {
|
||||||
|
_matchDestinationToEntry = enabled;
|
||||||
|
if (enabled) _hasDestinationTime = true;
|
||||||
|
});
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _pickOriginDate() async {
|
||||||
|
final picked = await showDatePicker(
|
||||||
|
context: context,
|
||||||
|
initialDate: _selectedOriginDate,
|
||||||
|
firstDate: DateTime(1970),
|
||||||
|
lastDate: DateTime.now().add(const Duration(days: 365)),
|
||||||
|
);
|
||||||
|
if (picked != null) setState(() => _selectedOriginDate = picked);
|
||||||
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _pickOriginTime() async {
|
||||||
|
final picked = await showTimePicker(
|
||||||
|
context: context,
|
||||||
|
initialTime: _selectedOriginTime,
|
||||||
|
);
|
||||||
|
if (picked != null) {
|
||||||
|
setState(() => _selectedOriginTime = picked);
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _pickDestinationDate() async {
|
||||||
|
final picked = await showDatePicker(
|
||||||
|
context: context,
|
||||||
|
initialDate: _selectedDestinationDate,
|
||||||
|
firstDate: DateTime(1970),
|
||||||
|
lastDate: DateTime.now().add(const Duration(days: 365)),
|
||||||
|
);
|
||||||
|
if (picked != null) setState(() => _selectedDestinationDate = picked);
|
||||||
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _pickDestinationTime() async {
|
||||||
|
final picked = await showTimePicker(
|
||||||
|
context: context,
|
||||||
|
initialTime: _selectedDestinationTime,
|
||||||
|
);
|
||||||
|
if (picked != null) {
|
||||||
|
setState(() => _selectedDestinationTime = picked);
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleOriginTime(bool? value) {
|
||||||
|
final enabled = value ?? false;
|
||||||
|
setState(() {
|
||||||
|
_hasOriginTime = enabled;
|
||||||
|
if (enabled) {
|
||||||
|
_selectedOriginDate = _selectedDate;
|
||||||
|
_selectedOriginTime = _selectedTime;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleDestinationTime(bool? value) {
|
||||||
|
final enabled = value ?? false;
|
||||||
|
setState(() {
|
||||||
|
_hasDestinationTime = enabled;
|
||||||
|
if (enabled) {
|
||||||
|
_selectedDestinationDate = _selectedEndDate;
|
||||||
|
_selectedDestinationTime = _selectedEndTime;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadStations() async {
|
||||||
|
if (_loadingStations) return;
|
||||||
|
setState(() => _loadingStations = true);
|
||||||
|
try {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
await data.fetchStationFilters();
|
||||||
|
final stations = await data.fetchStations();
|
||||||
|
if (!mounted) return;
|
||||||
|
setState(() => _stations = stations);
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to load stations: $e');
|
||||||
|
} finally {
|
||||||
|
if (mounted) setState(() => _loadingStations = false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _loadLegForEdit(int legId) async {
|
Future<void> _loadLegForEdit(int legId) async {
|
||||||
@@ -245,6 +423,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
}
|
}
|
||||||
final beginTime =
|
final beginTime =
|
||||||
DateTime.tryParse(json['leg_begin_time'] ?? '') ?? _selectedDate;
|
DateTime.tryParse(json['leg_begin_time'] ?? '') ?? _selectedDate;
|
||||||
|
final endTime = DateTime.tryParse(json['leg_end_time'] ?? '');
|
||||||
final routeStations = _parseRouteStations(json['leg_route']);
|
final routeStations = _parseRouteStations(json['leg_route']);
|
||||||
final mileageVal = (json['leg_mileage'] as num?)?.toDouble() ?? 0.0;
|
final mileageVal = (json['leg_mileage'] as num?)?.toDouble() ?? 0.0;
|
||||||
final useManual = routeStations.isEmpty;
|
final useManual = routeStations.isEmpty;
|
||||||
@@ -262,6 +441,16 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
.map((e) => Map<String, dynamic>.from(e))
|
.map((e) => Map<String, dynamic>.from(e))
|
||||||
.toList(),
|
.toList(),
|
||||||
);
|
);
|
||||||
|
final beginDelay = (json['leg_begin_delay'] as num?)?.toInt() ?? 0;
|
||||||
|
final endDelay = (json['leg_end_delay'] as num?)?.toInt() ?? 0;
|
||||||
|
final origin = json['leg_origin'] as String? ?? '';
|
||||||
|
final destination = json['leg_destination'] as String? ?? '';
|
||||||
|
final hasEndTime = endTime != null || endDelay != 0;
|
||||||
|
final originTime = DateTime.tryParse(json['leg_origin_time'] ?? '');
|
||||||
|
final destinationTime =
|
||||||
|
DateTime.tryParse(json['leg_destination_time'] ?? '');
|
||||||
|
final hasOriginTime = originTime != null;
|
||||||
|
final hasDestinationTime = destinationTime != null;
|
||||||
|
|
||||||
_restoringDraft = true;
|
_restoringDraft = true;
|
||||||
setState(() {
|
setState(() {
|
||||||
@@ -270,6 +459,16 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
_selectedTripId = tripId == null || tripId == 0 ? null : tripId;
|
_selectedTripId = tripId == null || tripId == 0 ? null : tripId;
|
||||||
_selectedDate = beginTime;
|
_selectedDate = beginTime;
|
||||||
_selectedTime = TimeOfDay.fromDateTime(beginTime);
|
_selectedTime = TimeOfDay.fromDateTime(beginTime);
|
||||||
|
_selectedEndDate = endTime ?? beginTime;
|
||||||
|
_selectedEndTime = TimeOfDay.fromDateTime(endTime ?? beginTime);
|
||||||
|
_hasEndTime = hasEndTime;
|
||||||
|
_selectedOriginDate = originTime ?? beginTime;
|
||||||
|
_selectedOriginTime = TimeOfDay.fromDateTime(originTime ?? beginTime);
|
||||||
|
_selectedDestinationDate = destinationTime ?? endTime ?? beginTime;
|
||||||
|
_selectedDestinationTime =
|
||||||
|
TimeOfDay.fromDateTime(destinationTime ?? endTime ?? beginTime);
|
||||||
|
_hasOriginTime = hasOriginTime;
|
||||||
|
_hasDestinationTime = hasDestinationTime;
|
||||||
_useManualMileage = useManual;
|
_useManualMileage = useManual;
|
||||||
_routeResult = routeResult;
|
_routeResult = routeResult;
|
||||||
_startController.text = json['leg_start'] ?? '';
|
_startController.text = json['leg_start'] ?? '';
|
||||||
@@ -279,6 +478,10 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
_notesController.text = json['leg_notes'] ?? '';
|
_notesController.text = json['leg_notes'] ?? '';
|
||||||
_networkController.text = (json['leg_network'] as String? ?? '')
|
_networkController.text = (json['leg_network'] as String? ?? '')
|
||||||
.toUpperCase();
|
.toUpperCase();
|
||||||
|
_originController.text = origin;
|
||||||
|
_destinationController.text = destination;
|
||||||
|
_beginDelayController.text = beginDelay.toString();
|
||||||
|
_endDelayController.text = endDelay.toString();
|
||||||
_mileageController.text = mileageVal == 0
|
_mileageController.text = mileageVal == 0
|
||||||
? ''
|
? ''
|
||||||
: mileageVal.toStringAsFixed(2);
|
: mileageVal.toStringAsFixed(2);
|
||||||
@@ -357,6 +560,161 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
_selectedTime.minute,
|
_selectedTime.minute,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
DateTime? get _legEndDateTime {
|
||||||
|
if (!_hasEndTime) return null;
|
||||||
|
return DateTime(
|
||||||
|
_selectedEndDate.year,
|
||||||
|
_selectedEndDate.month,
|
||||||
|
_selectedEndDate.day,
|
||||||
|
_selectedEndTime.hour,
|
||||||
|
_selectedEndTime.minute,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
DateTime? get _originDateTime {
|
||||||
|
if (!_hasOriginTime) return null;
|
||||||
|
return DateTime(
|
||||||
|
_selectedOriginDate.year,
|
||||||
|
_selectedOriginDate.month,
|
||||||
|
_selectedOriginDate.day,
|
||||||
|
_selectedOriginTime.hour,
|
||||||
|
_selectedOriginTime.minute,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
DateTime? get _destinationDateTime {
|
||||||
|
if (!_hasDestinationTime) return null;
|
||||||
|
return DateTime(
|
||||||
|
_selectedDestinationDate.year,
|
||||||
|
_selectedDestinationDate.month,
|
||||||
|
_selectedDestinationDate.day,
|
||||||
|
_selectedDestinationTime.hour,
|
||||||
|
_selectedDestinationTime.minute,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
int _parseDelayMinutes(String value) {
|
||||||
|
final trimmed = value.trim();
|
||||||
|
final parsed = int.tryParse(trimmed);
|
||||||
|
return parsed ?? 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
String _derivedStartLocation() {
|
||||||
|
if (_useManualMileage) return _startController.text.trim();
|
||||||
|
final routeStations = _routeResult?.calculatedRoute ?? [];
|
||||||
|
if (routeStations.isNotEmpty) return routeStations.first;
|
||||||
|
return _startController.text.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
String _derivedEndLocation() {
|
||||||
|
if (_useManualMileage) return _endController.text.trim();
|
||||||
|
final routeStations = _routeResult?.calculatedRoute ?? [];
|
||||||
|
if (routeStations.isNotEmpty) return routeStations.last;
|
||||||
|
return _endController.text.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _applyMatchSelections() {
|
||||||
|
if (!mounted) return;
|
||||||
|
if (!(_matchOriginToEntry || _matchDestinationToEntry)) return;
|
||||||
|
setState(() {
|
||||||
|
if (_matchOriginToEntry) {
|
||||||
|
final startVal = _derivedStartLocation();
|
||||||
|
if (_originController.text != startVal) {
|
||||||
|
_originController.text = startVal;
|
||||||
|
}
|
||||||
|
if (_hasOriginTime) {
|
||||||
|
final startTime = _legDateTime;
|
||||||
|
_selectedOriginDate = DateTime(
|
||||||
|
startTime.year,
|
||||||
|
startTime.month,
|
||||||
|
startTime.day,
|
||||||
|
);
|
||||||
|
_selectedOriginTime = TimeOfDay.fromDateTime(startTime);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (_matchDestinationToEntry) {
|
||||||
|
final endVal = _derivedEndLocation();
|
||||||
|
if (_destinationController.text != endVal) {
|
||||||
|
_destinationController.text = endVal;
|
||||||
|
}
|
||||||
|
if (_hasDestinationTime) {
|
||||||
|
final endTime = _legEndDateTime ?? _legDateTime;
|
||||||
|
_selectedDestinationDate = DateTime(
|
||||||
|
endTime.year,
|
||||||
|
endTime.month,
|
||||||
|
endTime.day,
|
||||||
|
);
|
||||||
|
_selectedDestinationTime = TimeOfDay.fromDateTime(endTime);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool _matchUpdateScheduled = false;
|
||||||
|
|
||||||
|
void _scheduleMatchUpdate() {
|
||||||
|
if (!(_matchOriginToEntry || _matchDestinationToEntry)) return;
|
||||||
|
if (_matchUpdateScheduled) return;
|
||||||
|
_matchUpdateScheduled = true;
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
_matchUpdateScheduled = false;
|
||||||
|
_applyMatchSelections();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _trainLocationBlock({
|
||||||
|
required String label,
|
||||||
|
required TextEditingController controller,
|
||||||
|
required bool hasTime,
|
||||||
|
required ValueChanged<bool?>? onTimeChanged,
|
||||||
|
required String matchLabel,
|
||||||
|
required bool matchValue,
|
||||||
|
required ValueChanged<bool?>? onMatchChanged,
|
||||||
|
required Widget Function() pickerBuilder,
|
||||||
|
}) {
|
||||||
|
final matchInfo = matchValue
|
||||||
|
? Text(
|
||||||
|
'$label set to entry ${label == 'Origin' ? 'start' : 'end'}',
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
)
|
||||||
|
: null;
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
CheckboxListTile(
|
||||||
|
value: matchValue,
|
||||||
|
onChanged: onMatchChanged,
|
||||||
|
dense: true,
|
||||||
|
contentPadding: EdgeInsets.zero,
|
||||||
|
controlAffinity: ListTileControlAffinity.leading,
|
||||||
|
title: Text(matchLabel),
|
||||||
|
),
|
||||||
|
if (matchInfo != null) ...[
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 12.0, bottom: 4),
|
||||||
|
child: matchInfo,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
if (!matchValue) ...[
|
||||||
|
_stationField(
|
||||||
|
label: label,
|
||||||
|
controller: controller,
|
||||||
|
),
|
||||||
|
CheckboxListTile(
|
||||||
|
value: hasTime,
|
||||||
|
onChanged: onTimeChanged,
|
||||||
|
dense: true,
|
||||||
|
contentPadding: EdgeInsets.zero,
|
||||||
|
controlAffinity: ListTileControlAffinity.leading,
|
||||||
|
title: Text('Add $label time'),
|
||||||
|
),
|
||||||
|
if (hasTime) pickerBuilder(),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
Widget body;
|
Widget body;
|
||||||
@@ -376,7 +734,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
final balancePanels = twoCol && tractionEmpty && mileageEmpty;
|
final balancePanels = twoCol && tractionEmpty && mileageEmpty;
|
||||||
final balancedHeight = balancePanels ? 165.0 : null;
|
final balancedHeight = balancePanels ? 165.0 : null;
|
||||||
|
|
||||||
final detailPanel = _section('Details', [
|
final entryPanel = _section('Entry', [
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
TextButton.icon(
|
TextButton.icon(
|
||||||
@@ -424,31 +782,46 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
_buildTripSelector(context),
|
_buildTripSelector(context),
|
||||||
|
_dateTimeGroup(
|
||||||
|
context,
|
||||||
|
title: 'Departure time',
|
||||||
|
onDateTap: _pickDate,
|
||||||
|
onTimeTap: _pickTime,
|
||||||
|
selectedDate: _selectedDate,
|
||||||
|
selectedTime: _selectedTime,
|
||||||
|
delayController: _beginDelayController,
|
||||||
|
singleColumn: isMobile,
|
||||||
|
),
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Checkbox(
|
||||||
child: OutlinedButton.icon(
|
value: _hasEndTime,
|
||||||
onPressed: _pickDate,
|
onChanged: _submitting ? null : _toggleEndTime,
|
||||||
icon: const Icon(Icons.calendar_today),
|
|
||||||
label: Text(DateFormat.yMMMd().format(_selectedDate)),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(width: 12),
|
|
||||||
Expanded(
|
|
||||||
child: OutlinedButton.icon(
|
|
||||||
onPressed: _pickTime,
|
|
||||||
icon: const Icon(Icons.schedule),
|
|
||||||
label: Text(_selectedTime.format(context)),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
|
const Text('Add arrival time'),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
if (_hasEndTime)
|
||||||
|
_dateTimeGroup(
|
||||||
|
context,
|
||||||
|
title: 'Arrival time',
|
||||||
|
onDateTap: _pickEndDate,
|
||||||
|
onTimeTap: _pickEndTime,
|
||||||
|
selectedDate: _selectedEndDate,
|
||||||
|
selectedTime: _selectedEndTime,
|
||||||
|
delayController: _endDelayController,
|
||||||
|
singleColumn: isMobile,
|
||||||
|
),
|
||||||
if (_useManualMileage)
|
if (_useManualMileage)
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: TextFormField(
|
child: TextFormField(
|
||||||
controller: _startController,
|
controller: _startController,
|
||||||
|
onChanged: (_) {
|
||||||
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
},
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
labelText: 'From',
|
labelText: 'From',
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
@@ -462,6 +835,10 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
Expanded(
|
Expanded(
|
||||||
child: TextFormField(
|
child: TextFormField(
|
||||||
controller: _endController,
|
controller: _endController,
|
||||||
|
onChanged: (_) {
|
||||||
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
|
},
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
labelText: 'To',
|
labelText: 'To',
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
@@ -473,6 +850,9 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
]);
|
||||||
|
|
||||||
|
final trainPanel = _section('Train', [
|
||||||
TextFormField(
|
TextFormField(
|
||||||
controller: _headcodeController,
|
controller: _headcodeController,
|
||||||
textCapitalization: TextCapitalization.characters,
|
textCapitalization: TextCapitalization.characters,
|
||||||
@@ -482,6 +862,43 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
_trainLocationBlock(
|
||||||
|
label: 'Origin',
|
||||||
|
controller: _originController,
|
||||||
|
hasTime: _hasOriginTime,
|
||||||
|
onTimeChanged: _submitting ? null : _toggleOriginTime,
|
||||||
|
matchLabel: 'Match entry start',
|
||||||
|
matchValue: _matchOriginToEntry,
|
||||||
|
onMatchChanged: _submitting ? null : _toggleMatchOrigin,
|
||||||
|
pickerBuilder: () => _dateTimeGroupSimple(
|
||||||
|
context,
|
||||||
|
title: 'Origin departure',
|
||||||
|
onDateTap: _pickOriginDate,
|
||||||
|
onTimeTap: _pickOriginTime,
|
||||||
|
selectedDate: _selectedOriginDate,
|
||||||
|
selectedTime: _selectedOriginTime,
|
||||||
|
singleColumn: true,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
_trainLocationBlock(
|
||||||
|
label: 'Destination',
|
||||||
|
controller: _destinationController,
|
||||||
|
hasTime: _hasDestinationTime,
|
||||||
|
onTimeChanged: _submitting ? null : _toggleDestinationTime,
|
||||||
|
matchLabel: 'Match entry end',
|
||||||
|
matchValue: _matchDestinationToEntry,
|
||||||
|
onMatchChanged:
|
||||||
|
_submitting ? null : _toggleMatchDestination,
|
||||||
|
pickerBuilder: () => _dateTimeGroupSimple(
|
||||||
|
context,
|
||||||
|
title: 'Destination arrival',
|
||||||
|
onDateTap: _pickDestinationDate,
|
||||||
|
onTimeTap: _pickDestinationTime,
|
||||||
|
selectedDate: _selectedDestinationDate,
|
||||||
|
selectedTime: _selectedDestinationTime,
|
||||||
|
singleColumn: true,
|
||||||
|
),
|
||||||
|
),
|
||||||
TextFormField(
|
TextFormField(
|
||||||
controller: _networkController,
|
controller: _networkController,
|
||||||
textCapitalization: TextCapitalization.characters,
|
textCapitalization: TextCapitalization.characters,
|
||||||
@@ -519,14 +936,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
if (!_useManualMileage)
|
if (!_useManualMileage)
|
||||||
Align(
|
Align(
|
||||||
alignment: Alignment.centerLeft,
|
alignment: Alignment.centerLeft,
|
||||||
child: TextButton.icon(
|
child: ElevatedButton.icon(
|
||||||
style: TextButton.styleFrom(
|
|
||||||
padding: const EdgeInsets.symmetric(
|
|
||||||
horizontal: 10,
|
|
||||||
vertical: 6,
|
|
||||||
),
|
|
||||||
minimumSize: const Size(0, 32),
|
|
||||||
),
|
|
||||||
onPressed: _openCalculator,
|
onPressed: _openCalculator,
|
||||||
icon: const Icon(Icons.calculate, size: 18),
|
icon: const Icon(Icons.calculate, size: 18),
|
||||||
label: const Text('Open mileage calculator'),
|
label: const Text('Open mileage calculator'),
|
||||||
@@ -565,6 +975,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
onSelected: (val) {
|
onSelected: (val) {
|
||||||
setState(() => _useManualMileage = val);
|
setState(() => _useManualMileage = val);
|
||||||
_saveDraft();
|
_saveDraft();
|
||||||
|
_scheduleMatchUpdate();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
minHeight: balancedHeight,
|
minHeight: balancedHeight,
|
||||||
@@ -575,7 +986,9 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
detailPanel,
|
entryPanel,
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
trainPanel,
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
twoCol
|
twoCol
|
||||||
? Row(
|
? Row(
|
||||||
@@ -736,6 +1149,150 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _delayField(
|
||||||
|
TextEditingController controller, {
|
||||||
|
required String label,
|
||||||
|
bool expand = false,
|
||||||
|
}) {
|
||||||
|
final field = TextFormField(
|
||||||
|
controller: controller,
|
||||||
|
keyboardType: const TextInputType.numberWithOptions(signed: true),
|
||||||
|
inputFormatters: [FilteringTextInputFormatter.allow(RegExp(r'-?\d*'))],
|
||||||
|
decoration: InputDecoration(
|
||||||
|
labelText: label,
|
||||||
|
border: const OutlineInputBorder(),
|
||||||
|
suffixText: 'min',
|
||||||
|
),
|
||||||
|
textAlign: TextAlign.right,
|
||||||
|
onChanged: (_) => _saveDraft(),
|
||||||
|
);
|
||||||
|
if (expand) return field;
|
||||||
|
return SizedBox(width: 150, child: field);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _stationField({
|
||||||
|
required String label,
|
||||||
|
required TextEditingController controller,
|
||||||
|
}) {
|
||||||
|
final stationNames = _stations
|
||||||
|
.map((s) => s.name.trim())
|
||||||
|
.where((name) => name.isNotEmpty)
|
||||||
|
.toSet()
|
||||||
|
.toList();
|
||||||
|
if (stationNames.isEmpty) {
|
||||||
|
return TextFormField(
|
||||||
|
controller: controller,
|
||||||
|
textCapitalization: TextCapitalization.words,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
labelText: label,
|
||||||
|
border: const OutlineInputBorder(),
|
||||||
|
suffixIcon: _loadingStations
|
||||||
|
? const SizedBox(
|
||||||
|
width: 20,
|
||||||
|
height: 20,
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.all(4.0),
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.search),
|
||||||
|
),
|
||||||
|
onChanged: (_) => _saveDraft(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Iterable<String> optionsBuilder(TextEditingValue value) {
|
||||||
|
final query = value.text.trim();
|
||||||
|
if (query.isEmpty) return const Iterable<String>.empty();
|
||||||
|
return _matchStations(query, stationNames);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Autocomplete<String>(
|
||||||
|
optionsBuilder: optionsBuilder,
|
||||||
|
onSelected: (selection) {
|
||||||
|
controller.text = selection;
|
||||||
|
_saveDraft();
|
||||||
|
},
|
||||||
|
fieldViewBuilder:
|
||||||
|
(context, textEditingController, focusNode, onFieldSubmitted) {
|
||||||
|
if (textEditingController.text != controller.text) {
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
if (!mounted) return;
|
||||||
|
if (textEditingController.text != controller.text) {
|
||||||
|
textEditingController.value = controller.value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return TextFormField(
|
||||||
|
controller: textEditingController,
|
||||||
|
focusNode: focusNode,
|
||||||
|
textCapitalization: TextCapitalization.words,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
labelText: label,
|
||||||
|
border: const OutlineInputBorder(),
|
||||||
|
suffixIcon: _loadingStations
|
||||||
|
? const SizedBox(
|
||||||
|
width: 20,
|
||||||
|
height: 20,
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.all(4.0),
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.search),
|
||||||
|
),
|
||||||
|
textInputAction: TextInputAction.done,
|
||||||
|
onChanged: (_) {
|
||||||
|
controller.value = textEditingController.value;
|
||||||
|
_saveDraft();
|
||||||
|
},
|
||||||
|
onFieldSubmitted: (_) {
|
||||||
|
final matches = _matchStations(
|
||||||
|
textEditingController.text,
|
||||||
|
stationNames,
|
||||||
|
).toList();
|
||||||
|
if (matches.isNotEmpty) {
|
||||||
|
final top = matches.first;
|
||||||
|
controller.text = top;
|
||||||
|
textEditingController.text = top;
|
||||||
|
_saveDraft();
|
||||||
|
}
|
||||||
|
focusNode.unfocus();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Iterable<String> _matchStations(String rawQuery, List<String> stationNames) {
|
||||||
|
final query = rawQuery.toLowerCase();
|
||||||
|
final best = <String>[];
|
||||||
|
for (final name in stationNames) {
|
||||||
|
if (!name.toLowerCase().contains(query)) continue;
|
||||||
|
_insertCandidate(best, name, max: 10);
|
||||||
|
}
|
||||||
|
return best;
|
||||||
|
}
|
||||||
|
|
||||||
|
void _insertCandidate(List<String> best, String candidate, {required int max}) {
|
||||||
|
final existingIndex = best.indexOf(candidate);
|
||||||
|
if (existingIndex >= 0) return;
|
||||||
|
|
||||||
|
int insertAt = 0;
|
||||||
|
while (insertAt < best.length &&
|
||||||
|
_candidateCompare(best[insertAt], candidate) <= 0) {
|
||||||
|
insertAt++;
|
||||||
|
}
|
||||||
|
best.insert(insertAt, candidate);
|
||||||
|
if (best.length > max) best.removeLast();
|
||||||
|
}
|
||||||
|
|
||||||
|
int _candidateCompare(String a, String b) {
|
||||||
|
final byLength = a.length.compareTo(b.length);
|
||||||
|
if (byLength != 0) return byLength;
|
||||||
|
return a.compareTo(b);
|
||||||
|
}
|
||||||
|
|
||||||
Widget _section(
|
Widget _section(
|
||||||
String title,
|
String title,
|
||||||
List<Widget> children, {
|
List<Widget> children, {
|
||||||
@@ -781,6 +1338,154 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
|
|
||||||
return card;
|
return card;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _dateTimeGroup(
|
||||||
|
BuildContext context, {
|
||||||
|
required String title,
|
||||||
|
required VoidCallback onDateTap,
|
||||||
|
required VoidCallback onTimeTap,
|
||||||
|
required DateTime selectedDate,
|
||||||
|
required TimeOfDay selectedTime,
|
||||||
|
required TextEditingController delayController,
|
||||||
|
bool singleColumn = false,
|
||||||
|
}) {
|
||||||
|
final headerStyle = Theme.of(context).textTheme.labelLarge;
|
||||||
|
final dateButton = OutlinedButton.icon(
|
||||||
|
onPressed: onDateTap,
|
||||||
|
icon: const Icon(Icons.calendar_today),
|
||||||
|
label: Text(DateFormat.yMMMd().format(selectedDate)),
|
||||||
|
);
|
||||||
|
final timeButton = OutlinedButton.icon(
|
||||||
|
onPressed: onTimeTap,
|
||||||
|
icon: const Icon(Icons.schedule),
|
||||||
|
label: Text(selectedTime.format(context)),
|
||||||
|
);
|
||||||
|
final delayField = _delayField(
|
||||||
|
delayController,
|
||||||
|
label: 'Delay',
|
||||||
|
expand: singleColumn,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (singleColumn) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(title, style: headerStyle),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
SizedBox(width: double.infinity, child: dateButton),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
SizedBox(width: double.infinity, child: timeButton),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
SizedBox(width: double.infinity, child: delayField),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(title, style: headerStyle),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(child: dateButton),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Expanded(child: timeButton),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
delayField,
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _dateTimeGroupSimple(
|
||||||
|
BuildContext context, {
|
||||||
|
required String title,
|
||||||
|
required VoidCallback onDateTap,
|
||||||
|
required VoidCallback onTimeTap,
|
||||||
|
required DateTime selectedDate,
|
||||||
|
required TimeOfDay selectedTime,
|
||||||
|
bool singleColumn = true,
|
||||||
|
}) {
|
||||||
|
final headerStyle = Theme.of(context).textTheme.labelLarge;
|
||||||
|
final dateButton = OutlinedButton.icon(
|
||||||
|
onPressed: onDateTap,
|
||||||
|
icon: const Icon(Icons.calendar_today),
|
||||||
|
label: Text(DateFormat.yMMMd().format(selectedDate)),
|
||||||
|
);
|
||||||
|
final timeButton = OutlinedButton.icon(
|
||||||
|
onPressed: onTimeTap,
|
||||||
|
icon: const Icon(Icons.schedule),
|
||||||
|
label: Text(selectedTime.format(context)),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (singleColumn) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(title, style: headerStyle),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
SizedBox(width: double.infinity, child: dateButton),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
SizedBox(width: double.infinity, child: timeButton),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(title, style: headerStyle),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(child: dateButton),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Expanded(child: timeButton),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _timeToggleBlock({
|
||||||
|
required String label,
|
||||||
|
required bool value,
|
||||||
|
required ValueChanged<bool?>? onChanged,
|
||||||
|
required String matchLabel,
|
||||||
|
required bool matchValue,
|
||||||
|
required ValueChanged<bool?>? onMatchChanged,
|
||||||
|
required bool showMatch,
|
||||||
|
Widget? picker,
|
||||||
|
}) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
CheckboxListTile(
|
||||||
|
value: value,
|
||||||
|
onChanged: onChanged,
|
||||||
|
dense: true,
|
||||||
|
contentPadding: EdgeInsets.zero,
|
||||||
|
controlAffinity: ListTileControlAffinity.leading,
|
||||||
|
title: Text(label),
|
||||||
|
),
|
||||||
|
if (showMatch)
|
||||||
|
CheckboxListTile(
|
||||||
|
value: matchValue,
|
||||||
|
onChanged: onMatchChanged,
|
||||||
|
dense: true,
|
||||||
|
contentPadding: const EdgeInsets.only(left: 12),
|
||||||
|
controlAffinity: ListTileControlAffinity.leading,
|
||||||
|
title: Text(matchLabel),
|
||||||
|
),
|
||||||
|
if (picker != null) ...[
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
picker,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class _UpperCaseTextFormatter extends TextInputFormatter {
|
class _UpperCaseTextFormatter extends TextInputFormatter {
|
||||||
|
|||||||
@@ -62,6 +62,12 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
? double.tryParse(_mileageController.text.trim()) ?? 0
|
? double.tryParse(_mileageController.text.trim()) ?? 0
|
||||||
: (_routeResult?.distance ?? 0);
|
: (_routeResult?.distance ?? 0);
|
||||||
final tractionPayload = _buildTractionPayload();
|
final tractionPayload = _buildTractionPayload();
|
||||||
|
final endTime = _legEndDateTime;
|
||||||
|
final originTime = _originDateTime;
|
||||||
|
final destinationTime = _destinationDateTime;
|
||||||
|
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelay =
|
||||||
|
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||||
final snapshot = _buildSubmissionSnapshot(
|
final snapshot = _buildSubmissionSnapshot(
|
||||||
routeStations: routeStations,
|
routeStations: routeStations,
|
||||||
startVal: startVal,
|
startVal: startVal,
|
||||||
@@ -82,19 +88,31 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
final isEditingExisting = _isEditing && widget.editLegId != null;
|
final isEditingExisting = _isEditing && widget.editLegId != null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
final commonPayload = {
|
||||||
|
if (isEditingExisting) "leg_id": widget.editLegId,
|
||||||
|
"leg_trip": _selectedTripId,
|
||||||
|
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||||
|
if (endTime != null) "leg_end_time": endTime.toIso8601String(),
|
||||||
|
if (originTime != null)
|
||||||
|
"leg_origin_time": originTime.toIso8601String(),
|
||||||
|
if (destinationTime != null)
|
||||||
|
"leg_destination_time": destinationTime.toIso8601String(),
|
||||||
|
"leg_notes": _notesController.text.trim(),
|
||||||
|
"leg_headcode": _headcodeController.text.trim(),
|
||||||
|
"leg_network": _networkController.text.trim(),
|
||||||
|
"leg_origin": _originController.text.trim(),
|
||||||
|
"leg_destination": _destinationController.text.trim(),
|
||||||
|
"leg_begin_delay": beginDelay,
|
||||||
|
if (_hasEndTime) "leg_end_delay": endDelay,
|
||||||
|
"locos": tractionPayload,
|
||||||
|
};
|
||||||
if (_useManualMileage) {
|
if (_useManualMileage) {
|
||||||
final body = {
|
final body = {
|
||||||
if (isEditingExisting) "leg_id": widget.editLegId,
|
...commonPayload,
|
||||||
"leg_trip": _selectedTripId,
|
|
||||||
"leg_start": startVal,
|
"leg_start": startVal,
|
||||||
"leg_end": endVal,
|
"leg_end": endVal,
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"leg_distance": mileageVal,
|
"leg_distance": mileageVal,
|
||||||
"isKilometers": false,
|
"isKilometers": false,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
};
|
};
|
||||||
if (isEditingExisting) {
|
if (isEditingExisting) {
|
||||||
await api.put('/update', body);
|
await api.put('/update', body);
|
||||||
@@ -103,14 +121,8 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
final body = {
|
final body = {
|
||||||
if (isEditingExisting) "leg_id": widget.editLegId,
|
...commonPayload,
|
||||||
"leg_trip": _selectedTripId,
|
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_route": routeStations,
|
"leg_route": routeStations,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
};
|
};
|
||||||
if (isEditingExisting) {
|
if (isEditingExisting) {
|
||||||
await api.put('/update', body);
|
await api.put('/update', body);
|
||||||
@@ -120,6 +132,7 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
dataService.refreshLegs();
|
dataService.refreshLegs();
|
||||||
|
await dataService.fetchNotifications();
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
messenger?.showSnackBar(
|
messenger?.showSnackBar(
|
||||||
SnackBar(
|
SnackBar(
|
||||||
@@ -147,18 +160,31 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
required double mileageVal,
|
required double mileageVal,
|
||||||
required List<Map<String, dynamic>> tractionPayload,
|
required List<Map<String, dynamic>> tractionPayload,
|
||||||
}) {
|
}) {
|
||||||
|
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelay =
|
||||||
|
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||||
return {
|
return {
|
||||||
"legId": widget.editLegId,
|
"legId": widget.editLegId,
|
||||||
"useManualMileage": _useManualMileage,
|
"useManualMileage": _useManualMileage,
|
||||||
"tripId": _selectedTripId,
|
"tripId": _selectedTripId,
|
||||||
"legDateTime": _legDateTime.toIso8601String(),
|
"legDateTime": _legDateTime.toIso8601String(),
|
||||||
|
"legEndTime": _legEndDateTime?.toIso8601String(),
|
||||||
|
"hasEndTime": _hasEndTime,
|
||||||
|
"legOriginTime": _originDateTime?.toIso8601String(),
|
||||||
|
"hasOriginTime": _hasOriginTime,
|
||||||
|
"legDestinationTime": _destinationDateTime?.toIso8601String(),
|
||||||
|
"hasDestinationTime": _hasDestinationTime,
|
||||||
"start": startVal,
|
"start": startVal,
|
||||||
"end": endVal,
|
"end": endVal,
|
||||||
|
"origin": _originController.text.trim(),
|
||||||
|
"destination": _destinationController.text.trim(),
|
||||||
"routeStations": routeStations,
|
"routeStations": routeStations,
|
||||||
"mileage": mileageVal,
|
"mileage": mileageVal,
|
||||||
"network": _networkController.text.trim(),
|
"network": _networkController.text.trim(),
|
||||||
"notes": _notesController.text.trim(),
|
"notes": _notesController.text.trim(),
|
||||||
"headcode": _headcodeController.text.trim(),
|
"headcode": _headcodeController.text.trim(),
|
||||||
|
"beginDelay": beginDelay,
|
||||||
|
"endDelay": endDelay,
|
||||||
"locos": tractionPayload,
|
"locos": tractionPayload,
|
||||||
"routeResult": _routeResult == null
|
"routeResult": _routeResult == null
|
||||||
? null
|
? null
|
||||||
@@ -201,11 +227,27 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
_notesController.clear();
|
_notesController.clear();
|
||||||
_mileageController.clear();
|
_mileageController.clear();
|
||||||
_networkController.clear();
|
_networkController.clear();
|
||||||
|
_originController.clear();
|
||||||
|
_destinationController.clear();
|
||||||
|
_beginDelayController.text = '0';
|
||||||
|
_endDelayController.text = '0';
|
||||||
final now = DateTime.now();
|
final now = DateTime.now();
|
||||||
_setState(() {
|
_setState(() {
|
||||||
_selectedDate = now;
|
_selectedDate = now;
|
||||||
_selectedTime = TimeOfDay.fromDateTime(now);
|
_selectedTime = TimeOfDay.fromDateTime(now);
|
||||||
|
_selectedEndDate = now;
|
||||||
|
_selectedEndTime = TimeOfDay.fromDateTime(now);
|
||||||
|
_selectedOriginDate = now;
|
||||||
|
_selectedOriginTime = TimeOfDay.fromDateTime(now);
|
||||||
|
_selectedDestinationDate = now;
|
||||||
|
_selectedDestinationTime = TimeOfDay.fromDateTime(now);
|
||||||
_useManualMileage = false;
|
_useManualMileage = false;
|
||||||
|
_hasEndTime = false;
|
||||||
|
_hasOriginTime = false;
|
||||||
|
_hasDestinationTime = false;
|
||||||
|
_matchOriginToEntry = false;
|
||||||
|
_matchDestinationToEntry = false;
|
||||||
|
_matchUpdateScheduled = false;
|
||||||
_routeResult = null;
|
_routeResult = null;
|
||||||
_tractionItems
|
_tractionItems
|
||||||
..clear()
|
..clear()
|
||||||
|
|||||||
705
lib/components/pages/profile.dart
Normal file
705
lib/components/pages/profile.dart
Normal file
@@ -0,0 +1,705 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
class ProfilePage extends StatefulWidget {
|
||||||
|
const ProfilePage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<ProfilePage> createState() => _ProfilePageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ProfilePageState extends State<ProfilePage> {
|
||||||
|
bool _initialised = false;
|
||||||
|
final Map<String, bool> _groupExpanded = {};
|
||||||
|
bool _loadingAwards = false;
|
||||||
|
bool _loadingClassProgress = false;
|
||||||
|
bool _loadingLocoProgress = false;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void didChangeDependencies() {
|
||||||
|
super.didChangeDependencies();
|
||||||
|
if (_initialised) return;
|
||||||
|
_initialised = true;
|
||||||
|
_refreshAwards();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _refreshAwards() {
|
||||||
|
_loadingAwards = false;
|
||||||
|
_loadingClassProgress = false;
|
||||||
|
_loadingLocoProgress = false;
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
return Future.wait([
|
||||||
|
data.fetchBadgeAwards(limit: 20, badgeCode: 'class_clearance'),
|
||||||
|
data.fetchClassClearanceProgress(),
|
||||||
|
data.fetchLocoClearanceProgress(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final data = context.watch<DataService>();
|
||||||
|
final awards = data.badgeAwards;
|
||||||
|
final loading = data.isBadgeAwardsLoading;
|
||||||
|
final classProgress = data.classClearanceProgress;
|
||||||
|
final classProgressLoading =
|
||||||
|
data.isClassClearanceProgressLoading || _loadingClassProgress;
|
||||||
|
final locoProgress = data.locoClearanceProgress;
|
||||||
|
final locoProgressLoading =
|
||||||
|
data.isLocoClearanceProgressLoading || _loadingLocoProgress;
|
||||||
|
final hasAnyData =
|
||||||
|
awards.isNotEmpty || classProgress.isNotEmpty || locoProgress.isNotEmpty;
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('Badges'),
|
||||||
|
leading: IconButton(
|
||||||
|
icon: const Icon(Icons.arrow_back),
|
||||||
|
onPressed: () {
|
||||||
|
final navigator = Navigator.of(context);
|
||||||
|
if (navigator.canPop()) {
|
||||||
|
navigator.pop();
|
||||||
|
} else {
|
||||||
|
context.go('/');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
body: RefreshIndicator(
|
||||||
|
onRefresh: _refreshAwards,
|
||||||
|
child: ListView(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
children: [
|
||||||
|
if ((loading || classProgressLoading || locoProgressLoading) &&
|
||||||
|
!hasAnyData)
|
||||||
|
const Center(
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 24.0),
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
else if (!hasAnyData)
|
||||||
|
const Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 12.0),
|
||||||
|
child: Text('No badges awarded yet.'),
|
||||||
|
)
|
||||||
|
else
|
||||||
|
..._buildGroupedAwards(
|
||||||
|
context,
|
||||||
|
awards,
|
||||||
|
classProgress,
|
||||||
|
locoProgress,
|
||||||
|
classProgressLoading,
|
||||||
|
locoProgressLoading,
|
||||||
|
data.classClearanceHasMore,
|
||||||
|
data.locoClearanceHasMore,
|
||||||
|
data.badgeAwardsHasMore,
|
||||||
|
loading,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildGroupedAwards(
|
||||||
|
BuildContext context,
|
||||||
|
List<BadgeAward> awards,
|
||||||
|
List<ClassClearanceProgress> classProgress,
|
||||||
|
List<LocoClearanceProgress> locoProgress,
|
||||||
|
bool classProgressLoading,
|
||||||
|
bool locoProgressLoading,
|
||||||
|
bool classProgressHasMore,
|
||||||
|
bool locoProgressHasMore,
|
||||||
|
bool badgeAwardsHasMore,
|
||||||
|
bool badgeAwardsLoading,
|
||||||
|
) {
|
||||||
|
final grouped = _groupAwards(awards);
|
||||||
|
if ((classProgress.isNotEmpty || classProgressLoading) &&
|
||||||
|
!grouped.containsKey('class_clearance')) {
|
||||||
|
grouped['class_clearance'] = [];
|
||||||
|
}
|
||||||
|
if ((locoProgress.isNotEmpty || locoProgressLoading) &&
|
||||||
|
!grouped.containsKey('loco_clearance')) {
|
||||||
|
grouped['loco_clearance'] = [];
|
||||||
|
}
|
||||||
|
final codes = _orderedBadgeCodes(grouped.keys.toList());
|
||||||
|
|
||||||
|
return codes.map((code) {
|
||||||
|
final items = grouped[code]!;
|
||||||
|
final expanded = _groupExpanded[code] ?? true;
|
||||||
|
final title = _formatBadgeName(code);
|
||||||
|
final isClass = code == 'class_clearance';
|
||||||
|
final isLoco = code == 'loco_clearance';
|
||||||
|
final classItems = isClass ? classProgress : <ClassClearanceProgress>[];
|
||||||
|
final locoItems = isLoco ? locoProgress : <LocoClearanceProgress>[];
|
||||||
|
final awardCount = isLoco
|
||||||
|
? locoItems.where((item) => item.awardedTiers.isNotEmpty).length
|
||||||
|
: items.length;
|
||||||
|
final isLoadingSection = isClass
|
||||||
|
? (classProgressLoading || badgeAwardsLoading || _loadingAwards)
|
||||||
|
: (isLoco ? locoProgressLoading : false);
|
||||||
|
|
||||||
|
final children = <Widget>[];
|
||||||
|
|
||||||
|
if (isClass && items.isNotEmpty) {
|
||||||
|
children.add(_buildSubheading(context, 'Awarded'));
|
||||||
|
children.addAll(
|
||||||
|
items.map(
|
||||||
|
(award) => Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.symmetric(horizontal: 12.0, vertical: 4.0),
|
||||||
|
child: _buildAwardCard(context, award, compact: true),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
if (badgeAwardsHasMore || badgeAwardsLoading || _loadingAwards) {
|
||||||
|
children.add(
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 4.0, bottom: 8.0),
|
||||||
|
child: _buildLoadMoreButton(
|
||||||
|
context,
|
||||||
|
badgeAwardsLoading || _loadingAwards,
|
||||||
|
() => _loadMoreAwards(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else if (!isClass && !isLoco && items.isNotEmpty) {
|
||||||
|
children.add(_buildSubheading(context, 'Awarded'));
|
||||||
|
children.addAll(
|
||||||
|
items.map(
|
||||||
|
(award) => Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.symmetric(horizontal: 12.0, vertical: 4.0),
|
||||||
|
child: _buildAwardCard(context, award, compact: true),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isClass) {
|
||||||
|
children.addAll(
|
||||||
|
_buildClassProgressSection(
|
||||||
|
context,
|
||||||
|
classItems,
|
||||||
|
classProgressLoading,
|
||||||
|
classProgressHasMore,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (isLoco) {
|
||||||
|
children.addAll(
|
||||||
|
_buildLocoProgressSection(
|
||||||
|
context,
|
||||||
|
locoItems,
|
||||||
|
locoProgressLoading,
|
||||||
|
locoProgressHasMore,
|
||||||
|
showHeading: false,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (children.isEmpty && !isLoadingSection) {
|
||||||
|
children.add(
|
||||||
|
const Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 6.0),
|
||||||
|
child: Text('No awards'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Card(
|
||||||
|
margin: const EdgeInsets.symmetric(vertical: 4.0),
|
||||||
|
child: ExpansionTile(
|
||||||
|
key: ValueKey(code),
|
||||||
|
tilePadding: const EdgeInsets.symmetric(horizontal: 12.0),
|
||||||
|
title: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(child: Text(title)),
|
||||||
|
if (isLoadingSection) ...[
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
const SizedBox(
|
||||||
|
height: 18,
|
||||||
|
width: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
_buildCountChip(context, awardCount),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
initiallyExpanded: expanded,
|
||||||
|
onExpansionChanged: (isOpen) {
|
||||||
|
setState(() => _groupExpanded[code] = isOpen);
|
||||||
|
},
|
||||||
|
children: children,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}).toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, List<BadgeAward>> _groupAwards(List<BadgeAward> awards) {
|
||||||
|
final Map<String, List<BadgeAward>> grouped = {};
|
||||||
|
for (final award in awards) {
|
||||||
|
final code = award.badgeCode.toLowerCase();
|
||||||
|
grouped.putIfAbsent(code, () => []).add(award);
|
||||||
|
}
|
||||||
|
return grouped;
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildAwardCard(
|
||||||
|
BuildContext context,
|
||||||
|
BadgeAward award, {
|
||||||
|
bool compact = false,
|
||||||
|
}) {
|
||||||
|
final badgeName = _formatBadgeName(award.badgeCode);
|
||||||
|
final tier = award.badgeTier.isNotEmpty
|
||||||
|
? award.badgeTier[0].toUpperCase() + award.badgeTier.substring(1)
|
||||||
|
: '';
|
||||||
|
final tierIcon = _buildTierIcon(award.badgeTier);
|
||||||
|
final scope = _scopeToShow(award);
|
||||||
|
|
||||||
|
final content = Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
if (tierIcon != null) ...[
|
||||||
|
tierIcon,
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
],
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
'$badgeName • $tier',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (award.awardedAt != null)
|
||||||
|
Text(
|
||||||
|
_formatAwardDate(award.awardedAt!),
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (scope != null && scope.isNotEmpty) ...[
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Text(
|
||||||
|
scope,
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
if (award.loco != null) ...[
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
_buildLocoInfo(context, award.loco!),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
|
||||||
|
if (compact) {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Card(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(10.0),
|
||||||
|
child: content,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildLocoInfo(BuildContext context, LocoSummary loco) {
|
||||||
|
final lines = <String>[];
|
||||||
|
final classNum = [
|
||||||
|
if (loco.locoClass.isNotEmpty) loco.locoClass,
|
||||||
|
if (loco.number.isNotEmpty) loco.number,
|
||||||
|
].join(' ');
|
||||||
|
if (classNum.isNotEmpty) lines.add(classNum);
|
||||||
|
if ((loco.name ?? '').isNotEmpty) lines.add(loco.name!);
|
||||||
|
if ((loco.livery ?? '').isNotEmpty) lines.add(loco.livery!);
|
||||||
|
if ((loco.location ?? '').isNotEmpty) lines.add(loco.location!);
|
||||||
|
|
||||||
|
return Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
const Icon(Icons.train, size: 20),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: lines.map((line) {
|
||||||
|
return Text(
|
||||||
|
line,
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatBadgeName(String code) {
|
||||||
|
if (code.isEmpty) return 'Badge';
|
||||||
|
const known = {
|
||||||
|
'class_clearance': 'Class Clearance',
|
||||||
|
'loco_clearance': 'Loco Clearance',
|
||||||
|
};
|
||||||
|
final lower = code.toLowerCase();
|
||||||
|
if (known.containsKey(lower)) return known[lower]!;
|
||||||
|
final parts = code.split(RegExp(r'[_\\s]+')).where((p) => p.isNotEmpty);
|
||||||
|
return parts
|
||||||
|
.map((p) => p[0].toUpperCase() + p.substring(1).toLowerCase())
|
||||||
|
.join(' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> _orderedBadgeCodes(List<String> codes) {
|
||||||
|
final lowerCodes = codes.map((c) => c.toLowerCase()).toSet();
|
||||||
|
final ordered = <String>[];
|
||||||
|
for (final code in ['loco_clearance', 'class_clearance']) {
|
||||||
|
if (lowerCodes.remove(code)) ordered.add(code);
|
||||||
|
}
|
||||||
|
final remaining = lowerCodes.toList()
|
||||||
|
..sort((a, b) => _formatBadgeName(a).compareTo(_formatBadgeName(b)));
|
||||||
|
ordered.addAll(remaining);
|
||||||
|
return ordered;
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildSubheading(BuildContext context, String label) {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(16, 8, 16, 4),
|
||||||
|
child: Text(
|
||||||
|
label,
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelMedium
|
||||||
|
?.copyWith(fontWeight: FontWeight.w700),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildClassProgressSection(
|
||||||
|
BuildContext context,
|
||||||
|
List<ClassClearanceProgress> progress,
|
||||||
|
bool isLoading,
|
||||||
|
bool hasMore,
|
||||||
|
) {
|
||||||
|
if (progress.isEmpty && !isLoading && !hasMore) return const [];
|
||||||
|
return [
|
||||||
|
_buildSubheading(context, 'In Progress'),
|
||||||
|
...progress.map(
|
||||||
|
(item) => Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 6.0),
|
||||||
|
child: _buildClassProgressCard(context, item),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (hasMore || isLoading)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 4.0, bottom: 8.0),
|
||||||
|
child: _buildLoadMoreButton(
|
||||||
|
context,
|
||||||
|
isLoading,
|
||||||
|
() => _loadMoreClassProgress(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (progress.isNotEmpty) const SizedBox(height: 4),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildLocoProgressSection(
|
||||||
|
BuildContext context,
|
||||||
|
List<LocoClearanceProgress> progress,
|
||||||
|
bool isLoading,
|
||||||
|
bool hasMore,
|
||||||
|
{bool showHeading = true}
|
||||||
|
) {
|
||||||
|
if (progress.isEmpty && !isLoading && !hasMore) return const [];
|
||||||
|
return [
|
||||||
|
if (showHeading) _buildSubheading(context, 'In Progress'),
|
||||||
|
if (progress.isEmpty && isLoading)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 12.0),
|
||||||
|
child: _buildLoadingIndicator(),
|
||||||
|
),
|
||||||
|
...progress.map(
|
||||||
|
(item) => Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 12.0, vertical: 6.0),
|
||||||
|
child: _buildLocoProgressCard(context, item),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (hasMore || isLoading)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 4.0, bottom: 8.0),
|
||||||
|
child: _buildLoadMoreButton(
|
||||||
|
context,
|
||||||
|
isLoading,
|
||||||
|
() => _loadMoreLocoProgress(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (progress.isNotEmpty) const SizedBox(height: 4),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildClassProgressCard(
|
||||||
|
BuildContext context,
|
||||||
|
ClassClearanceProgress progress,
|
||||||
|
) {
|
||||||
|
final pct = progress.percentComplete.clamp(0, 100);
|
||||||
|
return Card(
|
||||||
|
margin: const EdgeInsets.symmetric(vertical: 4.0),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
progress.className,
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'${pct.toStringAsFixed(0)}%',
|
||||||
|
style: Theme.of(context).textTheme.labelMedium,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
LinearProgressIndicator(
|
||||||
|
value: progress.total == 0 ? 0 : pct / 100,
|
||||||
|
minHeight: 6,
|
||||||
|
),
|
||||||
|
if (progress.total > 0)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 2.0),
|
||||||
|
child: Text(
|
||||||
|
'${progress.completed}/${progress.total}',
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelSmall
|
||||||
|
?.copyWith(color: Theme.of(context).hintColor),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildLocoProgressCard(
|
||||||
|
BuildContext context,
|
||||||
|
LocoClearanceProgress progress,
|
||||||
|
) {
|
||||||
|
final tierIcons = progress.awardedTiers
|
||||||
|
.map((tier) => _buildTierIcon(tier, size: 18))
|
||||||
|
.whereType<Widget>()
|
||||||
|
.toList();
|
||||||
|
final reachedTopTier = progress.nextTier.isEmpty;
|
||||||
|
final pct = progress.percent.clamp(0, 100);
|
||||||
|
final nextTier = progress.nextTier.isNotEmpty
|
||||||
|
? progress.nextTier[0].toUpperCase() + progress.nextTier.substring(1)
|
||||||
|
: 'Next';
|
||||||
|
final loco = progress.loco;
|
||||||
|
final title = [
|
||||||
|
if (loco.number.isNotEmpty) loco.number,
|
||||||
|
if (loco.locoClass.isNotEmpty) loco.locoClass,
|
||||||
|
].join(' • ');
|
||||||
|
return Card(
|
||||||
|
margin: const EdgeInsets.symmetric(vertical: 4.0),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(10.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
title.isNotEmpty ? title : 'Loco',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (tierIcons.isNotEmpty)
|
||||||
|
Row(
|
||||||
|
children: tierIcons
|
||||||
|
.expand((icon) sync* {
|
||||||
|
yield icon;
|
||||||
|
yield const SizedBox(width: 4);
|
||||||
|
})
|
||||||
|
.toList()
|
||||||
|
..removeLast(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if ((loco.name ?? '').isNotEmpty)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 2.0),
|
||||||
|
child: Text(
|
||||||
|
loco.name ?? '',
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (!reachedTopTier) ...[
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
LinearProgressIndicator(
|
||||||
|
value: progress.required == 0 ? 0 : pct / 100,
|
||||||
|
minHeight: 6,
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 2.0),
|
||||||
|
child: Text(
|
||||||
|
'${pct.toStringAsFixed(0)}% to $nextTier award',
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildLoadMoreButton(
|
||||||
|
BuildContext context,
|
||||||
|
bool isLoading,
|
||||||
|
Future<void> Function() onPressed,
|
||||||
|
) {
|
||||||
|
return Align(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: OutlinedButton.icon(
|
||||||
|
onPressed: isLoading
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
onPressed();
|
||||||
|
},
|
||||||
|
icon: isLoading
|
||||||
|
? const SizedBox(
|
||||||
|
height: 18,
|
||||||
|
width: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.expand_more),
|
||||||
|
label: Text(isLoading ? 'Loading...' : 'Load more'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildLoadingIndicator() {
|
||||||
|
return const Center(
|
||||||
|
child: SizedBox(
|
||||||
|
height: 24,
|
||||||
|
width: 24,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildCountChip(BuildContext context, int count) {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||||
|
borderRadius: BorderRadius.circular(999),
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
'$count',
|
||||||
|
style: Theme.of(context)
|
||||||
|
.textTheme
|
||||||
|
.labelMedium
|
||||||
|
?.copyWith(fontWeight: FontWeight.w700),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadMoreClassProgress() {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
if (data.isClassClearanceProgressLoading || _loadingClassProgress) {
|
||||||
|
return Future.value();
|
||||||
|
}
|
||||||
|
setState(() => _loadingClassProgress = true);
|
||||||
|
return data
|
||||||
|
.fetchClassClearanceProgress(
|
||||||
|
offset: data.classClearanceProgress.length,
|
||||||
|
append: true,
|
||||||
|
)
|
||||||
|
.whenComplete(() {
|
||||||
|
if (mounted) setState(() => _loadingClassProgress = false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadMoreLocoProgress() {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
if (data.isLocoClearanceProgressLoading || _loadingLocoProgress) {
|
||||||
|
return Future.value();
|
||||||
|
}
|
||||||
|
setState(() => _loadingLocoProgress = true);
|
||||||
|
return data
|
||||||
|
.fetchLocoClearanceProgress(
|
||||||
|
offset: data.locoClearanceProgress.length,
|
||||||
|
append: true,
|
||||||
|
)
|
||||||
|
.whenComplete(() {
|
||||||
|
if (mounted) setState(() => _loadingLocoProgress = false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadMoreAwards() {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
if (data.isBadgeAwardsLoading || _loadingAwards) return Future.value();
|
||||||
|
setState(() => _loadingAwards = true);
|
||||||
|
return data
|
||||||
|
.fetchBadgeAwards(
|
||||||
|
offset: data.badgeAwards.length,
|
||||||
|
append: true,
|
||||||
|
badgeCode: 'class_clearance',
|
||||||
|
limit: 20,
|
||||||
|
)
|
||||||
|
.whenComplete(() {
|
||||||
|
if (mounted) setState(() => _loadingAwards = false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatAwardDate(DateTime date) {
|
||||||
|
final y = date.year.toString().padLeft(4, '0');
|
||||||
|
final m = date.month.toString().padLeft(2, '0');
|
||||||
|
final d = date.day.toString().padLeft(2, '0');
|
||||||
|
return '$y-$m-$d';
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget? _buildTierIcon(String tier, {double size = 24}) {
|
||||||
|
final lower = tier.toLowerCase();
|
||||||
|
Color? color;
|
||||||
|
switch (lower) {
|
||||||
|
case 'bronze':
|
||||||
|
color = const Color(0xFFCD7F32);
|
||||||
|
break;
|
||||||
|
case 'silver':
|
||||||
|
color = const Color(0xFFC0C0C0);
|
||||||
|
break;
|
||||||
|
case 'gold':
|
||||||
|
color = const Color(0xFFFFD700);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (color == null) return null;
|
||||||
|
return Icon(Icons.emoji_events, color: color, size: size);
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _scopeToShow(BadgeAward award) {
|
||||||
|
final scope = award.scopeValue?.trim() ?? '';
|
||||||
|
if (scope.isEmpty) return null;
|
||||||
|
final code = award.badgeCode.toLowerCase();
|
||||||
|
if (code == 'loco_clearance') {
|
||||||
|
// Hide numeric loco IDs; loco details are shown separately.
|
||||||
|
if (int.tryParse(scope) != null) return null;
|
||||||
|
}
|
||||||
|
return scope;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,6 +3,8 @@ import 'dart:convert';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:http/http.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
|
import 'package:mileograph_flutter/services/api_service.dart';
|
||||||
import 'package:mileograph_flutter/services/endpoint_service.dart';
|
import 'package:mileograph_flutter/services/endpoint_service.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.dart';
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
@@ -17,16 +19,27 @@ class SettingsPage extends StatefulWidget {
|
|||||||
class _SettingsPageState extends State<SettingsPage> {
|
class _SettingsPageState extends State<SettingsPage> {
|
||||||
late final TextEditingController _endpointController;
|
late final TextEditingController _endpointController;
|
||||||
bool _saving = false;
|
bool _saving = false;
|
||||||
|
bool _changingPassword = false;
|
||||||
|
final _passwordFormKey = GlobalKey<FormState>();
|
||||||
|
late final TextEditingController _currentPasswordController;
|
||||||
|
late final TextEditingController _newPasswordController;
|
||||||
|
late final TextEditingController _confirmPasswordController;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
final endpoint = context.read<EndpointService>().baseUrl;
|
final endpoint = context.read<EndpointService>().baseUrl;
|
||||||
_endpointController = TextEditingController(text: endpoint);
|
_endpointController = TextEditingController(text: endpoint);
|
||||||
|
_currentPasswordController = TextEditingController();
|
||||||
|
_newPasswordController = TextEditingController();
|
||||||
|
_confirmPasswordController = TextEditingController();
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
|
_currentPasswordController.dispose();
|
||||||
|
_newPasswordController.dispose();
|
||||||
|
_confirmPasswordController.dispose();
|
||||||
_endpointController.dispose();
|
_endpointController.dispose();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
@@ -125,9 +138,46 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> _changePassword() async {
|
||||||
|
final messenger = ScaffoldMessenger.of(context);
|
||||||
|
final formState = _passwordFormKey.currentState;
|
||||||
|
if (formState == null || !formState.validate()) return;
|
||||||
|
|
||||||
|
FocusScope.of(context).unfocus();
|
||||||
|
setState(() => _changingPassword = true);
|
||||||
|
try {
|
||||||
|
final api = context.read<ApiService>();
|
||||||
|
await api.post('/user/password/change', {
|
||||||
|
'old_password': _currentPasswordController.text,
|
||||||
|
'new_password': _newPasswordController.text,
|
||||||
|
});
|
||||||
|
if (!mounted) return;
|
||||||
|
messenger.showSnackBar(
|
||||||
|
const SnackBar(content: Text('Password updated successfully.')),
|
||||||
|
);
|
||||||
|
formState.reset();
|
||||||
|
_currentPasswordController.clear();
|
||||||
|
_newPasswordController.clear();
|
||||||
|
_confirmPasswordController.clear();
|
||||||
|
} catch (e) {
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to change password: $e')),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
if (mounted) {
|
||||||
|
setState(() => _changingPassword = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final endpointService = context.watch<EndpointService>();
|
final endpointService = context.watch<EndpointService>();
|
||||||
|
final loggedIn = context.select<AuthService, bool>(
|
||||||
|
(auth) => auth.isLoggedIn,
|
||||||
|
);
|
||||||
if (!endpointService.isLoaded) {
|
if (!endpointService.isLoaded) {
|
||||||
return const Scaffold(
|
return const Scaffold(
|
||||||
body: Center(child: CircularProgressIndicator()),
|
body: Center(child: CircularProgressIndicator()),
|
||||||
@@ -149,7 +199,7 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
body: Padding(
|
body: SingleChildScrollView(
|
||||||
padding: const EdgeInsets.all(16.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
@@ -205,6 +255,99 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
'Current: ${endpointService.baseUrl}',
|
'Current: ${endpointService.baseUrl}',
|
||||||
style: Theme.of(context).textTheme.labelSmall,
|
style: Theme.of(context).textTheme.labelSmall,
|
||||||
),
|
),
|
||||||
|
if (loggedIn) ...[
|
||||||
|
const SizedBox(height: 32),
|
||||||
|
Text(
|
||||||
|
'Account',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Text(
|
||||||
|
'Change your password for this account.',
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Form(
|
||||||
|
key: _passwordFormKey,
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
TextFormField(
|
||||||
|
controller: _currentPasswordController,
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
labelText: 'Current password',
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
obscureText: true,
|
||||||
|
enableSuggestions: false,
|
||||||
|
autocorrect: false,
|
||||||
|
autofillHints: const [AutofillHints.password],
|
||||||
|
validator: (value) {
|
||||||
|
if (value == null || value.isEmpty) {
|
||||||
|
return 'Please enter your current password.';
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
TextFormField(
|
||||||
|
controller: _newPasswordController,
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
labelText: 'New password',
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
obscureText: true,
|
||||||
|
enableSuggestions: false,
|
||||||
|
autocorrect: false,
|
||||||
|
autofillHints: const [AutofillHints.newPassword],
|
||||||
|
validator: (value) {
|
||||||
|
if (value == null || value.isEmpty) {
|
||||||
|
return 'Please enter a new password.';
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
TextFormField(
|
||||||
|
controller: _confirmPasswordController,
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
labelText: 'Confirm new password',
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
obscureText: true,
|
||||||
|
enableSuggestions: false,
|
||||||
|
autocorrect: false,
|
||||||
|
autofillHints: const [AutofillHints.newPassword],
|
||||||
|
validator: (value) {
|
||||||
|
if (value == null || value.isEmpty) {
|
||||||
|
return 'Please confirm the new password.';
|
||||||
|
}
|
||||||
|
if (value != _newPasswordController.text) {
|
||||||
|
return 'New passwords do not match.';
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
FilledButton.icon(
|
||||||
|
onPressed: _changingPassword ? null : _changePassword,
|
||||||
|
icon: _changingPassword
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.lock_reset),
|
||||||
|
label: Text(
|
||||||
|
_changingPassword ? 'Updating...' : 'Change password',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -244,47 +244,7 @@ class _TractionPageState extends State<TractionPage> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Row(
|
_buildHeaderActions(context, isMobile),
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
|
||||||
IconButton(
|
|
||||||
tooltip: 'Refresh',
|
|
||||||
onPressed: _refreshTraction,
|
|
||||||
icon: const Icon(Icons.refresh),
|
|
||||||
),
|
|
||||||
if (_hasClassQuery) ...[
|
|
||||||
const SizedBox(width: 8),
|
|
||||||
FilledButton.tonalIcon(
|
|
||||||
onPressed: _toggleClassStatsPanel,
|
|
||||||
icon: Icon(
|
|
||||||
_showClassStatsPanel ? Icons.bar_chart : Icons.insights,
|
|
||||||
),
|
|
||||||
label: Text(
|
|
||||||
_showClassStatsPanel ? 'Hide class stats' : 'Class stats',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
const SizedBox(width: 8),
|
|
||||||
FilledButton.icon(
|
|
||||||
onPressed: () async {
|
|
||||||
final createdClass = await context.push<String>(
|
|
||||||
'/traction/new',
|
|
||||||
);
|
|
||||||
if (createdClass != null && createdClass.isNotEmpty) {
|
|
||||||
_classController.text = createdClass;
|
|
||||||
_selectedClass = createdClass;
|
|
||||||
if (mounted) {
|
|
||||||
_refreshTraction();
|
|
||||||
}
|
|
||||||
} else if (mounted && createdClass == '') {
|
|
||||||
_refreshTraction();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
icon: const Icon(Icons.add),
|
|
||||||
label: const Text('New Traction'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
@@ -546,6 +506,78 @@ class _TractionPageState extends State<TractionPage> {
|
|||||||
return (_selectedClass ?? _classController.text).trim().isNotEmpty;
|
return (_selectedClass ?? _classController.text).trim().isNotEmpty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _buildHeaderActions(BuildContext context, bool isMobile) {
|
||||||
|
final refreshButton = IconButton(
|
||||||
|
tooltip: 'Refresh',
|
||||||
|
onPressed: _refreshTraction,
|
||||||
|
icon: const Icon(Icons.refresh),
|
||||||
|
);
|
||||||
|
|
||||||
|
final classStatsButton = !_hasClassQuery
|
||||||
|
? null
|
||||||
|
: FilledButton.tonalIcon(
|
||||||
|
onPressed: _toggleClassStatsPanel,
|
||||||
|
icon: Icon(
|
||||||
|
_showClassStatsPanel ? Icons.bar_chart : Icons.insights,
|
||||||
|
),
|
||||||
|
label: Text(
|
||||||
|
_showClassStatsPanel ? 'Hide class stats' : 'Class stats',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
final newTractionButton = FilledButton.icon(
|
||||||
|
onPressed: () async {
|
||||||
|
final createdClass = await context.push<String>(
|
||||||
|
'/traction/new',
|
||||||
|
);
|
||||||
|
if (!mounted) return;
|
||||||
|
if (createdClass != null && createdClass.isNotEmpty) {
|
||||||
|
_classController.text = createdClass;
|
||||||
|
_selectedClass = createdClass;
|
||||||
|
_refreshTraction();
|
||||||
|
} else if (createdClass == '') {
|
||||||
|
_refreshTraction();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.add),
|
||||||
|
label: const Text('New Traction'),
|
||||||
|
);
|
||||||
|
|
||||||
|
final desktopActions = [
|
||||||
|
refreshButton,
|
||||||
|
if (classStatsButton != null) classStatsButton,
|
||||||
|
newTractionButton,
|
||||||
|
];
|
||||||
|
|
||||||
|
final mobileActions = [
|
||||||
|
newTractionButton,
|
||||||
|
if (classStatsButton != null) classStatsButton,
|
||||||
|
refreshButton,
|
||||||
|
];
|
||||||
|
|
||||||
|
if (isMobile) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
for (var i = 0; i < mobileActions.length; i++) ...[
|
||||||
|
if (i > 0) const SizedBox(height: 8),
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.centerRight,
|
||||||
|
child: mobileActions[i],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 8,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
children: desktopActions,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> _toggleClassStatsPanel() async {
|
Future<void> _toggleClassStatsPanel() async {
|
||||||
if (!_hasClassQuery) return;
|
if (!_hasClassQuery) return;
|
||||||
final targetState = !_showClassStatsPanel;
|
final targetState = !_showClassStatsPanel;
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ class TripsPage extends StatefulWidget {
|
|||||||
|
|
||||||
class _TripsPageState extends State<TripsPage> {
|
class _TripsPageState extends State<TripsPage> {
|
||||||
bool _initialised = false;
|
bool _initialised = false;
|
||||||
|
final Map<int, Future<List<TripLocoStat>>> _tripLocoStatsFutures = {};
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void didChangeDependencies() {
|
void didChangeDependencies() {
|
||||||
@@ -23,7 +24,9 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _refreshTrips() async {
|
Future<void> _refreshTrips() async {
|
||||||
await context.read<DataService>().fetchTripDetails();
|
_tripLocoStatsFutures.clear();
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
await data.fetchTripDetails();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _renameTrip(TripDetail trip, String newName) async {
|
Future<void> _renameTrip(TripDetail trip, String newName) async {
|
||||||
@@ -35,10 +38,7 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
"trip_id": trip.id,
|
"trip_id": trip.id,
|
||||||
"trip_name": newName,
|
"trip_name": newName,
|
||||||
});
|
});
|
||||||
await Future.wait([
|
await data.fetchTripDetails();
|
||||||
data.fetchTripDetails(),
|
|
||||||
data.fetchTrips(),
|
|
||||||
]);
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
messenger?.showSnackBar(
|
messenger?.showSnackBar(
|
||||||
SnackBar(content: Text('Failed to rename trip: $e')),
|
SnackBar(content: Text('Failed to rename trip: $e')),
|
||||||
@@ -47,6 +47,27 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
List<TripLocoStat> _cachedTripStats(
|
||||||
|
TripDetail trip,
|
||||||
|
TripSummary? summary,
|
||||||
|
) {
|
||||||
|
if (trip.locoStats.isNotEmpty) return trip.locoStats;
|
||||||
|
if (summary?.locoStats.isNotEmpty == true) return summary!.locoStats;
|
||||||
|
return const [];
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<List<TripLocoStat>> _loadTripStats(
|
||||||
|
TripDetail trip,
|
||||||
|
TripSummary? summary,
|
||||||
|
) {
|
||||||
|
final cached = _cachedTripStats(trip, summary);
|
||||||
|
if (cached.isNotEmpty) return Future.value(cached);
|
||||||
|
return _tripLocoStatsFutures.putIfAbsent(
|
||||||
|
trip.id,
|
||||||
|
() => context.read<DataService>().fetchTripLocoStats(trip.id),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Future<String?> _promptTripName(BuildContext context, String initial) async {
|
Future<String?> _promptTripName(BuildContext context, String initial) async {
|
||||||
final controller = TextEditingController(text: initial);
|
final controller = TextEditingController(text: initial);
|
||||||
final newName = await showDialog<String>(
|
final newName = await showDialog<String>(
|
||||||
@@ -79,8 +100,10 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
final tripDetails = data.tripDetails;
|
final tripDetails = data.tripDetails;
|
||||||
final tripSummaries = data.trips;
|
final tripSummaries = data.tripList;
|
||||||
final isMobile = MediaQuery.of(context).size.width < 700;
|
final summaryById = {
|
||||||
|
for (final summary in tripSummaries) summary.tripId: summary,
|
||||||
|
};
|
||||||
final showLoading = data.isTripDetailsLoading && tripDetails.isEmpty;
|
final showLoading = data.isTripDetailsLoading && tripDetails.isEmpty;
|
||||||
|
|
||||||
return RefreshIndicator(
|
return RefreshIndicator(
|
||||||
@@ -171,92 +194,173 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final trip = tripDetails[index - 1];
|
final trip = tripDetails[index - 1];
|
||||||
return _buildTripCard(context, trip, isMobile);
|
final summary = summaryById[trip.id];
|
||||||
|
return _buildTripCard(context, trip, summary);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildTripCard(BuildContext context, TripDetail trip, bool isMobile) {
|
Widget _buildTripCard(
|
||||||
|
BuildContext context,
|
||||||
|
TripDetail trip,
|
||||||
|
TripSummary? summary,
|
||||||
|
) {
|
||||||
final legs = trip.legs;
|
final legs = trip.legs;
|
||||||
|
final legCount =
|
||||||
|
trip.legCount > 0 ? trip.legCount : summary?.legCount ?? legs.length;
|
||||||
|
final dateRange = _formatDateRange(legs);
|
||||||
|
final endpoints = _formatEndpoints(legs);
|
||||||
|
final stats = _cachedTripStats(trip, summary);
|
||||||
|
final winnerCount = stats.where((e) => e.won).length;
|
||||||
|
|
||||||
return Card(
|
return Card(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(12.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'Trip',
|
||||||
|
style: Theme.of(context).textTheme.labelMedium,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Text(
|
||||||
|
trip.name,
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
Column(
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
trip.name,
|
trip.mileage.toStringAsFixed(1),
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
style:
|
||||||
fontWeight: FontWeight.w700,
|
Theme.of(context).textTheme.headlineSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
'${trip.mileage.toStringAsFixed(1)} mi · ${trip.legCount} legs',
|
'miles',
|
||||||
style: Theme.of(context).textTheme.bodyMedium,
|
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||||
),
|
color: Theme.of(context).textTheme.bodySmall?.color,
|
||||||
],
|
),
|
||||||
),
|
|
||||||
Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.train),
|
|
||||||
tooltip: 'Traction',
|
|
||||||
onPressed: () => _showTripWinners(context, trip),
|
|
||||||
),
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.open_in_new),
|
|
||||||
tooltip: 'Details',
|
|
||||||
onPressed: () => _showTripDetail(context, trip),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 12),
|
||||||
if (legs.isNotEmpty)
|
Wrap(
|
||||||
Column(
|
spacing: 8,
|
||||||
children: legs.take(isMobile ? 2 : 3).map((leg) {
|
runSpacing: 8,
|
||||||
return ListTile(
|
children: [
|
||||||
dense: isMobile,
|
_buildMetaChip(context, Icons.timeline, '$legCount legs'),
|
||||||
contentPadding: EdgeInsets.zero,
|
if (dateRange != null)
|
||||||
leading: const Icon(Icons.train),
|
_buildMetaChip(context, Icons.calendar_month, dateRange),
|
||||||
title: Text('${leg.start} → ${leg.end}'),
|
if (endpoints != null)
|
||||||
subtitle: Text(
|
_buildMetaChip(context, Icons.route, endpoints),
|
||||||
_formatDate(leg.beginTime),
|
if (stats.isNotEmpty) ...[
|
||||||
maxLines: 1,
|
_buildMetaChip(context, Icons.train, '${stats.length} had'),
|
||||||
overflow: TextOverflow.ellipsis,
|
_buildMetaChip(
|
||||||
),
|
context,
|
||||||
trailing: Text(
|
Icons.emoji_events_outlined,
|
||||||
leg.mileage?.toStringAsFixed(1) ?? '-',
|
'$winnerCount winners',
|
||||||
style: Theme.of(context).textTheme.labelLarge?.copyWith(
|
),
|
||||||
fontWeight: FontWeight.bold,
|
] else
|
||||||
),
|
_buildMetaChip(context, Icons.train, 'No traction yet'),
|
||||||
),
|
],
|
||||||
);
|
),
|
||||||
}).toList(),
|
const SizedBox(height: 12),
|
||||||
),
|
Align(
|
||||||
if (legs.length > 3)
|
alignment: Alignment.centerRight,
|
||||||
Padding(
|
child: Wrap(
|
||||||
padding: const EdgeInsets.only(top: 6.0),
|
spacing: 8,
|
||||||
child: Text(
|
runSpacing: 8,
|
||||||
'+${legs.length - 3} more legs',
|
alignment: WrapAlignment.end,
|
||||||
style: Theme.of(context).textTheme.bodySmall,
|
children: [
|
||||||
),
|
OutlinedButton.icon(
|
||||||
|
icon: const Icon(Icons.train),
|
||||||
|
label: const Text('Locos'),
|
||||||
|
onPressed: () => _showTripWinners(context, trip, summary),
|
||||||
|
),
|
||||||
|
FilledButton.icon(
|
||||||
|
icon: const Icon(Icons.open_in_new),
|
||||||
|
label: const Text('Details'),
|
||||||
|
onPressed: () => _showTripDetail(context, trip),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _buildMetaChip(BuildContext context, IconData icon, String label) {
|
||||||
|
return Chip(
|
||||||
|
avatar: Icon(icon, size: 16),
|
||||||
|
label: Text(label),
|
||||||
|
visualDensity: const VisualDensity(horizontal: -2, vertical: -2),
|
||||||
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _formatDateRange(List<TripLeg> legs) {
|
||||||
|
final beginTimes =
|
||||||
|
legs.map((e) => e.beginTime).whereType<DateTime>().toList();
|
||||||
|
if (beginTimes.isEmpty) return null;
|
||||||
|
final start = beginTimes.first;
|
||||||
|
final end = beginTimes.last;
|
||||||
|
final startStr = _formatFriendlyDate(start);
|
||||||
|
final endStr = _formatFriendlyDate(end);
|
||||||
|
if (startStr == endStr) return startStr;
|
||||||
|
return '$startStr - $endStr';
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatFriendlyDate(DateTime date) {
|
||||||
|
const months = [
|
||||||
|
'Jan',
|
||||||
|
'Feb',
|
||||||
|
'Mar',
|
||||||
|
'Apr',
|
||||||
|
'May',
|
||||||
|
'Jun',
|
||||||
|
'Jul',
|
||||||
|
'Aug',
|
||||||
|
'Sep',
|
||||||
|
'Oct',
|
||||||
|
'Nov',
|
||||||
|
'Dec',
|
||||||
|
];
|
||||||
|
final day = date.day.toString().padLeft(2, '0');
|
||||||
|
final monthIndex = (date.month - 1).clamp(0, months.length - 1).toInt();
|
||||||
|
final month = months[monthIndex];
|
||||||
|
return '$day $month ${date.year}';
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _formatEndpoints(List<TripLeg> legs) {
|
||||||
|
if (legs.isEmpty) return null;
|
||||||
|
final start = legs.first.start;
|
||||||
|
final end = legs.last.end;
|
||||||
|
if (start.isEmpty && end.isEmpty) return null;
|
||||||
|
final startLabel = start.isNotEmpty ? start : '—';
|
||||||
|
final endLabel = end.isNotEmpty ? end : '—';
|
||||||
|
return '$startLabel → $endLabel';
|
||||||
|
}
|
||||||
|
|
||||||
String _formatDate(DateTime? date) {
|
String _formatDate(DateTime? date) {
|
||||||
if (date == null) return '';
|
if (date == null) return '';
|
||||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||||
@@ -323,6 +427,7 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
data.fetchTripDetails(),
|
data.fetchTripDetails(),
|
||||||
data.fetchTrips(),
|
data.fetchTrips(),
|
||||||
]);
|
]);
|
||||||
|
_tripLocoStatsFutures.remove(trip.id);
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
messenger?.showSnackBar(
|
messenger?.showSnackBar(
|
||||||
SnackBar(content: Text('Deleted "${trip.name}"')),
|
SnackBar(content: Text('Deleted "${trip.name}"')),
|
||||||
@@ -419,15 +524,19 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _showTripWinners(BuildContext context, TripDetail trip) {
|
void _showTripWinners(
|
||||||
|
BuildContext context,
|
||||||
|
TripDetail trip,
|
||||||
|
TripSummary? summary,
|
||||||
|
) {
|
||||||
showModalBottomSheet(
|
showModalBottomSheet(
|
||||||
context: context,
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
builder: (_) {
|
builder: (_) {
|
||||||
final data = context.read<DataService>();
|
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
child: FutureBuilder<List<TripLocoStat>>(
|
child: FutureBuilder<List<TripLocoStat>>(
|
||||||
future: data.fetchTripLocoStats(trip.id),
|
future: _loadTripStats(trip, summary),
|
||||||
|
initialData: _cachedTripStats(trip, summary),
|
||||||
builder: (ctx, snapshot) {
|
builder: (ctx, snapshot) {
|
||||||
final items = snapshot.data ?? [];
|
final items = snapshot.data ?? [];
|
||||||
final loading =
|
final loading =
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
|
|
||||||
@@ -20,6 +22,35 @@ String _asString(dynamic value, [String fallback = '']) {
|
|||||||
return (str == null) ? fallback : str;
|
return (str == null) ? fallback : str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
List<String> _asStringList(dynamic value) {
|
||||||
|
if (value is List) {
|
||||||
|
return value.map((e) => e.toString()).toList();
|
||||||
|
}
|
||||||
|
final trimmed = value?.toString().trim() ?? '';
|
||||||
|
if (trimmed.isEmpty) return const [];
|
||||||
|
try {
|
||||||
|
final decoded = jsonDecode(trimmed);
|
||||||
|
if (decoded is List) {
|
||||||
|
return decoded.map((e) => e.toString()).toList();
|
||||||
|
}
|
||||||
|
} catch (_) {}
|
||||||
|
if (trimmed.contains('->')) {
|
||||||
|
return trimmed
|
||||||
|
.split('->')
|
||||||
|
.map((e) => e.trim())
|
||||||
|
.where((e) => e.isNotEmpty)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
if (trimmed.contains(',')) {
|
||||||
|
return trimmed
|
||||||
|
.split(',')
|
||||||
|
.map((e) => e.trim())
|
||||||
|
.where((e) => e.isNotEmpty)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
return [trimmed];
|
||||||
|
}
|
||||||
|
|
||||||
bool _asBool(dynamic value, [bool fallback = false]) {
|
bool _asBool(dynamic value, [bool fallback = false]) {
|
||||||
if (value is bool) return value;
|
if (value is bool) return value;
|
||||||
if (value is num) return value != 0;
|
if (value is num) return value != 0;
|
||||||
@@ -487,25 +518,45 @@ class TripSummary {
|
|||||||
final int tripId;
|
final int tripId;
|
||||||
final String tripName;
|
final String tripName;
|
||||||
final double tripMileage;
|
final double tripMileage;
|
||||||
|
final int legCount;
|
||||||
|
final List<TripLocoStat> locoStats;
|
||||||
|
|
||||||
|
int get locoHadCount => locoStats.length;
|
||||||
|
int get winnersCount => locoStats.where((e) => e.won).length;
|
||||||
|
|
||||||
TripSummary({
|
TripSummary({
|
||||||
required this.tripId,
|
required this.tripId,
|
||||||
required this.tripName,
|
required this.tripName,
|
||||||
required this.tripMileage,
|
required this.tripMileage,
|
||||||
});
|
this.legCount = 0,
|
||||||
|
List<TripLocoStat>? locoStats,
|
||||||
|
}) : locoStats = locoStats ?? const [];
|
||||||
|
|
||||||
factory TripSummary.fromJson(Map<String, dynamic> json) => TripSummary(
|
factory TripSummary.fromJson(Map<String, dynamic> json) => TripSummary(
|
||||||
tripId: _asInt(json['trip_id']),
|
tripId: _asInt(json['trip_id']),
|
||||||
tripName: _asString(json['trip_name']),
|
tripName: _asString(json['trip_name']),
|
||||||
tripMileage: _asDouble(json['trip_mileage']),
|
tripMileage: _asDouble(json['trip_mileage']),
|
||||||
|
legCount: _asInt(
|
||||||
|
json['leg_count'],
|
||||||
|
(json['trip_legs'] as List?)?.length ?? 0,
|
||||||
|
),
|
||||||
|
locoStats: TripLocoStat.listFromJson(
|
||||||
|
json['stats'] ?? json['trip_locos'] ?? json['locos'],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
class Leg {
|
class Leg {
|
||||||
final int id, tripId, timezone, driving;
|
final int id, tripId, timezone, driving;
|
||||||
final String start, end, route, network, notes, headcode, user;
|
final String start, end, network, notes, headcode, user;
|
||||||
|
final String origin, destination;
|
||||||
|
final List<String> route;
|
||||||
final DateTime beginTime;
|
final DateTime beginTime;
|
||||||
|
final DateTime? endTime;
|
||||||
|
final DateTime? originTime;
|
||||||
|
final DateTime? destinationTime;
|
||||||
final double mileage;
|
final double mileage;
|
||||||
|
final int? beginDelayMinutes, endDelayMinutes;
|
||||||
final List<Loco> locos;
|
final List<Loco> locos;
|
||||||
|
|
||||||
Leg({
|
Leg({
|
||||||
@@ -523,27 +574,55 @@ class Leg {
|
|||||||
required this.driving,
|
required this.driving,
|
||||||
required this.user,
|
required this.user,
|
||||||
required this.locos,
|
required this.locos,
|
||||||
|
this.endTime,
|
||||||
|
this.originTime,
|
||||||
|
this.destinationTime,
|
||||||
|
this.beginDelayMinutes,
|
||||||
|
this.endDelayMinutes,
|
||||||
|
this.origin = '',
|
||||||
|
this.destination = '',
|
||||||
});
|
});
|
||||||
|
|
||||||
factory Leg.fromJson(Map<String, dynamic> json) => Leg(
|
factory Leg.fromJson(Map<String, dynamic> json) {
|
||||||
id: _asInt(json['leg_id']),
|
final endTimeRaw = json['leg_end_time'];
|
||||||
tripId: _asInt(json['leg_trip']),
|
final parsedEndTime = (endTimeRaw == null || '$endTimeRaw'.isEmpty)
|
||||||
start: _asString(json['leg_start']),
|
? null
|
||||||
end: _asString(json['leg_end']),
|
: _asDateTime(endTimeRaw);
|
||||||
beginTime: _asDateTime(json['leg_begin_time']),
|
return Leg(
|
||||||
timezone: _asInt(json['leg_timezone']),
|
id: _asInt(json['leg_id']),
|
||||||
network: _asString(json['leg_network']),
|
tripId: _asInt(json['leg_trip']),
|
||||||
route: _asString(json['leg_route']),
|
start: _asString(json['leg_start']),
|
||||||
mileage: _asDouble(json['leg_mileage']),
|
end: _asString(json['leg_end']),
|
||||||
notes: _asString(json['leg_notes']),
|
beginTime: _asDateTime(json['leg_begin_time']),
|
||||||
headcode: _asString(json['leg_headcode']),
|
endTime: parsedEndTime,
|
||||||
driving: _asInt(json['leg_driving']),
|
originTime: json['leg_origin_time'] == null
|
||||||
user: _asString(json['leg_user']),
|
? null
|
||||||
locos: (json['locos'] is List ? (json['locos'] as List) : const [])
|
: _asDateTime(json['leg_origin_time']),
|
||||||
.whereType<Map>()
|
destinationTime: json['leg_destination_time'] == null
|
||||||
.map((e) => Loco.fromJson(Map<String, dynamic>.from(e)))
|
? null
|
||||||
.toList(),
|
: _asDateTime(json['leg_destination_time']),
|
||||||
);
|
timezone: _asInt(json['leg_timezone']),
|
||||||
|
network: _asString(json['leg_network']),
|
||||||
|
route: _asStringList(json['leg_route']),
|
||||||
|
mileage: _asDouble(json['leg_mileage']),
|
||||||
|
notes: _asString(json['leg_notes']),
|
||||||
|
headcode: _asString(json['leg_headcode']),
|
||||||
|
driving: _asInt(json['leg_driving']),
|
||||||
|
user: _asString(json['leg_user']),
|
||||||
|
locos: (json['locos'] is List ? (json['locos'] as List) : const [])
|
||||||
|
.whereType<Map>()
|
||||||
|
.map((e) => Loco.fromJson(Map<String, dynamic>.from(e)))
|
||||||
|
.toList(),
|
||||||
|
beginDelayMinutes: json['leg_begin_delay'] == null
|
||||||
|
? null
|
||||||
|
: _asInt(json['leg_begin_delay']),
|
||||||
|
endDelayMinutes: json['leg_end_delay'] == null
|
||||||
|
? null
|
||||||
|
: _asInt(json['leg_end_delay']),
|
||||||
|
origin: _asString(json['leg_origin']),
|
||||||
|
destination: _asString(json['leg_destination']),
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class RouteError {
|
class RouteError {
|
||||||
@@ -625,17 +704,23 @@ class TripLeg {
|
|||||||
});
|
});
|
||||||
|
|
||||||
factory TripLeg.fromJson(Map<String, dynamic> json) => TripLeg(
|
factory TripLeg.fromJson(Map<String, dynamic> json) => TripLeg(
|
||||||
id: json['leg_id'],
|
id: _asInt(json['leg_id']),
|
||||||
start: json['leg_start'] ?? '',
|
start: _asString(json['leg_start']),
|
||||||
end: json['leg_end'] ?? '',
|
end: _asString(json['leg_end']),
|
||||||
beginTime:
|
beginTime:
|
||||||
json['leg_begin_time'] != null && json['leg_begin_time'] is String
|
json['leg_begin_time'] != null && json['leg_begin_time'] is String
|
||||||
? DateTime.tryParse(json['leg_begin_time'])
|
? DateTime.tryParse(json['leg_begin_time'])
|
||||||
: (json['leg_begin_time'] is DateTime ? json['leg_begin_time'] : null),
|
: (json['leg_begin_time'] is DateTime ? json['leg_begin_time'] : null),
|
||||||
network: json['leg_network'],
|
network: _asString(json['leg_network'], ''),
|
||||||
route: json['leg_route'],
|
route: () {
|
||||||
|
final route = json['leg_route'];
|
||||||
|
if (route is List) {
|
||||||
|
return route.whereType<String>().join(' → ');
|
||||||
|
}
|
||||||
|
return _asString(route, '');
|
||||||
|
}(),
|
||||||
mileage: (json['leg_mileage'] as num?)?.toDouble(),
|
mileage: (json['leg_mileage'] as num?)?.toDouble(),
|
||||||
notes: json['leg_notes'],
|
notes: _asString(json['leg_notes'], ''),
|
||||||
locos:
|
locos:
|
||||||
(json['locos'] as List?)
|
(json['locos'] as List?)
|
||||||
?.map((e) => Loco.fromJson(e as Map<String, dynamic>))
|
?.map((e) => Loco.fromJson(e as Map<String, dynamic>))
|
||||||
@@ -649,21 +734,32 @@ class TripDetail {
|
|||||||
final String name;
|
final String name;
|
||||||
final double mileage;
|
final double mileage;
|
||||||
final int legCount;
|
final int legCount;
|
||||||
|
final List<TripLocoStat> locoStats;
|
||||||
final List<TripLeg> legs;
|
final List<TripLeg> legs;
|
||||||
|
|
||||||
|
int get locoHadCount => locoStats.length;
|
||||||
|
int get winnersCount => locoStats.where((e) => e.won).length;
|
||||||
|
|
||||||
TripDetail({
|
TripDetail({
|
||||||
required this.id,
|
required this.id,
|
||||||
required this.name,
|
required this.name,
|
||||||
required this.mileage,
|
required this.mileage,
|
||||||
required this.legCount,
|
required this.legCount,
|
||||||
required this.legs,
|
required this.legs,
|
||||||
});
|
List<TripLocoStat>? locoStats,
|
||||||
|
}) : locoStats = locoStats ?? const [];
|
||||||
|
|
||||||
factory TripDetail.fromJson(Map<String, dynamic> json) => TripDetail(
|
factory TripDetail.fromJson(Map<String, dynamic> json) => TripDetail(
|
||||||
id: json['trip_id'] ?? json['id'] ?? 0,
|
id: json['trip_id'] ?? json['id'] ?? 0,
|
||||||
name: json['trip_name'] ?? '',
|
name: json['trip_name'] ?? '',
|
||||||
mileage: (json['trip_mileage'] as num?)?.toDouble() ?? 0,
|
mileage: (json['trip_mileage'] as num?)?.toDouble() ?? 0,
|
||||||
legCount: json['leg_count'] ?? ((json['trip_legs'] as List?)?.length ?? 0),
|
legCount: _asInt(
|
||||||
|
json['leg_count'],
|
||||||
|
(json['trip_legs'] as List?)?.length ?? 0,
|
||||||
|
),
|
||||||
|
locoStats: TripLocoStat.listFromJson(
|
||||||
|
json['stats'] ?? json['trip_locos'] ?? json['locos'],
|
||||||
|
),
|
||||||
legs:
|
legs:
|
||||||
(json['trip_legs'] as List?)
|
(json['trip_legs'] as List?)
|
||||||
?.map((e) => TripLeg.fromJson(e as Map<String, dynamic>))
|
?.map((e) => TripLeg.fromJson(e as Map<String, dynamic>))
|
||||||
@@ -712,6 +808,26 @@ class TripLocoStat {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static List<TripLocoStat> listFromJson(dynamic json) {
|
||||||
|
List<dynamic>? list;
|
||||||
|
if (json is List) {
|
||||||
|
list = json.expand((e) => e is List ? e : [e]).toList();
|
||||||
|
} else if (json is Map) {
|
||||||
|
for (final key in ['locos', 'stats', 'data', 'trip_locos']) {
|
||||||
|
final candidate = json[key];
|
||||||
|
if (candidate is List) {
|
||||||
|
list = candidate.expand((e) => e is List ? e : [e]).toList();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (list == null) return const [];
|
||||||
|
return list
|
||||||
|
.whereType<Map>()
|
||||||
|
.map((e) => TripLocoStat.fromJson(Map<String, dynamic>.from(e)))
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
|
||||||
static bool _parseWonFlag(dynamic value) {
|
static bool _parseWonFlag(dynamic value) {
|
||||||
if (value == null) return false;
|
if (value == null) return false;
|
||||||
if (value is bool) return value;
|
if (value is bool) return value;
|
||||||
@@ -750,3 +866,162 @@ class EventField {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class UserNotification {
|
||||||
|
final int id;
|
||||||
|
final String title;
|
||||||
|
final String body;
|
||||||
|
final DateTime? createdAt;
|
||||||
|
final bool dismissed;
|
||||||
|
|
||||||
|
UserNotification({
|
||||||
|
required this.id,
|
||||||
|
required this.title,
|
||||||
|
required this.body,
|
||||||
|
required this.createdAt,
|
||||||
|
required this.dismissed,
|
||||||
|
});
|
||||||
|
|
||||||
|
factory UserNotification.fromJson(Map<String, dynamic> json) {
|
||||||
|
final created = json['created_at'] ?? json['createdAt'];
|
||||||
|
DateTime? createdAt;
|
||||||
|
if (created is String) {
|
||||||
|
createdAt = DateTime.tryParse(created);
|
||||||
|
} else if (created is DateTime) {
|
||||||
|
createdAt = created;
|
||||||
|
}
|
||||||
|
return UserNotification(
|
||||||
|
id: _asInt(json['notification_id'] ?? json['id']),
|
||||||
|
title: _asString(json['title']),
|
||||||
|
body: _asString(json['body']),
|
||||||
|
createdAt: createdAt,
|
||||||
|
dismissed: _asBool(json['dismissed'] ?? false, false),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BadgeAward {
|
||||||
|
final int id;
|
||||||
|
final int badgeId;
|
||||||
|
final String badgeCode;
|
||||||
|
final String badgeTier;
|
||||||
|
final String? scopeValue;
|
||||||
|
final DateTime? awardedAt;
|
||||||
|
final LocoSummary? loco;
|
||||||
|
|
||||||
|
BadgeAward({
|
||||||
|
required this.id,
|
||||||
|
required this.badgeId,
|
||||||
|
required this.badgeCode,
|
||||||
|
required this.badgeTier,
|
||||||
|
this.scopeValue,
|
||||||
|
this.awardedAt,
|
||||||
|
this.loco,
|
||||||
|
});
|
||||||
|
|
||||||
|
factory BadgeAward.fromJson(Map<String, dynamic> json) {
|
||||||
|
final awarded = json['awarded_at'] ?? json['awardedAt'];
|
||||||
|
DateTime? awardedAt;
|
||||||
|
if (awarded is String) {
|
||||||
|
awardedAt = DateTime.tryParse(awarded);
|
||||||
|
} else if (awarded is DateTime) {
|
||||||
|
awardedAt = awarded;
|
||||||
|
}
|
||||||
|
final locoJson = json['loco'];
|
||||||
|
LocoSummary? loco;
|
||||||
|
if (locoJson is Map<String, dynamic>) {
|
||||||
|
loco = LocoSummary.fromJson(Map<String, dynamic>.from(locoJson));
|
||||||
|
}
|
||||||
|
return BadgeAward(
|
||||||
|
id: _asInt(json['award_id'] ?? json['id']),
|
||||||
|
badgeId: _asInt(json['badge_id'] ?? 0),
|
||||||
|
badgeCode: _asString(json['badge_code']),
|
||||||
|
badgeTier: _asString(json['badge_tier']),
|
||||||
|
scopeValue: _asString(json['scope_value']),
|
||||||
|
awardedAt: awardedAt,
|
||||||
|
loco: loco,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class ClassClearanceProgress {
|
||||||
|
final String className;
|
||||||
|
final int completed;
|
||||||
|
final int total;
|
||||||
|
final double percentComplete;
|
||||||
|
|
||||||
|
ClassClearanceProgress({
|
||||||
|
required this.className,
|
||||||
|
required this.completed,
|
||||||
|
required this.total,
|
||||||
|
required this.percentComplete,
|
||||||
|
});
|
||||||
|
|
||||||
|
factory ClassClearanceProgress.fromJson(Map<String, dynamic> json) {
|
||||||
|
final name = _asString(json['class'] ?? json['class_name'] ?? json['name']);
|
||||||
|
final completed = _asInt(
|
||||||
|
json['completed'] ?? json['done'] ?? json['count'] ?? json['had'],
|
||||||
|
);
|
||||||
|
final total = _asInt(json['total'] ?? json['required'] ?? json['goal']);
|
||||||
|
double percent = _asDouble(
|
||||||
|
json['percent_complete'] ??
|
||||||
|
json['percent'] ??
|
||||||
|
json['completion'] ??
|
||||||
|
json['pct'],
|
||||||
|
);
|
||||||
|
if (percent == 0 && total > 0) {
|
||||||
|
percent = (completed / total) * 100;
|
||||||
|
}
|
||||||
|
return ClassClearanceProgress(
|
||||||
|
className: name.isNotEmpty ? name : 'Class',
|
||||||
|
completed: completed,
|
||||||
|
total: total,
|
||||||
|
percentComplete: percent,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LocoClearanceProgress {
|
||||||
|
final LocoSummary loco;
|
||||||
|
final double mileage;
|
||||||
|
final double required;
|
||||||
|
final String nextTier;
|
||||||
|
final List<String> awardedTiers;
|
||||||
|
final double percent;
|
||||||
|
|
||||||
|
LocoClearanceProgress({
|
||||||
|
required this.loco,
|
||||||
|
required this.mileage,
|
||||||
|
required this.required,
|
||||||
|
required this.nextTier,
|
||||||
|
required this.awardedTiers,
|
||||||
|
required this.percent,
|
||||||
|
});
|
||||||
|
|
||||||
|
factory LocoClearanceProgress.fromJson(Map<String, dynamic> json) {
|
||||||
|
final locoJson = json['loco'];
|
||||||
|
final loco = locoJson is Map<String, dynamic>
|
||||||
|
? LocoSummary.fromJson(Map<String, dynamic>.from(locoJson))
|
||||||
|
: LocoSummary(
|
||||||
|
locoId: _asInt(json['loco_id']),
|
||||||
|
locoType: _asString(json['loco_type']),
|
||||||
|
locoNumber: _asString(json['loco_number']),
|
||||||
|
locoName: _asString(json['loco_name']),
|
||||||
|
locoClass: _asString(json['loco_class']),
|
||||||
|
locoOperator: _asString(json['operator']),
|
||||||
|
powering: true,
|
||||||
|
locoNotes: null,
|
||||||
|
locoEvn: null,
|
||||||
|
);
|
||||||
|
return LocoClearanceProgress(
|
||||||
|
loco: loco,
|
||||||
|
mileage: _asDouble(json['mileage']),
|
||||||
|
required: _asDouble(json['required']),
|
||||||
|
nextTier: _asString(json['next_tier']),
|
||||||
|
awardedTiers: (json['awarded_tiers'] as List? ?? [])
|
||||||
|
.map((e) => e.toString())
|
||||||
|
.toList(),
|
||||||
|
percent: _asDouble(json['percent']),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -9,4 +9,5 @@ import 'package:mileograph_flutter/services/api_service.dart';
|
|||||||
part 'data_service_core.dart';
|
part 'data_service_core.dart';
|
||||||
part 'data_service_traction.dart';
|
part 'data_service_traction.dart';
|
||||||
part 'data_service_trips.dart';
|
part 'data_service_trips.dart';
|
||||||
|
part 'data_service_notifications.dart';
|
||||||
|
part 'data_service_badges.dart';
|
||||||
|
|||||||
130
lib/services/data_service/data_service_badges.dart
Normal file
130
lib/services/data_service/data_service_badges.dart
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
part of 'data_service.dart';
|
||||||
|
|
||||||
|
extension DataServiceBadges on DataService {
|
||||||
|
Future<void> fetchBadgeAwards({
|
||||||
|
int offset = 0,
|
||||||
|
int limit = 50,
|
||||||
|
bool append = false,
|
||||||
|
String badgeCode = 'class_clearance',
|
||||||
|
}) async {
|
||||||
|
_isBadgeAwardsLoading = true;
|
||||||
|
if (!append) _badgeAwards = [];
|
||||||
|
try {
|
||||||
|
final json = await api.get(
|
||||||
|
'/badge/awards/me?limit=$limit&offset=$offset&badge_code=$badgeCode',
|
||||||
|
);
|
||||||
|
List<dynamic>? list;
|
||||||
|
if (json is List) {
|
||||||
|
list = json;
|
||||||
|
} else if (json is Map) {
|
||||||
|
for (final key in ['awards', 'badge_awards', 'data']) {
|
||||||
|
final value = json[key];
|
||||||
|
if (value is List) {
|
||||||
|
list = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
final parsed = list
|
||||||
|
?.whereType<Map<String, dynamic>>()
|
||||||
|
.map(BadgeAward.fromJson)
|
||||||
|
.toList();
|
||||||
|
final items = parsed ?? [];
|
||||||
|
_badgeAwards =
|
||||||
|
append ? [..._badgeAwards, ...items] : items;
|
||||||
|
_badgeAwards.sort((a, b) {
|
||||||
|
final aTs = a.awardedAt?.millisecondsSinceEpoch ?? 0;
|
||||||
|
final bTs = b.awardedAt?.millisecondsSinceEpoch ?? 0;
|
||||||
|
return bTs.compareTo(aTs);
|
||||||
|
});
|
||||||
|
_badgeAwardsHasMore = items.length >= limit;
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch badge awards: $e');
|
||||||
|
if (!append) _badgeAwards = [];
|
||||||
|
_badgeAwardsHasMore = false;
|
||||||
|
} finally {
|
||||||
|
_isBadgeAwardsLoading = false;
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> fetchClassClearanceProgress({
|
||||||
|
int offset = 0,
|
||||||
|
int limit = 20,
|
||||||
|
bool append = false,
|
||||||
|
}) async {
|
||||||
|
_isClassClearanceProgressLoading = true;
|
||||||
|
if (!append) _classClearanceProgress = [];
|
||||||
|
try {
|
||||||
|
final json =
|
||||||
|
await api.get('/badge/completion/class?limit=$limit&offset=$offset');
|
||||||
|
List<dynamic>? list;
|
||||||
|
if (json is List) {
|
||||||
|
list = json;
|
||||||
|
} else if (json is Map) {
|
||||||
|
for (final key in ['progress', 'data', 'items', 'classes']) {
|
||||||
|
final value = json[key];
|
||||||
|
if (value is List) {
|
||||||
|
list = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
final parsed = list
|
||||||
|
?.whereType<Map<String, dynamic>>()
|
||||||
|
.map(ClassClearanceProgress.fromJson)
|
||||||
|
.toList();
|
||||||
|
final items = parsed ?? [];
|
||||||
|
_classClearanceProgress =
|
||||||
|
append ? [..._classClearanceProgress, ...items] : items;
|
||||||
|
_classClearanceHasMore = items.length >= limit;
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch class clearance progress: $e');
|
||||||
|
if (!append) _classClearanceProgress = [];
|
||||||
|
_classClearanceHasMore = false;
|
||||||
|
} finally {
|
||||||
|
_isClassClearanceProgressLoading = false;
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> fetchLocoClearanceProgress({
|
||||||
|
int offset = 0,
|
||||||
|
int limit = 20,
|
||||||
|
bool append = false,
|
||||||
|
}) async {
|
||||||
|
_isLocoClearanceProgressLoading = true;
|
||||||
|
if (!append) _locoClearanceProgress = [];
|
||||||
|
try {
|
||||||
|
final json =
|
||||||
|
await api.get('/badge/completion/loco?limit=$limit&offset=$offset');
|
||||||
|
List<dynamic>? list;
|
||||||
|
if (json is List) {
|
||||||
|
list = json;
|
||||||
|
} else if (json is Map) {
|
||||||
|
for (final key in ['progress', 'data', 'items', 'locos']) {
|
||||||
|
final value = json[key];
|
||||||
|
if (value is List) {
|
||||||
|
list = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
final parsed = list
|
||||||
|
?.whereType<Map<String, dynamic>>()
|
||||||
|
.map(LocoClearanceProgress.fromJson)
|
||||||
|
.toList();
|
||||||
|
final items = parsed ?? [];
|
||||||
|
_locoClearanceProgress =
|
||||||
|
append ? [..._locoClearanceProgress, ...items] : items;
|
||||||
|
_locoClearanceHasMore = items.length >= limit;
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch loco clearance progress: $e');
|
||||||
|
if (!append) _locoClearanceProgress = [];
|
||||||
|
_locoClearanceHasMore = false;
|
||||||
|
} finally {
|
||||||
|
_isLocoClearanceProgressLoading = false;
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -21,6 +21,8 @@ class DataService extends ChangeNotifier {
|
|||||||
|
|
||||||
DataService({required this.api});
|
DataService({required this.api});
|
||||||
|
|
||||||
|
String? _currentUserId;
|
||||||
|
|
||||||
_LegFetchOptions _lastLegsFetch = const _LegFetchOptions();
|
_LegFetchOptions _lastLegsFetch = const _LegFetchOptions();
|
||||||
|
|
||||||
// Homepage Data
|
// Homepage Data
|
||||||
@@ -91,6 +93,36 @@ class DataService extends ChangeNotifier {
|
|||||||
bool _isOnThisDayLoading = false;
|
bool _isOnThisDayLoading = false;
|
||||||
bool get isOnThisDayLoading => _isOnThisDayLoading;
|
bool get isOnThisDayLoading => _isOnThisDayLoading;
|
||||||
|
|
||||||
|
// Notifications
|
||||||
|
List<UserNotification> _notifications = [];
|
||||||
|
List<UserNotification> get notifications => _notifications;
|
||||||
|
bool _isNotificationsLoading = false;
|
||||||
|
bool get isNotificationsLoading => _isNotificationsLoading;
|
||||||
|
|
||||||
|
// Badges
|
||||||
|
List<BadgeAward> _badgeAwards = [];
|
||||||
|
List<BadgeAward> get badgeAwards => _badgeAwards;
|
||||||
|
bool _isBadgeAwardsLoading = false;
|
||||||
|
bool get isBadgeAwardsLoading => _isBadgeAwardsLoading;
|
||||||
|
bool _badgeAwardsHasMore = false;
|
||||||
|
bool get badgeAwardsHasMore => _badgeAwardsHasMore;
|
||||||
|
List<ClassClearanceProgress> _classClearanceProgress = [];
|
||||||
|
List<ClassClearanceProgress> get classClearanceProgress =>
|
||||||
|
_classClearanceProgress;
|
||||||
|
bool _isClassClearanceProgressLoading = false;
|
||||||
|
bool get isClassClearanceProgressLoading =>
|
||||||
|
_isClassClearanceProgressLoading;
|
||||||
|
bool _classClearanceHasMore = false;
|
||||||
|
bool get classClearanceHasMore => _classClearanceHasMore;
|
||||||
|
List<LocoClearanceProgress> _locoClearanceProgress = [];
|
||||||
|
List<LocoClearanceProgress> get locoClearanceProgress =>
|
||||||
|
_locoClearanceProgress;
|
||||||
|
bool _isLocoClearanceProgressLoading = false;
|
||||||
|
bool get isLocoClearanceProgressLoading =>
|
||||||
|
_isLocoClearanceProgressLoading;
|
||||||
|
bool _locoClearanceHasMore = false;
|
||||||
|
bool get locoClearanceHasMore => _locoClearanceHasMore;
|
||||||
|
|
||||||
static const List<EventField> _fallbackEventFields = [
|
static const List<EventField> _fallbackEventFields = [
|
||||||
EventField(name: 'operator', display: 'Operator'),
|
EventField(name: 'operator', display: 'Operator'),
|
||||||
EventField(name: 'status', display: 'Status'),
|
EventField(name: 'status', display: 'Status'),
|
||||||
@@ -345,6 +377,8 @@ class DataService extends ChangeNotifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void clear() {
|
void clear() {
|
||||||
|
_currentUserId = null;
|
||||||
|
_lastLegsFetch = const _LegFetchOptions();
|
||||||
_homepageStats = null;
|
_homepageStats = null;
|
||||||
_legs = [];
|
_legs = [];
|
||||||
_onThisDay = [];
|
_onThisDay = [];
|
||||||
@@ -355,9 +389,44 @@ class DataService extends ChangeNotifier {
|
|||||||
_isLocoTimelineLoading.clear();
|
_isLocoTimelineLoading.clear();
|
||||||
_latestLocoChanges = [];
|
_latestLocoChanges = [];
|
||||||
_isLatestLocoChangesLoading = false;
|
_isLatestLocoChangesLoading = false;
|
||||||
|
_isHomepageLoading = false;
|
||||||
|
_isOnThisDayLoading = false;
|
||||||
|
_legsHasMore = false;
|
||||||
|
_isLegsLoading = false;
|
||||||
|
_traction = [];
|
||||||
|
_isTractionLoading = false;
|
||||||
|
_tractionHasMore = false;
|
||||||
|
_latestLocoChangesHasMore = false;
|
||||||
|
_latestLocoChangesFetched = 0;
|
||||||
|
_isTripDetailsLoading = false;
|
||||||
|
_locoClasses = [];
|
||||||
|
_tripList = [];
|
||||||
|
_stationCache.clear();
|
||||||
|
_stationInFlightByKey.clear();
|
||||||
|
_stationNetworks = [];
|
||||||
|
_stationCountryNetworks = {};
|
||||||
|
_stationFiltersFetchedAt = null;
|
||||||
|
_notifications = [];
|
||||||
|
_isNotificationsLoading = false;
|
||||||
|
_badgeAwards = [];
|
||||||
|
_badgeAwardsHasMore = false;
|
||||||
|
_isBadgeAwardsLoading = false;
|
||||||
|
_classClearanceProgress = [];
|
||||||
|
_isClassClearanceProgressLoading = false;
|
||||||
|
_classClearanceHasMore = false;
|
||||||
|
_locoClearanceProgress = [];
|
||||||
|
_isLocoClearanceProgressLoading = false;
|
||||||
|
_locoClearanceHasMore = false;
|
||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void handleAuthChanged(String? userId) {
|
||||||
|
if (_currentUserId == userId) return;
|
||||||
|
_currentUserId = userId;
|
||||||
|
clear();
|
||||||
|
_currentUserId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
double getMileageForCurrentYear() {
|
double getMileageForCurrentYear() {
|
||||||
final currentYear = DateTime.now().year;
|
final currentYear = DateTime.now().year;
|
||||||
return getMileageForYear(currentYear) ?? 0;
|
return getMileageForYear(currentYear) ?? 0;
|
||||||
|
|||||||
62
lib/services/data_service/data_service_notifications.dart
Normal file
62
lib/services/data_service/data_service_notifications.dart
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
part of 'data_service.dart';
|
||||||
|
|
||||||
|
extension DataServiceNotifications on DataService {
|
||||||
|
Future<void> fetchNotifications() async {
|
||||||
|
_isNotificationsLoading = true;
|
||||||
|
try {
|
||||||
|
final json = await api.get('/notifications');
|
||||||
|
List<dynamic>? list;
|
||||||
|
if (json is List) {
|
||||||
|
list = json;
|
||||||
|
} else if (json is Map) {
|
||||||
|
for (final key in ['notifications', 'data', 'items']) {
|
||||||
|
final value = json[key];
|
||||||
|
if (value is List) {
|
||||||
|
list = value;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
final parsed = list
|
||||||
|
?.whereType<Map<String, dynamic>>()
|
||||||
|
.map(UserNotification.fromJson)
|
||||||
|
.where((n) => !n.dismissed)
|
||||||
|
.toList();
|
||||||
|
|
||||||
|
if (parsed != null) {
|
||||||
|
parsed.sort((a, b) {
|
||||||
|
final aTs = a.createdAt?.millisecondsSinceEpoch ?? 0;
|
||||||
|
final bTs = b.createdAt?.millisecondsSinceEpoch ?? 0;
|
||||||
|
return bTs.compareTo(aTs);
|
||||||
|
});
|
||||||
|
_notifications = parsed;
|
||||||
|
} else {
|
||||||
|
_notifications = [];
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch notifications: $e');
|
||||||
|
_notifications = [];
|
||||||
|
} finally {
|
||||||
|
_isNotificationsLoading = false;
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> dismissNotifications(List<int> notificationIds) async {
|
||||||
|
if (notificationIds.isEmpty) return;
|
||||||
|
try {
|
||||||
|
await api.put('/notifications/dismiss', {
|
||||||
|
"notification_ids": notificationIds,
|
||||||
|
"payload": {"dismissed": true},
|
||||||
|
});
|
||||||
|
_notifications = _notifications
|
||||||
|
.where((n) => !notificationIds.contains(n.id))
|
||||||
|
.toList();
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to dismiss notifications: $e');
|
||||||
|
rethrow;
|
||||||
|
} finally {
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,16 +4,25 @@ extension DataServiceTrips on DataService {
|
|||||||
Future<void> fetchTripDetails() async {
|
Future<void> fetchTripDetails() async {
|
||||||
_isTripDetailsLoading = true;
|
_isTripDetailsLoading = true;
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/trips/legs-and-stats');
|
final json = await api.get('/trips/info');
|
||||||
if (json is List) {
|
final tripDetails = _parseTripInfoList(json);
|
||||||
final tripMap = json.map((e) => TripDetail.fromJson(e)).toList();
|
_tripDetails = [...tripDetails]..sort((a, b) => b.id.compareTo(a.id));
|
||||||
_tripDetails = [...tripMap]..sort((a, b) => b.id.compareTo(a.id));
|
_tripList = tripDetails
|
||||||
} else {
|
.map(
|
||||||
_tripDetails = [];
|
(detail) => TripSummary(
|
||||||
}
|
tripId: detail.id,
|
||||||
|
tripName: detail.name,
|
||||||
|
tripMileage: detail.mileage,
|
||||||
|
legCount: detail.legCount,
|
||||||
|
locoStats: detail.locoStats,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList()
|
||||||
|
..sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch trip_map: $e');
|
debugPrint('Failed to fetch trip_map: $e');
|
||||||
_tripDetails = [];
|
_tripDetails = [];
|
||||||
|
_tripList = [];
|
||||||
} finally {
|
} finally {
|
||||||
_isTripDetailsLoading = false;
|
_isTripDetailsLoading = false;
|
||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
@@ -23,48 +32,17 @@ extension DataServiceTrips on DataService {
|
|||||||
Future<List<TripLocoStat>> fetchTripLocoStats(int tripId) async {
|
Future<List<TripLocoStat>> fetchTripLocoStats(int tripId) async {
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/trips/stats/$tripId');
|
final json = await api.get('/trips/stats/$tripId');
|
||||||
return _parseTripLocoStats(json);
|
return TripLocoStat.listFromJson(json);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch trip loco stats: $e');
|
debugPrint('Failed to fetch trip loco stats: $e');
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
List<TripLocoStat> _parseTripLocoStats(dynamic json) {
|
|
||||||
List<dynamic>? list;
|
|
||||||
if (json is List) {
|
|
||||||
list = json.expand((e) => e is List ? e : [e]).toList();
|
|
||||||
} else if (json is Map) {
|
|
||||||
for (final key in ['locos', 'stats', 'data', 'trip_locos']) {
|
|
||||||
final candidate = json[key];
|
|
||||||
if (candidate is List) {
|
|
||||||
list = candidate.expand((e) => e is List ? e : [e]).toList();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (list == null) return [];
|
|
||||||
return list
|
|
||||||
.whereType<Map<String, dynamic>>()
|
|
||||||
.map((e) => TripLocoStat.fromJson(e))
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> fetchTrips() async {
|
Future<void> fetchTrips() async {
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/trips/mileage');
|
final json = await api.get('/trips/info');
|
||||||
Iterable<dynamic>? raw;
|
final raw = _extractTrips(json);
|
||||||
if (json is List) {
|
|
||||||
raw = json;
|
|
||||||
} else if (json is Map) {
|
|
||||||
for (final key in ['trips', 'trip_data', 'data']) {
|
|
||||||
final value = json[key];
|
|
||||||
if (value is List) {
|
|
||||||
raw = value;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (raw != null) {
|
if (raw != null) {
|
||||||
final tripMap = raw
|
final tripMap = raw
|
||||||
.whereType<Map<String, dynamic>>()
|
.whereType<Map<String, dynamic>>()
|
||||||
@@ -119,8 +97,9 @@ extension DataServiceTrips on DataService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void upsertTripSummary(TripSummary trip) {
|
void upsertTripSummary(TripSummary trip) {
|
||||||
final existingIndex =
|
final existingIndex = _tripList.indexWhere(
|
||||||
_tripList.indexWhere((element) => element.tripId == trip.tripId);
|
(element) => element.tripId == trip.tripId,
|
||||||
|
);
|
||||||
if (existingIndex >= 0) {
|
if (existingIndex >= 0) {
|
||||||
_tripList[existingIndex] = trip;
|
_tripList[existingIndex] = trip;
|
||||||
} else {
|
} else {
|
||||||
@@ -129,4 +108,24 @@ extension DataServiceTrips on DataService {
|
|||||||
_tripList.sort((a, b) => b.tripId.compareTo(a.tripId));
|
_tripList.sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Iterable<dynamic>? _extractTrips(dynamic json) {
|
||||||
|
if (json is List) return json;
|
||||||
|
if (json is Map) {
|
||||||
|
for (final key in ['trips', 'trip_data', 'data', 'trip_info']) {
|
||||||
|
final value = json[key];
|
||||||
|
if (value is List) return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<TripDetail> _parseTripInfoList(dynamic json) {
|
||||||
|
final raw = _extractTrips(json);
|
||||||
|
if (raw == null) return const [];
|
||||||
|
return raw
|
||||||
|
.whereType<Map<String, dynamic>>()
|
||||||
|
.map((e) => TripDetail.fromJson(e))
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,35 +3,46 @@ import 'package:flutter/gestures.dart';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:mileograph_flutter/components/login/login.dart';
|
|
||||||
import 'package:mileograph_flutter/components/pages/calculator.dart';
|
import 'package:mileograph_flutter/components/pages/calculator.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/calculator_details.dart';
|
import 'package:mileograph_flutter/components/pages/calculator_details.dart';
|
||||||
|
import 'package:mileograph_flutter/components/login/login.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/dashboard.dart';
|
import 'package:mileograph_flutter/components/pages/dashboard.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/legs.dart';
|
|
||||||
import 'package:mileograph_flutter/components/pages/loco_legs.dart';
|
import 'package:mileograph_flutter/components/pages/loco_legs.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/loco_timeline.dart';
|
import 'package:mileograph_flutter/components/pages/loco_timeline.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/logbook.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/more.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/new_entry.dart';
|
import 'package:mileograph_flutter/components/pages/new_entry.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/new_traction.dart';
|
import 'package:mileograph_flutter/components/pages/new_traction.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/profile.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/settings.dart';
|
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/traction.dart';
|
import 'package:mileograph_flutter/components/pages/traction.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/trips.dart';
|
|
||||||
import 'package:mileograph_flutter/services/authservice.dart';
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.dart';
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
import 'package:mileograph_flutter/services/navigation_guard.dart';
|
import 'package:mileograph_flutter/services/navigation_guard.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
final GlobalKey<NavigatorState> _shellNavigatorKey = GlobalKey<NavigatorState>();
|
final GlobalKey<NavigatorState> _shellNavigatorKey =
|
||||||
|
GlobalKey<NavigatorState>();
|
||||||
|
|
||||||
const List<String> _contentPages = [
|
const List<String> _contentPages = [
|
||||||
"/",
|
"/dashboard",
|
||||||
"/calculator",
|
"/calculator",
|
||||||
"/legs",
|
"/logbook",
|
||||||
"/traction",
|
"/traction",
|
||||||
"/trips",
|
|
||||||
"/add",
|
"/add",
|
||||||
|
"/more",
|
||||||
];
|
];
|
||||||
|
|
||||||
const int _addTabIndex = 5;
|
const List<String> _defaultTabDestinations = [
|
||||||
|
"/dashboard",
|
||||||
|
"/calculator",
|
||||||
|
"/logbook/entries",
|
||||||
|
"/traction",
|
||||||
|
"/add",
|
||||||
|
"/more",
|
||||||
|
];
|
||||||
|
|
||||||
|
const int _addTabIndex = 4;
|
||||||
|
|
||||||
class _NavItem {
|
class _NavItem {
|
||||||
final String label;
|
final String label;
|
||||||
@@ -42,18 +53,32 @@ class _NavItem {
|
|||||||
const List<_NavItem> _navItems = [
|
const List<_NavItem> _navItems = [
|
||||||
_NavItem("Home", Icons.home),
|
_NavItem("Home", Icons.home),
|
||||||
_NavItem("Calculator", Icons.route),
|
_NavItem("Calculator", Icons.route),
|
||||||
_NavItem("Entries", Icons.list),
|
_NavItem("Logbook", Icons.menu_book),
|
||||||
_NavItem("Traction", Icons.train),
|
_NavItem("Traction", Icons.train),
|
||||||
_NavItem("Trips", Icons.book),
|
|
||||||
_NavItem("Add", Icons.add),
|
_NavItem("Add", Icons.add),
|
||||||
|
_NavItem("More", Icons.more_horiz),
|
||||||
];
|
];
|
||||||
|
|
||||||
int tabIndexForPath(String path) {
|
int tabIndexForPath(String path) {
|
||||||
final newIndex = _contentPages.indexWhere((routePath) {
|
var matchPath = path;
|
||||||
if (path == routePath) return true;
|
if (matchPath == '/') matchPath = '/dashboard';
|
||||||
if (routePath == '/') return path == '/';
|
if (matchPath.startsWith('/dashboard')) return 0;
|
||||||
return path.startsWith('$routePath/');
|
if (matchPath.startsWith('/legs')) {
|
||||||
});
|
matchPath = '/logbook/entries';
|
||||||
|
} else if (matchPath.startsWith('/trips')) {
|
||||||
|
matchPath = '/logbook/trips';
|
||||||
|
}
|
||||||
|
if (matchPath.startsWith('/logbook')) {
|
||||||
|
matchPath = '/logbook';
|
||||||
|
} else if (matchPath.startsWith('/profile') ||
|
||||||
|
matchPath.startsWith('/settings') ||
|
||||||
|
matchPath.startsWith('/more')) {
|
||||||
|
matchPath = '/more';
|
||||||
|
}
|
||||||
|
final newIndex = _contentPages.indexWhere(
|
||||||
|
(routePath) =>
|
||||||
|
matchPath == routePath || matchPath.startsWith('$routePath/'),
|
||||||
|
);
|
||||||
return newIndex < 0 ? 0 : newIndex;
|
return newIndex < 0 ? 0 : newIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,6 +106,7 @@ class _MyAppState extends State<MyApp> {
|
|||||||
_routerInitialized = true;
|
_routerInitialized = true;
|
||||||
final auth = context.read<AuthService>();
|
final auth = context.read<AuthService>();
|
||||||
_router = GoRouter(
|
_router = GoRouter(
|
||||||
|
initialLocation: '/dashboard',
|
||||||
refreshListenable: auth,
|
refreshListenable: auth,
|
||||||
redirect: (context, state) {
|
redirect: (context, state) {
|
||||||
final loggedIn = auth.isLoggedIn;
|
final loggedIn = auth.isLoggedIn;
|
||||||
@@ -88,29 +114,59 @@ class _MyAppState extends State<MyApp> {
|
|||||||
final atSettings = state.uri.toString() == '/settings';
|
final atSettings = state.uri.toString() == '/settings';
|
||||||
|
|
||||||
if (!loggedIn && !loggingIn && !atSettings) return '/login';
|
if (!loggedIn && !loggingIn && !atSettings) return '/login';
|
||||||
if (loggedIn && loggingIn) return '/';
|
if (loggedIn && loggingIn) return '/dashboard';
|
||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
routes: [
|
routes: [
|
||||||
|
GoRoute(path: '/', redirect: (context, state) => '/dashboard'),
|
||||||
ShellRoute(
|
ShellRoute(
|
||||||
navigatorKey: _shellNavigatorKey,
|
navigatorKey: _shellNavigatorKey,
|
||||||
builder: (context, state, child) => MyHomePage(child: child),
|
builder: (context, state, child) => MyHomePage(child: child),
|
||||||
routes: [
|
routes: [
|
||||||
GoRoute(path: '/', builder: (context, state) => const Dashboard()),
|
GoRoute(
|
||||||
|
path: '/dashboard',
|
||||||
|
builder: (context, state) => const Dashboard(),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/calculator',
|
path: '/calculator',
|
||||||
builder: (context, state) => CalculatorPage(),
|
builder: (context, state) => const CalculatorPage(),
|
||||||
|
routes: [
|
||||||
|
GoRoute(
|
||||||
|
path: 'details',
|
||||||
|
builder: (context, state) =>
|
||||||
|
CalculatorDetailsPage(result: state.extra),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/calculator/details',
|
path: '/logbook',
|
||||||
builder: (context, state) =>
|
redirect: (context, state) => '/logbook/entries',
|
||||||
CalculatorDetailsPage(result: state.extra),
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/logbook/entries',
|
||||||
|
builder: (context, state) => const LogbookPage(),
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/logbook/trips',
|
||||||
|
builder: (context, state) =>
|
||||||
|
const LogbookPage(initialTab: LogbookTab.trips),
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/trips',
|
||||||
|
redirect: (context, state) => '/logbook/trips',
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/legs',
|
||||||
|
redirect: (context, state) => '/logbook/entries',
|
||||||
),
|
),
|
||||||
GoRoute(path: '/legs', builder: (context, state) => LegsPage()),
|
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/traction',
|
path: '/traction',
|
||||||
builder: (context, state) => TractionPage(),
|
builder: (context, state) => TractionPage(),
|
||||||
),
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/profile',
|
||||||
|
builder: (context, state) => const ProfilePage(),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/traction/:id/timeline',
|
path: '/traction/:id/timeline',
|
||||||
builder: (_, state) {
|
builder: (_, state) {
|
||||||
@@ -147,8 +203,19 @@ class _MyAppState extends State<MyApp> {
|
|||||||
path: '/traction/new',
|
path: '/traction/new',
|
||||||
builder: (context, state) => const NewTractionPage(),
|
builder: (context, state) => const NewTractionPage(),
|
||||||
),
|
),
|
||||||
GoRoute(path: '/trips', builder: (context, state) => TripsPage()),
|
|
||||||
GoRoute(path: '/add', builder: (context, state) => NewEntryPage()),
|
GoRoute(path: '/add', builder: (context, state) => NewEntryPage()),
|
||||||
|
GoRoute(
|
||||||
|
path: '/more',
|
||||||
|
builder: (context, state) => const MorePage(),
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/more/profile',
|
||||||
|
builder: (context, state) => const ProfilePage(),
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/more/settings',
|
||||||
|
builder: (context, state) => const SettingsPage(),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/legs/edit/:id',
|
path: '/legs/edit/:id',
|
||||||
builder: (_, state) {
|
builder: (_, state) {
|
||||||
@@ -159,7 +226,10 @@ class _MyAppState extends State<MyApp> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
GoRoute(path: '/login', builder: (context, state) => const LoginScreen()),
|
GoRoute(
|
||||||
|
path: '/login',
|
||||||
|
builder: (context, state) => const LoginScreen(),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/settings',
|
path: '/settings',
|
||||||
builder: (context, state) => const SettingsPage(),
|
builder: (context, state) => const SettingsPage(),
|
||||||
@@ -207,24 +277,31 @@ class MyHomePage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _MyHomePageState extends State<MyHomePage> {
|
class _MyHomePageState extends State<MyHomePage> {
|
||||||
List<String> get contentPages => _contentPages;
|
List<String> get tabDestinations => _defaultTabDestinations;
|
||||||
|
|
||||||
Future<void> _onItemTapped(int index, int currentIndex) async {
|
Future<void> _onItemTapped(int index, int currentIndex) async {
|
||||||
if (index < 0 || index >= contentPages.length || index == currentIndex) {
|
if (index < 0 || index >= tabDestinations.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
final currentPath = GoRouterState.of(context).uri.path;
|
||||||
|
final targetPath = tabDestinations[index];
|
||||||
|
final alreadyAtTarget =
|
||||||
|
currentPath == targetPath || currentPath.startsWith('$targetPath/');
|
||||||
|
if (index == currentIndex && alreadyAtTarget) return;
|
||||||
|
|
||||||
await NavigationGuard.attemptNavigation(() async {
|
await NavigationGuard.attemptNavigation(() async {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
_navigateToIndex(index);
|
_navigateToIndex(index);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
final List<int> _history = [];
|
final List<String> _history = [];
|
||||||
int _historyPosition = -1;
|
int _historyPosition = -1;
|
||||||
final List<int> _forwardHistory = [];
|
final List<String> _forwardHistory = [];
|
||||||
bool _suppressRecord = false;
|
bool _suppressRecord = false;
|
||||||
|
|
||||||
bool _fetched = false;
|
bool _fetched = false;
|
||||||
|
bool _railCollapsed = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void didChangeDependencies() {
|
void didChangeDependencies() {
|
||||||
@@ -258,6 +335,9 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
if (data.tripDetails.isEmpty) {
|
if (data.tripDetails.isEmpty) {
|
||||||
data.fetchTripDetails();
|
data.fetchTripDetails();
|
||||||
}
|
}
|
||||||
|
if (data.notifications.isEmpty) {
|
||||||
|
data.fetchNotifications();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -266,13 +346,14 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final uri = GoRouterState.of(context).uri;
|
final uri = GoRouterState.of(context).uri;
|
||||||
final pageIndex = tabIndexForPath(uri.path);
|
final pageIndex = tabIndexForPath(uri.path);
|
||||||
_syncHistory(pageIndex);
|
_syncHistory(uri.path);
|
||||||
if (pageIndex != _addTabIndex) {
|
if (pageIndex != _addTabIndex) {
|
||||||
NavigationGuard.unregister();
|
NavigationGuard.unregister();
|
||||||
}
|
}
|
||||||
final homepageReady = context.select<DataService, bool>(
|
final homepageReady = context.select<DataService, bool>(
|
||||||
(data) => data.homepageStats != null || !data.isHomepageLoading,
|
(data) => data.homepageStats != null || !data.isHomepageLoading,
|
||||||
);
|
);
|
||||||
|
final data = context.watch<DataService>();
|
||||||
final auth = context.read<AuthService>();
|
final auth = context.read<AuthService>();
|
||||||
|
|
||||||
final currentPage = homepageReady
|
final currentPage = homepageReady
|
||||||
@@ -282,7 +363,9 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
final scaffold = LayoutBuilder(
|
final scaffold = LayoutBuilder(
|
||||||
builder: (context, constraints) {
|
builder: (context, constraints) {
|
||||||
final isWide = constraints.maxWidth >= 900;
|
final isWide = constraints.maxWidth >= 900;
|
||||||
final railExtended = constraints.maxWidth >= 1400;
|
final defaultRailExtended = constraints.maxWidth >= 1400;
|
||||||
|
final railExtended = defaultRailExtended && !_railCollapsed;
|
||||||
|
final showRailToggle = defaultRailExtended;
|
||||||
final navRailDestinations = _navItems
|
final navRailDestinations = _navItems
|
||||||
.map(
|
.map(
|
||||||
(item) => NavigationRailDestination(
|
(item) => NavigationRailDestination(
|
||||||
@@ -307,7 +390,10 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
TextSpan(
|
TextSpan(
|
||||||
children: const [
|
children: const [
|
||||||
TextSpan(text: "Mile"),
|
TextSpan(text: "Mile"),
|
||||||
TextSpan(text: "O", style: TextStyle(color: Colors.red)),
|
TextSpan(
|
||||||
|
text: "O",
|
||||||
|
style: TextStyle(color: Colors.red),
|
||||||
|
),
|
||||||
TextSpan(text: "graph"),
|
TextSpan(text: "graph"),
|
||||||
],
|
],
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
@@ -318,16 +404,16 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
const IconButton(
|
_buildNotificationAction(context, data),
|
||||||
onPressed: null,
|
|
||||||
icon: Icon(Icons.account_circle),
|
|
||||||
),
|
|
||||||
IconButton(
|
IconButton(
|
||||||
tooltip: 'Settings',
|
tooltip: 'Settings',
|
||||||
onPressed: () => context.go('/settings'),
|
onPressed: () => context.go('/more/settings'),
|
||||||
icon: const Icon(Icons.settings),
|
icon: const Icon(Icons.settings),
|
||||||
),
|
),
|
||||||
IconButton(onPressed: auth.logout, icon: const Icon(Icons.logout)),
|
IconButton(
|
||||||
|
onPressed: auth.logout,
|
||||||
|
icon: const Icon(Icons.logout),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
bottomNavigationBar: isWide
|
bottomNavigationBar: isWide
|
||||||
@@ -342,15 +428,35 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
? Row(
|
? Row(
|
||||||
children: [
|
children: [
|
||||||
SafeArea(
|
SafeArea(
|
||||||
child: NavigationRail(
|
child: LayoutBuilder(
|
||||||
selectedIndex: pageIndex,
|
builder: (ctx, _) {
|
||||||
extended: railExtended,
|
return Stack(
|
||||||
labelType: railExtended
|
children: [
|
||||||
? NavigationRailLabelType.none
|
Padding(
|
||||||
: NavigationRailLabelType.selected,
|
padding: EdgeInsets.only(
|
||||||
onDestinationSelected: (int index) =>
|
bottom: showRailToggle ? 56.0 : 0.0,
|
||||||
_onItemTapped(index, pageIndex),
|
),
|
||||||
destinations: navRailDestinations,
|
child: NavigationRail(
|
||||||
|
selectedIndex: pageIndex,
|
||||||
|
extended: railExtended,
|
||||||
|
labelType: railExtended
|
||||||
|
? NavigationRailLabelType.none
|
||||||
|
: NavigationRailLabelType.selected,
|
||||||
|
onDestinationSelected: (int index) =>
|
||||||
|
_onItemTapped(index, pageIndex),
|
||||||
|
destinations: navRailDestinations,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (showRailToggle)
|
||||||
|
Positioned(
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
|
bottom: 8,
|
||||||
|
child: _buildRailToggleButton(railExtended),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const VerticalDivider(width: 1),
|
const VerticalDivider(width: 1),
|
||||||
@@ -365,7 +471,8 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
return Shortcuts(
|
return Shortcuts(
|
||||||
shortcuts: <LogicalKeySet, Intent>{
|
shortcuts: <LogicalKeySet, Intent>{
|
||||||
LogicalKeySet(LogicalKeyboardKey.browserBack): const _BackIntent(),
|
LogicalKeySet(LogicalKeyboardKey.browserBack): const _BackIntent(),
|
||||||
LogicalKeySet(LogicalKeyboardKey.browserForward): const _ForwardIntent(),
|
LogicalKeySet(LogicalKeyboardKey.browserForward):
|
||||||
|
const _ForwardIntent(),
|
||||||
},
|
},
|
||||||
child: Actions(
|
child: Actions(
|
||||||
actions: {
|
actions: {
|
||||||
@@ -391,7 +498,10 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
canPop: false,
|
canPop: false,
|
||||||
onPopInvokedWithResult: (didPop, _) async {
|
onPopInvokedWithResult: (didPop, _) async {
|
||||||
if (didPop) return;
|
if (didPop) return;
|
||||||
await _handleBackNavigation(allowExit: true, recordForward: false);
|
await _handleBackNavigation(
|
||||||
|
allowExit: true,
|
||||||
|
recordForward: false,
|
||||||
|
);
|
||||||
},
|
},
|
||||||
child: scaffold,
|
child: scaffold,
|
||||||
),
|
),
|
||||||
@@ -410,31 +520,296 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int get _currentPageIndex => tabIndexForPath(GoRouterState.of(context).uri.path);
|
Widget _buildRailToggleButton(bool railExtended) {
|
||||||
|
final collapseIcon = railExtended
|
||||||
|
? Icons.chevron_left
|
||||||
|
: Icons.chevron_right;
|
||||||
|
final collapseLabel = railExtended ? 'Collapse' : 'Expand';
|
||||||
|
|
||||||
|
if (railExtended) {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||||
|
child: TextButton.icon(
|
||||||
|
onPressed: () => setState(() => _railCollapsed = !_railCollapsed),
|
||||||
|
icon: Icon(collapseIcon),
|
||||||
|
label: Text(collapseLabel),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||||
|
child: IconButton(
|
||||||
|
icon: Icon(collapseIcon),
|
||||||
|
tooltip: collapseLabel,
|
||||||
|
onPressed: () => setState(() => _railCollapsed = !_railCollapsed),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildNotificationAction(BuildContext context, DataService data) {
|
||||||
|
final count = data.notifications.length;
|
||||||
|
final hasBadge = count > 0;
|
||||||
|
final badgeText = count > 9 ? '9+' : '$count';
|
||||||
|
final isLoading = data.isNotificationsLoading;
|
||||||
|
|
||||||
|
return Stack(
|
||||||
|
clipBehavior: Clip.none,
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
tooltip: 'Notifications',
|
||||||
|
onPressed: () => _openNotificationsPanel(context),
|
||||||
|
icon: isLoading
|
||||||
|
? const SizedBox(
|
||||||
|
width: 22,
|
||||||
|
height: 22,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.notifications_none),
|
||||||
|
),
|
||||||
|
if (hasBadge)
|
||||||
|
Positioned(
|
||||||
|
right: 6,
|
||||||
|
top: 8,
|
||||||
|
child: IgnorePointer(child: _buildBadge(badgeText)),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _openNotificationsPanel(BuildContext context) async {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
final isWide = MediaQuery.sizeOf(context).width >= 900;
|
||||||
|
final sheetHeight = MediaQuery.sizeOf(context).height * 0.9;
|
||||||
|
try {
|
||||||
|
await data.fetchNotifications();
|
||||||
|
} catch (_) {
|
||||||
|
// Already logged inside data service.
|
||||||
|
}
|
||||||
|
if (!context.mounted) return;
|
||||||
|
|
||||||
|
if (isWide) {
|
||||||
|
await showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (dialogCtx) => Dialog(
|
||||||
|
insetPadding: const EdgeInsets.all(16),
|
||||||
|
child: _buildNotificationsContent(dialogCtx, isWide),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
await showModalBottomSheet(
|
||||||
|
context: context,
|
||||||
|
isScrollControlled: true,
|
||||||
|
builder: (sheetCtx) {
|
||||||
|
return SizedBox(
|
||||||
|
height: sheetHeight,
|
||||||
|
child: SafeArea(
|
||||||
|
child: _buildNotificationsContent(sheetCtx, isWide),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildNotificationsContent(BuildContext context, bool isWide) {
|
||||||
|
final data = context.watch<DataService>();
|
||||||
|
final notifications = data.notifications;
|
||||||
|
final loading = data.isNotificationsLoading;
|
||||||
|
final listHeight = isWide
|
||||||
|
? 380.0
|
||||||
|
: MediaQuery.of(context).size.height * 0.6;
|
||||||
|
|
||||||
|
Widget body;
|
||||||
|
if (loading && notifications.isEmpty) {
|
||||||
|
body = const Center(
|
||||||
|
child: Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 24.0),
|
||||||
|
child: CircularProgressIndicator(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else if (notifications.isEmpty) {
|
||||||
|
body = const Padding(
|
||||||
|
padding: EdgeInsets.symmetric(vertical: 12.0),
|
||||||
|
child: Text('No notifications right now.'),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
body = SizedBox(
|
||||||
|
height: listHeight,
|
||||||
|
child: ListView.separated(
|
||||||
|
itemCount: notifications.length,
|
||||||
|
separatorBuilder: (_, index) => const SizedBox(height: 8),
|
||||||
|
itemBuilder: (ctx, index) {
|
||||||
|
final item = notifications[index];
|
||||||
|
return Card(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(12.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
item.title.isNotEmpty
|
||||||
|
? item.title
|
||||||
|
: 'Notification',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium
|
||||||
|
?.copyWith(fontWeight: FontWeight.w700),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Text(
|
||||||
|
item.body,
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
if (item.createdAt != null) ...[
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
Text(
|
||||||
|
_formatNotificationTime(item.createdAt!),
|
||||||
|
style: Theme.of(context).textTheme.bodySmall
|
||||||
|
?.copyWith(
|
||||||
|
color: () {
|
||||||
|
final baseColor = Theme.of(
|
||||||
|
context,
|
||||||
|
).textTheme.bodySmall?.color;
|
||||||
|
if (baseColor == null) return null;
|
||||||
|
final newAlpha = (baseColor.a * 0.7)
|
||||||
|
.clamp(0.0, 1.0);
|
||||||
|
return baseColor.withValues(
|
||||||
|
alpha: newAlpha,
|
||||||
|
);
|
||||||
|
}(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () =>
|
||||||
|
_dismissNotifications(context, [item.id]),
|
||||||
|
child: const Text('Dismiss'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return SizedBox(
|
||||||
|
width: isWide ? 420 : double.infinity,
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'Notifications',
|
||||||
|
style: Theme.of(
|
||||||
|
context,
|
||||||
|
).textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
const Spacer(),
|
||||||
|
TextButton(
|
||||||
|
onPressed: notifications.isEmpty
|
||||||
|
? null
|
||||||
|
: () => _dismissNotifications(
|
||||||
|
context,
|
||||||
|
notifications.map((e) => e.id).toList(),
|
||||||
|
),
|
||||||
|
child: const Text('Dismiss all'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
body,
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _dismissNotifications(
|
||||||
|
BuildContext context,
|
||||||
|
List<int> ids,
|
||||||
|
) async {
|
||||||
|
if (ids.isEmpty) return;
|
||||||
|
final messenger = ScaffoldMessenger.maybeOf(context);
|
||||||
|
try {
|
||||||
|
await context.read<DataService>().dismissNotifications(ids);
|
||||||
|
} catch (e) {
|
||||||
|
messenger?.showSnackBar(SnackBar(content: Text('Failed to dismiss: $e')));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatNotificationTime(DateTime dateTime) {
|
||||||
|
final y = dateTime.year.toString().padLeft(4, '0');
|
||||||
|
final m = dateTime.month.toString().padLeft(2, '0');
|
||||||
|
final d = dateTime.day.toString().padLeft(2, '0');
|
||||||
|
final hh = dateTime.hour.toString().padLeft(2, '0');
|
||||||
|
final mm = dateTime.minute.toString().padLeft(2, '0');
|
||||||
|
return '$y-$m-$d $hh:$mm';
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildBadge(String label) {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.redAccent,
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
),
|
||||||
|
constraints: const BoxConstraints(minWidth: 20),
|
||||||
|
child: Text(
|
||||||
|
label,
|
||||||
|
style: const TextStyle(
|
||||||
|
color: Colors.white,
|
||||||
|
fontSize: 11,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Future<bool> _handleBackNavigation({
|
Future<bool> _handleBackNavigation({
|
||||||
bool allowExit = false,
|
bool allowExit = false,
|
||||||
bool recordForward = false,
|
bool recordForward = false,
|
||||||
}) async {
|
}) async {
|
||||||
final pageIndex = _currentPageIndex;
|
final currentPath = GoRouterState.of(context).uri.path;
|
||||||
final shellNav = _shellNavigatorKey.currentState;
|
final shellNav = _shellNavigatorKey.currentState;
|
||||||
if (shellNav != null && shellNav.canPop()) {
|
if (shellNav != null && shellNav.canPop()) {
|
||||||
|
if (recordForward) _pushForward(currentPath);
|
||||||
|
_alignHistoryAfterPop(currentPath);
|
||||||
shellNav.pop();
|
shellNav.pop();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_historyPosition > 0) {
|
if (_historyPosition > 0) {
|
||||||
if (recordForward) _pushForward(pageIndex);
|
if (recordForward) _pushForward(currentPath);
|
||||||
_historyPosition -= 1;
|
_historyPosition -= 1;
|
||||||
_suppressRecord = true;
|
_suppressRecord = true;
|
||||||
context.go(contentPages[_history[_historyPosition]]);
|
context.go(_history[_historyPosition]);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pageIndex != 0) {
|
final homePath = tabDestinations.first;
|
||||||
if (recordForward) _pushForward(pageIndex);
|
if (currentPath != homePath) {
|
||||||
|
if (recordForward) _pushForward(currentPath);
|
||||||
_suppressRecord = true;
|
_suppressRecord = true;
|
||||||
context.go(contentPages[0]);
|
context.go(homePath);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -448,35 +823,48 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
|
|
||||||
Future<bool> _handleForwardNavigation() async {
|
Future<bool> _handleForwardNavigation() async {
|
||||||
if (_forwardHistory.isEmpty) return false;
|
if (_forwardHistory.isEmpty) return false;
|
||||||
final nextTab = _forwardHistory.removeLast();
|
final nextPath = _forwardHistory.removeLast();
|
||||||
|
|
||||||
// Move cursor forward, keeping history in sync.
|
// Move cursor forward, keeping history in sync.
|
||||||
if (_historyPosition < _history.length - 1) {
|
if (_historyPosition < _history.length - 1) {
|
||||||
_historyPosition += 1;
|
_historyPosition += 1;
|
||||||
_history[_historyPosition] = nextTab;
|
_history[_historyPosition] = nextPath;
|
||||||
if (_historyPosition < _history.length - 1) {
|
if (_historyPosition < _history.length - 1) {
|
||||||
_history.removeRange(_historyPosition + 1, _history.length);
|
_history.removeRange(_historyPosition + 1, _history.length);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
_history.add(nextTab);
|
_history.add(nextPath);
|
||||||
_historyPosition = _history.length - 1;
|
_historyPosition = _history.length - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
_suppressRecord = true;
|
_suppressRecord = true;
|
||||||
if (!mounted) return false;
|
if (!mounted) return false;
|
||||||
context.go(contentPages[nextTab]);
|
context.go(nextPath);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _pushForward(int pageIndex) {
|
void _pushForward(String path) {
|
||||||
if (_forwardHistory.isEmpty || _forwardHistory.last != pageIndex) {
|
if (_forwardHistory.isEmpty || _forwardHistory.last != path) {
|
||||||
_forwardHistory.add(pageIndex);
|
_forwardHistory.add(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void _syncHistory(int pageIndex) {
|
void _alignHistoryAfterPop(String currentPath) {
|
||||||
|
if (_history.isEmpty) return;
|
||||||
|
if (_historyPosition >= 0 &&
|
||||||
|
_historyPosition < _history.length &&
|
||||||
|
_history[_historyPosition] == currentPath) {
|
||||||
|
if (_historyPosition > 0) {
|
||||||
|
_historyPosition -= 1;
|
||||||
|
}
|
||||||
|
_history.removeRange(_historyPosition + 1, _history.length);
|
||||||
|
_suppressRecord = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void _syncHistory(String path) {
|
||||||
if (_history.isEmpty) {
|
if (_history.isEmpty) {
|
||||||
_history.add(pageIndex);
|
_history.add(path);
|
||||||
_historyPosition = 0;
|
_historyPosition = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -486,13 +874,13 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
}
|
}
|
||||||
if (_historyPosition >= 0 &&
|
if (_historyPosition >= 0 &&
|
||||||
_historyPosition < _history.length &&
|
_historyPosition < _history.length &&
|
||||||
_history[_historyPosition] == pageIndex) {
|
_history[_historyPosition] == path) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (_historyPosition < _history.length - 1) {
|
if (_historyPosition < _history.length - 1) {
|
||||||
_history.removeRange(_historyPosition + 1, _history.length);
|
_history.removeRange(_historyPosition + 1, _history.length);
|
||||||
}
|
}
|
||||||
_history.add(pageIndex);
|
_history.add(path);
|
||||||
_historyPosition = _history.length - 1;
|
_historyPosition = _history.length - 1;
|
||||||
_forwardHistory.clear();
|
_forwardHistory.clear();
|
||||||
}
|
}
|
||||||
@@ -500,6 +888,6 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
void _navigateToIndex(int index) {
|
void _navigateToIndex(int index) {
|
||||||
_suppressRecord = false;
|
_suppressRecord = false;
|
||||||
_forwardHistory.clear();
|
_forwardHistory.clear();
|
||||||
context.go(contentPages[index]);
|
context.go(tabDestinations[index]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
|||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 0.3.4+1
|
version: 0.5.0+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
@@ -8,13 +8,12 @@ void main() {
|
|||||||
expect(tabIndexForPath('/calculator/details'), 1);
|
expect(tabIndexForPath('/calculator/details'), 1);
|
||||||
expect(tabIndexForPath('/legs'), 2);
|
expect(tabIndexForPath('/legs'), 2);
|
||||||
expect(tabIndexForPath('/traction/12/timeline'), 3);
|
expect(tabIndexForPath('/traction/12/timeline'), 3);
|
||||||
expect(tabIndexForPath('/trips'), 4);
|
expect(tabIndexForPath('/trips'), 2);
|
||||||
expect(tabIndexForPath('/add'), 5);
|
expect(tabIndexForPath('/add'), 4);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('tabIndexForPath ignores query when parsing uri', () {
|
test('tabIndexForPath ignores query when parsing uri', () {
|
||||||
expect(tabIndexForPath(Uri.parse('/trips?sort=desc').path), 4);
|
expect(tabIndexForPath(Uri.parse('/trips?sort=desc').path), 2);
|
||||||
expect(tabIndexForPath(Uri.parse('/calculator/details?x=1').path), 1);
|
expect(tabIndexForPath(Uri.parse('/calculator/details?x=1').path), 1);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user