Compare commits
3 Commits
v0.3.0-dev
...
v0.3.2-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 950978b021 | |||
| dc5ed2567f | |||
| b1a8f7baf4 |
13
lib/app.dart
13
lib/app.dart
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:mileograph_flutter/services/api_service.dart';
|
import 'package:mileograph_flutter/services/api_service.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/endpoint_service.dart';
|
||||||
import 'package:mileograph_flutter/ui/app_shell.dart';
|
import 'package:mileograph_flutter/ui/app_shell.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
@@ -12,8 +13,16 @@ class App extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return MultiProvider(
|
return MultiProvider(
|
||||||
providers: [
|
providers: [
|
||||||
Provider<ApiService>(
|
ChangeNotifierProvider<EndpointService>(
|
||||||
create: (_) => ApiService(baseUrl: 'http://localhost:8000/api/v1'),
|
create: (_) => EndpointService(),
|
||||||
|
),
|
||||||
|
ProxyProvider<EndpointService, ApiService>(
|
||||||
|
update: (_, endpoint, api) {
|
||||||
|
final service = api ?? ApiService(baseUrl: endpoint.baseUrl);
|
||||||
|
service.setBaseUrl(endpoint.baseUrl);
|
||||||
|
return service;
|
||||||
|
},
|
||||||
|
create: (_) => ApiService(baseUrl: EndpointService.defaultBaseUrl),
|
||||||
),
|
),
|
||||||
ChangeNotifierProvider<AuthService>(
|
ChangeNotifierProvider<AuthService>(
|
||||||
create: (context) => AuthService(api: context.read<ApiService>()),
|
create: (context) => AuthService(api: context.read<ApiService>()),
|
||||||
|
|||||||
@@ -38,9 +38,25 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Row(
|
||||||
'Latest loco changes',
|
children: [
|
||||||
style: textTheme.titleMedium?.copyWith(fontWeight: FontWeight.w700),
|
const Icon(Icons.bolt, size: 20),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
'Latest loco changes',
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (isLoading && changes.isNotEmpty)
|
||||||
|
const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
if (isLoading && changes.isEmpty)
|
if (isLoading && changes.isEmpty)
|
||||||
@@ -64,7 +80,8 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
|||||||
child: ListView.separated(
|
child: ListView.separated(
|
||||||
controller: _controller,
|
controller: _controller,
|
||||||
itemCount: changes.length,
|
itemCount: changes.length,
|
||||||
separatorBuilder: (_, __) => const Divider(height: 1),
|
separatorBuilder: (context, index) =>
|
||||||
|
const Divider(height: 1),
|
||||||
itemBuilder: (context, index) {
|
itemBuilder: (context, index) {
|
||||||
final change = changes[index];
|
final change = changes[index];
|
||||||
return ListTile(
|
return ListTile(
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ class LeaderboardPanel extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
final leaderboard = data.homepageStats?.leaderboard ?? [];
|
final leaderboard = data.homepageStats?.leaderboard ?? [];
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
if (data.isHomepageLoading && leaderboard.isEmpty) {
|
if (data.isHomepageLoading && leaderboard.isEmpty) {
|
||||||
return const Padding(
|
return const Padding(
|
||||||
padding: EdgeInsets.all(16.0),
|
padding: EdgeInsets.all(16.0),
|
||||||
@@ -23,12 +24,32 @@ class LeaderboardPanel extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Row(
|
||||||
"Leaderboard",
|
children: [
|
||||||
style: TextStyle(
|
const Icon(Icons.emoji_events, size: 20),
|
||||||
fontSize: 18,
|
const SizedBox(width: 8),
|
||||||
fontWeight: FontWeight.bold,
|
Expanded(
|
||||||
),
|
child: Text(
|
||||||
|
"Leaderboard",
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (leaderboard.isNotEmpty)
|
||||||
|
Container(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
'Top ${leaderboard.length}',
|
||||||
|
style: textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
if (leaderboard.isEmpty)
|
if (leaderboard.isEmpty)
|
||||||
@@ -38,43 +59,38 @@ class LeaderboardPanel extends StatelessWidget {
|
|||||||
)
|
)
|
||||||
else
|
else
|
||||||
Column(
|
Column(
|
||||||
children: List.generate(
|
children: [
|
||||||
leaderboard.length,
|
for (int index = 0; index < leaderboard.length; index++) ...[
|
||||||
(index) {
|
ListTile(
|
||||||
final leaderboardEntry = leaderboard[index];
|
contentPadding: EdgeInsets.zero,
|
||||||
return Container(
|
dense: true,
|
||||||
width: double.infinity,
|
leading: CircleAvatar(
|
||||||
margin: const EdgeInsets.symmetric(
|
radius: 18,
|
||||||
horizontal: 0, vertical: 8),
|
backgroundColor:
|
||||||
child: Padding(
|
Theme.of(context).colorScheme.secondaryContainer,
|
||||||
padding: const EdgeInsets.symmetric(vertical: 6),
|
child: Text(
|
||||||
child: Row(
|
'${index + 1}',
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
style: textTheme.labelLarge?.copyWith(
|
||||||
children: [
|
fontWeight: FontWeight.w800,
|
||||||
Text.rich(
|
),
|
||||||
TextSpan(
|
|
||||||
children: [
|
|
||||||
TextSpan(
|
|
||||||
text: '${index + 1}. ',
|
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
TextSpan(
|
|
||||||
text: leaderboardEntry.userFullName,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'${leaderboardEntry.mileage.toStringAsFixed(1)} mi',
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
title: Text(
|
||||||
},
|
leaderboard[index].userFullName,
|
||||||
),
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
trailing: Text(
|
||||||
|
'${leaderboard[index].mileage.toStringAsFixed(1)} mi',
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (index != leaderboard.length - 1) const Divider(height: 12),
|
||||||
|
],
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ class TopTractionPanel extends StatelessWidget {
|
|||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
final stats = data.homepageStats;
|
final stats = data.homepageStats;
|
||||||
final locos = stats?.topLocos ?? [];
|
final locos = stats?.topLocos ?? [];
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
if (data.isHomepageLoading && locos.isEmpty) {
|
if (data.isHomepageLoading && locos.isEmpty) {
|
||||||
return const Padding(
|
return const Padding(
|
||||||
padding: EdgeInsets.all(16.0),
|
padding: EdgeInsets.all(16.0),
|
||||||
@@ -24,12 +25,19 @@ class TopTractionPanel extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Row(
|
||||||
"Top Traction",
|
children: [
|
||||||
style: TextStyle(
|
const Icon(Icons.train, size: 20),
|
||||||
fontSize: 18,
|
const SizedBox(width: 8),
|
||||||
fontWeight: FontWeight.bold,
|
Expanded(
|
||||||
),
|
child: Text(
|
||||||
|
"Top traction",
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
if (locos.isEmpty)
|
if (locos.isEmpty)
|
||||||
@@ -39,52 +47,46 @@ class TopTractionPanel extends StatelessWidget {
|
|||||||
)
|
)
|
||||||
else
|
else
|
||||||
Column(
|
Column(
|
||||||
children: List.generate(
|
children: [
|
||||||
locos.length,
|
for (int index = 0; index < locos.length; index++) ...[
|
||||||
(index) {
|
ListTile(
|
||||||
final loco = locos[index];
|
contentPadding: EdgeInsets.zero,
|
||||||
return Container(
|
dense: true,
|
||||||
width: double.infinity,
|
leading: CircleAvatar(
|
||||||
margin:
|
radius: 18,
|
||||||
const EdgeInsets.symmetric(horizontal: 0, vertical: 8),
|
backgroundColor:
|
||||||
child: Padding(
|
Theme.of(context).colorScheme.primaryContainer,
|
||||||
padding: const EdgeInsets.symmetric(vertical: 6),
|
child: Text(
|
||||||
child: Row(
|
'${index + 1}',
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
style: textTheme.labelLarge?.copyWith(
|
||||||
children: [
|
fontWeight: FontWeight.w800,
|
||||||
Column(
|
),
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Text.rich(
|
|
||||||
TextSpan(
|
|
||||||
children: [
|
|
||||||
TextSpan(
|
|
||||||
text: '${index + 1}. ',
|
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
TextSpan(
|
|
||||||
text:
|
|
||||||
'${loco.locoClass} ${loco.number}',
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
loco.name ?? '',
|
|
||||||
style:
|
|
||||||
const TextStyle(fontStyle: FontStyle.italic),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Text('${loco.mileage?.toStringAsFixed(1)} mi'),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
title: Text(
|
||||||
},
|
'${locos[index].locoClass} ${locos[index].number}',
|
||||||
),
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: (locos[index].name ?? '').isEmpty
|
||||||
|
? null
|
||||||
|
: Text(
|
||||||
|
locos[index].name ?? '',
|
||||||
|
style: textTheme.bodySmall?.copyWith(
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
trailing: Text(
|
||||||
|
'${locos[index].mileage?.toStringAsFixed(1)} mi',
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (index != locos.length - 1) const Divider(height: 12),
|
||||||
|
],
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ class LegCard extends StatelessWidget {
|
|||||||
: textTheme.bodyMedium?.copyWith(color: theme.disabledColor);
|
: textTheme.bodyMedium?.copyWith(color: theme.disabledColor);
|
||||||
final background = powering
|
final background = powering
|
||||||
? theme.colorScheme.surfaceContainerHighest
|
? theme.colorScheme.surfaceContainerHighest
|
||||||
: theme.colorScheme.surfaceVariant;
|
: theme.colorScheme.surfaceContainerLow;
|
||||||
return Chip(
|
return Chip(
|
||||||
label: Text(
|
label: Text(
|
||||||
'${loco.locoClass} ${loco.number}',
|
'${loco.locoClass} ${loco.number}',
|
||||||
|
|||||||
@@ -81,6 +81,12 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
),
|
),
|
||||||
const SizedBox(height: 50),
|
const SizedBox(height: 50),
|
||||||
const LoginPanel(),
|
const LoginPanel(),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
IconButton(
|
||||||
|
icon: const Icon(Icons.settings, color: Colors.grey),
|
||||||
|
tooltip: 'Settings',
|
||||||
|
onPressed: () => context.go('/settings'),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
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:intl/intl.dart';
|
||||||
import 'package:mileograph_flutter/components/dashboard/latest_loco_changes_panel.dart';
|
import 'package:mileograph_flutter/components/dashboard/latest_loco_changes_panel.dart';
|
||||||
import 'package:mileograph_flutter/components/dashboard/leaderboard_panel.dart';
|
import 'package:mileograph_flutter/components/dashboard/leaderboard_panel.dart';
|
||||||
import 'package:mileograph_flutter/components/dashboard/top_traction_panel.dart';
|
import 'package:mileograph_flutter/components/dashboard/top_traction_panel.dart';
|
||||||
@@ -38,41 +39,16 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
},
|
},
|
||||||
child: LayoutBuilder(
|
child: LayoutBuilder(
|
||||||
builder: (context, constraints) {
|
builder: (context, constraints) {
|
||||||
final isWide = constraints.maxWidth > 1100;
|
const spacing = 16.0;
|
||||||
final metricChips = _buildMetricChips(
|
final maxWidth = constraints.maxWidth;
|
||||||
context,
|
|
||||||
totalMileage: stats?.totalMileage ?? 0,
|
|
||||||
currentYearMileage: data.getMileageForCurrentYear(),
|
|
||||||
legCount: stats?.legCount ?? data.trips.length,
|
|
||||||
);
|
|
||||||
return Stack(
|
return Stack(
|
||||||
children: [
|
children: [
|
||||||
ListView(
|
ListView(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
children: [
|
children: [
|
||||||
_buildHeader(context, auth, stats, data.isHomepageLoading),
|
_buildHero(context, auth, data, stats),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: spacing),
|
||||||
Wrap(spacing: 12, runSpacing: 12, children: metricChips),
|
_buildTiles(context, data, maxWidth, spacing),
|
||||||
const SizedBox(height: 16),
|
|
||||||
isWide
|
|
||||||
? Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Expanded(child: _buildMainColumn(context, data)),
|
|
||||||
const SizedBox(width: 16),
|
|
||||||
SizedBox(
|
|
||||||
width: 360,
|
|
||||||
child: _buildSidebar(context, data),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
: Column(
|
|
||||||
children: [
|
|
||||||
_buildMainColumn(context, data),
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
_buildSidebar(context, data),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (isInitialLoading)
|
if (isInitialLoading)
|
||||||
@@ -100,139 +76,448 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildHeader(
|
Widget _buildHero(
|
||||||
BuildContext context,
|
BuildContext context,
|
||||||
AuthService auth,
|
AuthService auth,
|
||||||
|
DataService data,
|
||||||
HomepageStats? stats,
|
HomepageStats? stats,
|
||||||
bool loading,
|
|
||||||
) {
|
) {
|
||||||
|
final colorScheme = Theme.of(context).colorScheme;
|
||||||
|
final isCompact = MediaQuery.of(context).size.width < 720;
|
||||||
final greetingName =
|
final greetingName =
|
||||||
stats?.user?.fullName ?? auth.fullName ?? auth.username ?? 'there';
|
stats?.user?.fullName ?? auth.fullName ?? auth.username ?? 'there';
|
||||||
return Row(
|
final totalMileage = stats?.totalMileage ?? 0;
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
final currentYearMileage = data.getMileageForCurrentYear();
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
final legCount = stats?.legCount ?? data.trips.length;
|
||||||
children: [
|
final progress = totalMileage == 0
|
||||||
Column(
|
? 0.0
|
||||||
|
: (currentYearMileage / totalMileage).clamp(0, 1).toDouble();
|
||||||
|
|
||||||
|
return Card(
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
|
elevation: 2,
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
gradient: LinearGradient(
|
||||||
|
colors: [
|
||||||
|
colorScheme.primaryContainer,
|
||||||
|
colorScheme.secondaryContainer,
|
||||||
|
],
|
||||||
|
begin: Alignment.topLeft,
|
||||||
|
end: Alignment.bottomRight,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
padding: const EdgeInsets.all(18),
|
||||||
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text('Dashboard', style: Theme.of(context).textTheme.labelMedium),
|
isCompact
|
||||||
const SizedBox(height: 2),
|
? Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
_heroHeading(context, greetingName, colorScheme),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
_heroActions(context, colorScheme, wrap: true),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
: Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: _heroHeading(context, greetingName, colorScheme),
|
||||||
|
),
|
||||||
|
_heroActions(context, colorScheme, wrap: false),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 18),
|
||||||
|
Wrap(
|
||||||
|
spacing: 12,
|
||||||
|
runSpacing: 12,
|
||||||
|
children: [
|
||||||
|
_metricTile(
|
||||||
|
context,
|
||||||
|
label: 'Total mileage',
|
||||||
|
value: '${totalMileage.toStringAsFixed(1)} mi',
|
||||||
|
icon: Icons.route,
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
_metricTile(
|
||||||
|
context,
|
||||||
|
label: 'This year',
|
||||||
|
value: '${currentYearMileage.toStringAsFixed(1)} mi',
|
||||||
|
icon: Icons.calendar_today,
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
_metricTile(
|
||||||
|
context,
|
||||||
|
label: 'Entries logged',
|
||||||
|
value: legCount.toString(),
|
||||||
|
icon: Icons.format_list_bulleted,
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
child: LinearProgressIndicator(
|
||||||
|
value: progress.isNaN ? 0 : progress,
|
||||||
|
minHeight: 10,
|
||||||
|
backgroundColor: colorScheme.onPrimaryContainer.withValues(
|
||||||
|
alpha: 0.2,
|
||||||
|
),
|
||||||
|
valueColor: AlwaysStoppedAnimation<Color>(
|
||||||
|
colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 6),
|
||||||
Text(
|
Text(
|
||||||
'Welcome back, $greetingName',
|
totalMileage == 0
|
||||||
style: Theme.of(context).textTheme.headlineSmall,
|
? 'Log a new entry to start your timeline.'
|
||||||
|
: 'Year-to-date is ${(progress * 100).toStringAsFixed(0)}% of all mileage.',
|
||||||
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
|
color: colorScheme.onPrimaryContainer.withValues(alpha: 0.8),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (loading)
|
),
|
||||||
const Padding(
|
|
||||||
padding: EdgeInsets.only(right: 8.0),
|
|
||||||
child: SizedBox(
|
|
||||||
height: 24,
|
|
||||||
width: 24,
|
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Widget> _buildMetricChips(
|
Widget _metricTile(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
required double totalMileage,
|
required String label,
|
||||||
required double currentYearMileage,
|
required String value,
|
||||||
required int legCount,
|
required IconData icon,
|
||||||
|
required Color color,
|
||||||
}) {
|
}) {
|
||||||
final textTheme = Theme.of(context).textTheme;
|
final bg = Colors.white.withValues(alpha: 0.14);
|
||||||
Widget metricCard(String label, String value) {
|
return Container(
|
||||||
return Card(
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 10),
|
||||||
elevation: 1,
|
decoration: BoxDecoration(
|
||||||
child: Padding(
|
color: bg,
|
||||||
padding: const EdgeInsets.symmetric(vertical: 12, horizontal: 14),
|
borderRadius: BorderRadius.circular(12),
|
||||||
child: Column(
|
border: Border.all(color: Colors.white.withValues(alpha: 0.18)),
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(icon, color: color),
|
||||||
|
const SizedBox(width: 10),
|
||||||
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
label.toUpperCase(),
|
label,
|
||||||
style: textTheme.labelSmall?.copyWith(
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
letterSpacing: 0.7,
|
color: color.withValues(alpha: 0.85),
|
||||||
color: textTheme.bodySmall?.color?.withValues(alpha: 0.7),
|
letterSpacing: 0.4,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 4),
|
|
||||||
Text(
|
Text(
|
||||||
value,
|
value,
|
||||||
style: textTheme.titleMedium?.copyWith(
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
fontWeight: FontWeight.w700,
|
fontWeight: FontWeight.w800,
|
||||||
|
color: color,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
);
|
),
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
|
||||||
metricCard('Total mileage', '${totalMileage.toStringAsFixed(1)} mi'),
|
|
||||||
metricCard('This year', '${currentYearMileage.toStringAsFixed(1)} mi'),
|
|
||||||
metricCard('Entries logged', legCount.toString()),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildMainColumn(BuildContext context, DataService data) {
|
|
||||||
return Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
||||||
children: [
|
|
||||||
_buildCard(
|
|
||||||
context,
|
|
||||||
title: 'On this day',
|
|
||||||
action:
|
|
||||||
data.onThisDay
|
|
||||||
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
|
||||||
.length >
|
|
||||||
5
|
|
||||||
? TextButton(
|
|
||||||
onPressed: () => setState(() {
|
|
||||||
_showAllOnThisDay = !_showAllOnThisDay;
|
|
||||||
}),
|
|
||||||
child: Text(_showAllOnThisDay ? 'Show less' : 'Show more'),
|
|
||||||
)
|
|
||||||
: null,
|
|
||||||
trailing: data.isOnThisDayLoading
|
|
||||||
? const SizedBox(
|
|
||||||
height: 18,
|
|
||||||
width: 18,
|
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
|
||||||
)
|
|
||||||
: null,
|
|
||||||
child: _buildLegList(
|
|
||||||
context,
|
|
||||||
data.onThisDay,
|
|
||||||
showAll: _showAllOnThisDay,
|
|
||||||
emptyMessage: 'No historical moves for today yet.',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 12),
|
|
||||||
_buildTripsCard(context, data),
|
|
||||||
],
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildSidebar(BuildContext context, DataService data) {
|
Widget _buildTiles(
|
||||||
|
BuildContext context,
|
||||||
|
DataService data,
|
||||||
|
double maxWidth,
|
||||||
|
double spacing,
|
||||||
|
) {
|
||||||
|
final isWide = maxWidth >= 1200;
|
||||||
|
|
||||||
|
if (isWide) {
|
||||||
|
return Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
flex: 2,
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
_buildOnThisDayCard(context, data),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
_buildTripsCard(context, data),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 16),
|
||||||
|
Expanded(
|
||||||
|
flex: 1,
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: const [
|
||||||
|
TopTractionPanel(),
|
||||||
|
SizedBox(height: 16),
|
||||||
|
LeaderboardPanel(),
|
||||||
|
SizedBox(height: 16),
|
||||||
|
LatestLocoChangesPanel(),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return Column(
|
return Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
|
_buildOnThisDayCard(context, data),
|
||||||
|
const SizedBox(height: 16),
|
||||||
const TopTractionPanel(),
|
const TopTractionPanel(),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 16),
|
||||||
const LeaderboardPanel(),
|
const LeaderboardPanel(),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 16),
|
||||||
|
_buildTripsCard(context, data),
|
||||||
|
const SizedBox(height: 16),
|
||||||
const LatestLocoChangesPanel(),
|
const LatestLocoChangesPanel(),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildCard(
|
Widget _heroHeading(
|
||||||
|
BuildContext context,
|
||||||
|
String greetingName,
|
||||||
|
ColorScheme colorScheme,
|
||||||
|
) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'Dashboard',
|
||||||
|
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
letterSpacing: 0.4,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Text(
|
||||||
|
'Welcome back, $greetingName',
|
||||||
|
style: Theme.of(context).textTheme.headlineSmall?.copyWith(
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _heroActions(
|
||||||
|
BuildContext context,
|
||||||
|
ColorScheme colorScheme, {
|
||||||
|
required bool wrap,
|
||||||
|
}) {
|
||||||
|
final buttons = [
|
||||||
|
FilledButton.icon(
|
||||||
|
style: FilledButton.styleFrom(
|
||||||
|
backgroundColor: Colors.white,
|
||||||
|
foregroundColor: colorScheme.primary,
|
||||||
|
),
|
||||||
|
onPressed: () => context.go('/add'),
|
||||||
|
icon: const Icon(Icons.add_circle_outline),
|
||||||
|
label: const Text('Add entry'),
|
||||||
|
),
|
||||||
|
FilledButton.tonalIcon(
|
||||||
|
onPressed: () => context.go('/traction'),
|
||||||
|
icon: const Icon(Icons.train),
|
||||||
|
label: const Text('Traction'),
|
||||||
|
),
|
||||||
|
FilledButton.tonalIcon(
|
||||||
|
onPressed: () => context.go('/trips'),
|
||||||
|
icon: const Icon(Icons.book),
|
||||||
|
label: const Text('Trips'),
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
if (wrap) {
|
||||||
|
return Wrap(spacing: 8, runSpacing: 8, children: buttons);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
for (final btn in buttons)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 8.0),
|
||||||
|
child: btn,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildOnThisDayCard(BuildContext context, DataService data) {
|
||||||
|
final filtered = data.onThisDay
|
||||||
|
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
||||||
|
.toList();
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
|
final showMore = filtered.length > 5;
|
||||||
|
final visible = _showAllOnThisDay ? filtered : filtered.take(6).toList();
|
||||||
|
return _panel(
|
||||||
|
context,
|
||||||
|
icon: Icons.history_toggle_off,
|
||||||
|
title: 'On this day',
|
||||||
|
trailing: data.isOnThisDayLoading
|
||||||
|
? const SizedBox(
|
||||||
|
height: 18,
|
||||||
|
width: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: null,
|
||||||
|
action: showMore
|
||||||
|
? TextButton(
|
||||||
|
onPressed: () =>
|
||||||
|
setState(() => _showAllOnThisDay = !_showAllOnThisDay),
|
||||||
|
child: Text(_showAllOnThisDay ? 'Show less' : 'Show more'),
|
||||||
|
)
|
||||||
|
: null,
|
||||||
|
child: filtered.isEmpty
|
||||||
|
? Text(
|
||||||
|
'No historical moves for today yet.',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
)
|
||||||
|
: Column(
|
||||||
|
children: [
|
||||||
|
for (int idx = 0; idx < visible.length; idx++) ...[
|
||||||
|
_otdRow(context, visible[idx], textTheme),
|
||||||
|
if (idx != visible.length - 1) const Divider(height: 12),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _otdRow(BuildContext context, Leg leg, TextTheme textTheme) {
|
||||||
|
final traction = leg.locos;
|
||||||
|
return Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 64,
|
||||||
|
height: 56,
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
),
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
leg.beginTime.year.toString(),
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Text(_formatTime(leg.beginTime), style: textTheme.labelSmall),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'${leg.start} → ${leg.end}',
|
||||||
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
maxLines: 2,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
if (leg.headcode.isNotEmpty) ...[
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
leg.headcode,
|
||||||
|
style: textTheme.labelSmall?.copyWith(
|
||||||
|
color: textTheme.bodySmall?.color?.withValues(
|
||||||
|
alpha: 0.7,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
const SizedBox(width: 6),
|
||||||
|
Expanded(
|
||||||
|
child: traction.isEmpty
|
||||||
|
? Text(
|
||||||
|
'No traction recorded',
|
||||||
|
style: textTheme.labelSmall?.copyWith(
|
||||||
|
color: textTheme.bodySmall?.color?.withValues(
|
||||||
|
alpha: 0.7,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 4,
|
||||||
|
children: traction.map((loco) {
|
||||||
|
final iconColor = loco.powering
|
||||||
|
? Theme.of(context).colorScheme.primary
|
||||||
|
: Theme.of(context).hintColor;
|
||||||
|
final label = '${loco.locoClass} ${loco.number}';
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(Icons.train, size: 14, color: iconColor),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
label,
|
||||||
|
style: textTheme.labelSmall?.copyWith(
|
||||||
|
color: textTheme.bodySmall?.color
|
||||||
|
?.withValues(alpha: 0.85),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'${leg.mileage.toStringAsFixed(1)} mi',
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _panel(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
|
required IconData icon,
|
||||||
required String title,
|
required String title,
|
||||||
required Widget child,
|
required Widget child,
|
||||||
Widget? trailing,
|
Widget? trailing,
|
||||||
@@ -241,29 +526,29 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
return Card(
|
return Card(
|
||||||
clipBehavior: Clip.antiAlias,
|
clipBehavior: Clip.antiAlias,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Icon(icon, size: 20),
|
||||||
title,
|
const SizedBox(width: 8),
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
Expanded(
|
||||||
fontWeight: FontWeight.w700,
|
child: Text(
|
||||||
|
title,
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Row(
|
if (action != null)
|
||||||
mainAxisSize: MainAxisSize.min,
|
Padding(
|
||||||
children: [
|
padding: const EdgeInsets.only(right: 8.0),
|
||||||
if (action != null) action,
|
child: action,
|
||||||
if (trailing != null) ...[
|
),
|
||||||
const SizedBox(width: 8),
|
if (trailing != null) trailing,
|
||||||
trailing,
|
|
||||||
],
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
@@ -274,56 +559,15 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildLegList(
|
|
||||||
BuildContext context,
|
|
||||||
List<Leg> legs, {
|
|
||||||
required String emptyMessage,
|
|
||||||
bool showAll = false,
|
|
||||||
}) {
|
|
||||||
final filtered = legs
|
|
||||||
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
|
||||||
.toList();
|
|
||||||
if (filtered.isEmpty) {
|
|
||||||
return Text(emptyMessage, style: Theme.of(context).textTheme.bodyMedium);
|
|
||||||
}
|
|
||||||
final toShow = showAll ? filtered : filtered.take(5).toList();
|
|
||||||
return Column(
|
|
||||||
children: toShow.map((leg) {
|
|
||||||
return ListTile(
|
|
||||||
dense: true,
|
|
||||||
contentPadding: EdgeInsets.zero,
|
|
||||||
leading: CircleAvatar(
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.primaryContainer,
|
|
||||||
child: const Icon(Icons.train),
|
|
||||||
),
|
|
||||||
title: Text('${leg.start} → ${leg.end}'),
|
|
||||||
subtitle: Text(_formatDate(leg.beginTime)),
|
|
||||||
trailing: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
Text('${leg.mileage.toStringAsFixed(1)} mi'),
|
|
||||||
if (leg.headcode.isNotEmpty)
|
|
||||||
Text(
|
|
||||||
leg.headcode,
|
|
||||||
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
|
||||||
color: Theme.of(context).hintColor,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}).toList(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildTripsCard(BuildContext context, DataService data) {
|
Widget _buildTripsCard(BuildContext context, DataService data) {
|
||||||
final tripsUnsorted = data.trips;
|
final tripsUnsorted = data.trips;
|
||||||
List trips = [];
|
List trips = [];
|
||||||
if (tripsUnsorted.isNotEmpty) {
|
if (tripsUnsorted.isNotEmpty) {
|
||||||
trips = [...tripsUnsorted]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
trips = [...tripsUnsorted]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||||
}
|
}
|
||||||
return _buildCard(
|
return _panel(
|
||||||
context,
|
context,
|
||||||
|
icon: Icons.bookmark,
|
||||||
title: 'Trips',
|
title: 'Trips',
|
||||||
action: TextButton(
|
action: TextButton(
|
||||||
onPressed: () => context.push('/trips'),
|
onPressed: () => context.push('/trips'),
|
||||||
@@ -335,19 +579,46 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
style: Theme.of(context).textTheme.bodyMedium,
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
)
|
)
|
||||||
: Column(
|
: Column(
|
||||||
children: trips.take(5).map((trip) {
|
children: trips.take(6).map((trip) {
|
||||||
return ListTile(
|
return Padding(
|
||||||
contentPadding: EdgeInsets.zero,
|
padding: const EdgeInsets.symmetric(vertical: 6.0),
|
||||||
title: Text(trip.tripName),
|
child: Row(
|
||||||
subtitle: Text('${trip.tripMileage.toStringAsFixed(1)} mi'),
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 42,
|
||||||
|
height: 42,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.primaryContainer,
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
),
|
||||||
|
child: const Icon(Icons.book, size: 18),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 10),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
trip.tripName,
|
||||||
|
style: Theme.of(context).textTheme.titleSmall
|
||||||
|
?.copyWith(fontWeight: FontWeight.w700),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
'${trip.tripMileage.toStringAsFixed(1)} mi',
|
||||||
|
style: Theme.of(context).textTheme.labelMedium,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}).toList(),
|
}).toList(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
String _formatDate(DateTime? dt) {
|
String _formatTime(DateTime date) {
|
||||||
if (dt == null) return '';
|
return DateFormat('HH:mm').format(date);
|
||||||
return '${dt.year.toString().padLeft(4, '0')}-${dt.month.toString().padLeft(2, '0')}-${dt.day.toString().padLeft(2, '0')}';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -246,7 +246,8 @@ class _LegsPageState extends State<LegsPage> {
|
|||||||
final dayLegs = <Leg>[];
|
final dayLegs = <Leg>[];
|
||||||
|
|
||||||
void flushDay() {
|
void flushDay() {
|
||||||
if (currentDate == null) return;
|
final date = currentDate;
|
||||||
|
if (date == null) return;
|
||||||
widgets.add(
|
widgets.add(
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||||
@@ -254,7 +255,7 @@ class _LegsPageState extends State<LegsPage> {
|
|||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Text(
|
child: Text(
|
||||||
currentDate!,
|
date,
|
||||||
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||||
fontWeight: FontWeight.w700,
|
fontWeight: FontWeight.w700,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -445,7 +445,7 @@ class _ValueBlockMenu extends StatelessWidget {
|
|||||||
|
|
||||||
Future<void> showContextMenuAt(Offset globalPosition) async {
|
Future<void> showContextMenuAt(Offset globalPosition) async {
|
||||||
final overlay = Overlay.of(context);
|
final overlay = Overlay.of(context);
|
||||||
final renderBox = overlay?.context.findRenderObject() as RenderBox?;
|
final renderBox = overlay.context.findRenderObject() as RenderBox?;
|
||||||
if (renderBox == null) return;
|
if (renderBox == null) return;
|
||||||
// Translate from global screen coordinates into the overlay's local space
|
// Translate from global screen coordinates into the overlay's local space
|
||||||
// so the menu appears where the gesture happened.
|
// so the menu appears where the gesture happened.
|
||||||
|
|||||||
213
lib/components/pages/settings.dart
Normal file
213
lib/components/pages/settings.dart
Normal file
@@ -0,0 +1,213 @@
|
|||||||
|
import 'dart:convert';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
import 'package:http/http.dart' as http;
|
||||||
|
import 'package:mileograph_flutter/services/endpoint_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
class SettingsPage extends StatefulWidget {
|
||||||
|
const SettingsPage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<SettingsPage> createState() => _SettingsPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SettingsPageState extends State<SettingsPage> {
|
||||||
|
late final TextEditingController _endpointController;
|
||||||
|
bool _saving = false;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
final endpoint = context.read<EndpointService>().baseUrl;
|
||||||
|
_endpointController = TextEditingController(text: endpoint);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_endpointController.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<String?> _probeVersion(String url) async {
|
||||||
|
try {
|
||||||
|
var uri = Uri.parse(url.trim());
|
||||||
|
if (uri.scheme.isEmpty) {
|
||||||
|
uri = Uri.parse('https://$url');
|
||||||
|
}
|
||||||
|
// Probe the provided API endpoint as-is.
|
||||||
|
final target = uri;
|
||||||
|
final res = await http.get(target).timeout(const Duration(seconds: 10));
|
||||||
|
debugPrint(
|
||||||
|
'Endpoint probe ${target.toString()} -> ${res.statusCode} ${res.body}',
|
||||||
|
);
|
||||||
|
if (res.statusCode < 200 || res.statusCode >= 300) return null;
|
||||||
|
final body = res.body.trim();
|
||||||
|
debugPrint('Endpoint probe body: $body');
|
||||||
|
// Try JSON first
|
||||||
|
String? version;
|
||||||
|
try {
|
||||||
|
final parsed = jsonDecode(body);
|
||||||
|
debugPrint('Endpoint probe parsed: $parsed');
|
||||||
|
if (parsed is Map && parsed['version'] is String) {
|
||||||
|
version = parsed['version'] as String;
|
||||||
|
} else if (parsed is String) {
|
||||||
|
final candidate = parsed.trim().replaceAll('"', '');
|
||||||
|
if (RegExp(r'^\d+\.\d+\.\d+$').hasMatch(candidate)) {
|
||||||
|
version = candidate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (_) {
|
||||||
|
// fall back to raw body parsing
|
||||||
|
}
|
||||||
|
version ??= body.split(RegExp(r'\s+')).firstWhere(
|
||||||
|
(part) => RegExp(r'^\d+\.\d+\.\d+$').hasMatch(part),
|
||||||
|
orElse: () => '',
|
||||||
|
);
|
||||||
|
if (version.isEmpty) return null;
|
||||||
|
final isValid = RegExp(r'^\d+\.\d+\.\d+$').hasMatch(version);
|
||||||
|
return isValid ? version : null;
|
||||||
|
} catch (_) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _save() async {
|
||||||
|
final endpointService = context.read<EndpointService>();
|
||||||
|
final dataService = context.read<DataService>();
|
||||||
|
final messenger = ScaffoldMessenger.of(context);
|
||||||
|
final value = _endpointController.text.trim();
|
||||||
|
if (value.isEmpty) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
const SnackBar(content: Text('Please enter an endpoint URL.')),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setState(() => _saving = true);
|
||||||
|
try {
|
||||||
|
final version = await _probeVersion(value);
|
||||||
|
if (version == null) {
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
const SnackBar(
|
||||||
|
content: Text('Endpoint test failed: no valid version returned.'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await endpointService.setBaseUrl(value);
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(content: Text('Endpoint set to "$value" ($version)')),
|
||||||
|
);
|
||||||
|
await Future.wait([
|
||||||
|
dataService.fetchHomepageStats(),
|
||||||
|
dataService.fetchOnThisDay(),
|
||||||
|
dataService.fetchTrips(),
|
||||||
|
dataService.fetchHadTraction(),
|
||||||
|
dataService.fetchLatestLocoChanges(),
|
||||||
|
dataService.fetchLegs(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to save endpoint: $e')),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
if (mounted) {
|
||||||
|
setState(() => _saving = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final endpointService = context.watch<EndpointService>();
|
||||||
|
if (!endpointService.isLoaded) {
|
||||||
|
return const Scaffold(
|
||||||
|
body: Center(child: CircularProgressIndicator()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('Settings'),
|
||||||
|
leading: IconButton(
|
||||||
|
icon: const Icon(Icons.arrow_back),
|
||||||
|
onPressed: () {
|
||||||
|
final navigator = Navigator.of(context);
|
||||||
|
if (navigator.canPop()) {
|
||||||
|
navigator.pop();
|
||||||
|
} else {
|
||||||
|
context.go('/');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
body: Padding(
|
||||||
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'API endpoint',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Text(
|
||||||
|
'Set the base URL for the Mileograph API. Leave blank to use the default.',
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
TextField(
|
||||||
|
controller: _endpointController,
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
labelText: 'Endpoint URL',
|
||||||
|
hintText: 'https://mileograph.co.uk/api/v1',
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
FilledButton.icon(
|
||||||
|
onPressed: _saving ? null : _save,
|
||||||
|
icon: _saving
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.save),
|
||||||
|
label: const Text('Save endpoint'),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
TextButton(
|
||||||
|
onPressed: _saving
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
_endpointController.text =
|
||||||
|
EndpointService.defaultBaseUrl;
|
||||||
|
},
|
||||||
|
child: const Text('Reset to default'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Text(
|
||||||
|
'Current: ${endpointService.baseUrl}',
|
||||||
|
style: Theme.of(context).textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -268,6 +268,7 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
builder: (_) {
|
builder: (_) {
|
||||||
bool renaming = false;
|
bool renaming = false;
|
||||||
|
bool deleting = false;
|
||||||
String tripName = trip.name;
|
String tripName = trip.name;
|
||||||
return StatefulBuilder(
|
return StatefulBuilder(
|
||||||
builder: (sheetCtx, setSheetState) {
|
builder: (sheetCtx, setSheetState) {
|
||||||
@@ -285,6 +286,58 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> handleDelete() async {
|
||||||
|
if (deleting || trip.legs.isNotEmpty) return;
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
final api = data.api;
|
||||||
|
final messenger = ScaffoldMessenger.maybeOf(sheetCtx);
|
||||||
|
final navigator = Navigator.of(sheetCtx);
|
||||||
|
|
||||||
|
final ok = await showDialog<bool>(
|
||||||
|
context: sheetCtx,
|
||||||
|
builder: (ctx) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: const Text('Delete trip?'),
|
||||||
|
content: Text(
|
||||||
|
'This will delete "${trip.name}". This cannot be undone.',
|
||||||
|
),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(ctx).pop(false),
|
||||||
|
child: const Text('Cancel'),
|
||||||
|
),
|
||||||
|
FilledButton(
|
||||||
|
onPressed: () => Navigator.of(ctx).pop(true),
|
||||||
|
child: const Text('Delete'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
if (ok != true || !mounted) return;
|
||||||
|
|
||||||
|
setSheetState(() => deleting = true);
|
||||||
|
try {
|
||||||
|
await api.delete('/trips/delete/${trip.id}');
|
||||||
|
await Future.wait([
|
||||||
|
data.fetchTripDetails(),
|
||||||
|
data.fetchTrips(),
|
||||||
|
]);
|
||||||
|
if (!mounted) return;
|
||||||
|
messenger?.showSnackBar(
|
||||||
|
SnackBar(content: Text('Deleted "${trip.name}"')),
|
||||||
|
);
|
||||||
|
navigator.pop();
|
||||||
|
} catch (e) {
|
||||||
|
if (!mounted) return;
|
||||||
|
messenger?.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to delete trip: $e')),
|
||||||
|
);
|
||||||
|
} finally {
|
||||||
|
if (mounted) setSheetState(() => deleting = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
@@ -317,6 +370,21 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
tooltip: 'Rename trip',
|
tooltip: 'Rename trip',
|
||||||
onPressed: renaming ? null : handleRename,
|
onPressed: renaming ? null : handleRename,
|
||||||
),
|
),
|
||||||
|
if (trip.legs.isEmpty) ...[
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
IconButton(
|
||||||
|
icon: deleting
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.delete_outline),
|
||||||
|
tooltip: 'Delete trip',
|
||||||
|
onPressed: deleting ? null : handleDelete,
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
),
|
||||||
|
],
|
||||||
const SizedBox(width: 4),
|
const SizedBox(width: 4),
|
||||||
Text('${trip.mileage.toStringAsFixed(1)} mi'),
|
Text('${trip.mileage.toStringAsFixed(1)} mi'),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ class LocoSummary extends Loco {
|
|||||||
this.livery,
|
this.livery,
|
||||||
this.location,
|
this.location,
|
||||||
Map<String, dynamic>? extra,
|
Map<String, dynamic>? extra,
|
||||||
bool powering = true,
|
super.powering = true,
|
||||||
}) : extra = extra ?? const {},
|
}) : extra = extra ?? const {},
|
||||||
super(
|
super(
|
||||||
id: locoId,
|
id: locoId,
|
||||||
@@ -207,7 +207,6 @@ class LocoSummary extends Loco {
|
|||||||
operator: locoOperator,
|
operator: locoOperator,
|
||||||
notes: locoNotes,
|
notes: locoNotes,
|
||||||
evn: locoEvn,
|
evn: locoEvn,
|
||||||
powering: powering,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
factory LocoSummary.fromJson(Map<String, dynamic> json) => LocoSummary(
|
factory LocoSummary.fromJson(Map<String, dynamic> json) => LocoSummary(
|
||||||
@@ -400,7 +399,7 @@ class LocoChange {
|
|||||||
});
|
});
|
||||||
|
|
||||||
factory LocoChange.fromJson(Map<String, dynamic> json) {
|
factory LocoChange.fromJson(Map<String, dynamic> json) {
|
||||||
String _clean(dynamic value) {
|
String cleanValue(dynamic value) {
|
||||||
final str = value?.toString().trim() ?? '';
|
final str = value?.toString().trim() ?? '';
|
||||||
if (str.isEmpty || str == '-' || str == '?') return '';
|
if (str.isEmpty || str == '-' || str == '?') return '';
|
||||||
return str;
|
return str;
|
||||||
@@ -417,15 +416,15 @@ class LocoChange {
|
|||||||
final validFromRaw = json['valid_from'] ?? json['validFrom'];
|
final validFromRaw = json['valid_from'] ?? json['validFrom'];
|
||||||
return LocoChange(
|
return LocoChange(
|
||||||
locoId: _asInt(json['loco_id']),
|
locoId: _asInt(json['loco_id']),
|
||||||
locoClass: _clean(json['loco_class']),
|
locoClass: cleanValue(json['loco_class']),
|
||||||
locoNumber: _clean(json['loco_number']),
|
locoNumber: cleanValue(json['loco_number']),
|
||||||
locoName: _clean(json['loco_name']),
|
locoName: cleanValue(json['loco_name']),
|
||||||
attrCode: _asString(json['attr_code']),
|
attrCode: _asString(json['attr_code']),
|
||||||
attrDisplay: _clean(json['attr_display']),
|
attrDisplay: cleanValue(json['attr_display']),
|
||||||
valueDisplay: _clean(valueLabel),
|
valueDisplay: cleanValue(valueLabel),
|
||||||
validFrom: DateTime.tryParse(validFromRaw?.toString() ?? ''),
|
validFrom: DateTime.tryParse(validFromRaw?.toString() ?? ''),
|
||||||
approvedAt: DateTime.tryParse(approvedRaw?.toString() ?? ''),
|
approvedAt: DateTime.tryParse(approvedRaw?.toString() ?? ''),
|
||||||
approvedBy: _clean(json['approved_by']),
|
approvedBy: cleanValue(json['approved_by']),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,17 +5,24 @@ typedef TokenProvider = String? Function();
|
|||||||
typedef UnauthorizedHandler = Future<void> Function();
|
typedef UnauthorizedHandler = Future<void> Function();
|
||||||
|
|
||||||
class ApiService {
|
class ApiService {
|
||||||
final String baseUrl;
|
String _baseUrl;
|
||||||
final http.Client _client;
|
final http.Client _client;
|
||||||
final Duration timeout;
|
final Duration timeout;
|
||||||
TokenProvider? _getToken;
|
TokenProvider? _getToken;
|
||||||
UnauthorizedHandler? _onUnauthorized;
|
UnauthorizedHandler? _onUnauthorized;
|
||||||
|
|
||||||
ApiService({
|
ApiService({
|
||||||
required this.baseUrl,
|
required String baseUrl,
|
||||||
http.Client? client,
|
http.Client? client,
|
||||||
this.timeout = const Duration(seconds: 30),
|
this.timeout = const Duration(seconds: 30),
|
||||||
}) : _client = client ?? http.Client();
|
}) : _baseUrl = baseUrl,
|
||||||
|
_client = client ?? http.Client();
|
||||||
|
|
||||||
|
String get baseUrl => _baseUrl;
|
||||||
|
|
||||||
|
void setBaseUrl(String url) {
|
||||||
|
_baseUrl = url;
|
||||||
|
}
|
||||||
|
|
||||||
void setTokenProvider(TokenProvider provider) {
|
void setTokenProvider(TokenProvider provider) {
|
||||||
_getToken = provider;
|
_getToken = provider;
|
||||||
|
|||||||
36
lib/services/endpoint_service.dart
Normal file
36
lib/services/endpoint_service.dart
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import 'package:flutter/foundation.dart';
|
||||||
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
|
class EndpointService extends ChangeNotifier {
|
||||||
|
EndpointService() {
|
||||||
|
_load();
|
||||||
|
}
|
||||||
|
|
||||||
|
static const String defaultBaseUrl = 'https://mileograph.co.uk/api/v1';
|
||||||
|
static const String _prefsKey = 'api_base_url';
|
||||||
|
|
||||||
|
String _baseUrl = defaultBaseUrl;
|
||||||
|
bool _loaded = false;
|
||||||
|
|
||||||
|
String get baseUrl => _baseUrl;
|
||||||
|
bool get isLoaded => _loaded;
|
||||||
|
|
||||||
|
Future<void> _load() async {
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
final saved = prefs.getString(_prefsKey);
|
||||||
|
if (saved != null && saved.trim().isNotEmpty) {
|
||||||
|
_baseUrl = saved;
|
||||||
|
}
|
||||||
|
_loaded = true;
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> setBaseUrl(String url) async {
|
||||||
|
final trimmed = url.trim();
|
||||||
|
if (trimmed.isEmpty) return;
|
||||||
|
_baseUrl = trimmed;
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
await prefs.setString(_prefsKey, _baseUrl);
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -11,6 +11,7 @@ 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/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/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/components/pages/trips.dart';
|
||||||
import 'package:mileograph_flutter/services/authservice.dart';
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
@@ -154,6 +155,10 @@ class _MyAppState extends State<MyApp> {
|
|||||||
return NewEntryPage(editLegId: legId);
|
return NewEntryPage(editLegId: legId);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/settings',
|
||||||
|
builder: (context, state) => const SettingsPage(),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
GoRoute(path: '/login', builder: (context, state) => const LoginScreen()),
|
GoRoute(path: '/login', builder: (context, state) => const LoginScreen()),
|
||||||
@@ -334,6 +339,11 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
onPressed: null,
|
onPressed: null,
|
||||||
icon: Icon(Icons.account_circle),
|
icon: Icon(Icons.account_circle),
|
||||||
),
|
),
|
||||||
|
IconButton(
|
||||||
|
tooltip: 'Settings',
|
||||||
|
onPressed: () => context.go('/settings'),
|
||||||
|
icon: const Icon(Icons.settings),
|
||||||
|
),
|
||||||
IconButton(onPressed: auth.logout, icon: const Icon(Icons.logout)),
|
IconButton(onPressed: auth.logout, icon: const Icon(Icons.logout)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -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.0+1
|
version: 0.3.2+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
Reference in New Issue
Block a user