Compare commits
22 Commits
v0.3.4-dev
...
v0.6.1-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 69bd6f688a | |||
| 89b760508d | |||
| 42af39b442 | |||
| 2fa66ff9c6 | |||
| 29cecf0ded | |||
| f9c392bb07 | |||
| e5b145b4b2 | |||
| 59458484aa | |||
| 648872acf1 | |||
| b427ed0bd3 | |||
| 66a1d149f0 | |||
| cea483ae0b | |||
| 7139cfcc99 | |||
| 1c15546b66 | |||
| e1ad1ea685 | |||
| 9b307ab56b | |||
| 8cf43c76e2 | |||
| 2600e90efa | |||
| a9bc6c306c | |||
| 54026aa93a | |||
| 0971124fd4 | |||
| 4bd6f0bbed |
@@ -10,8 +10,9 @@ env:
|
||||
JAVA_VERSION: "17"
|
||||
ANDROID_SDK_ROOT: "${{ github.workspace }}/android-sdk"
|
||||
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
|
||||
WEB_IMAGE: "git.tgj.services/petegregoryy/mileograph-web"
|
||||
|
||||
jobs:
|
||||
meta:
|
||||
@@ -20,6 +21,7 @@ jobs:
|
||||
outputs:
|
||||
base_version: ${{ steps.meta.outputs.base }}
|
||||
release_tag: ${{ steps.meta.outputs.release_tag }}
|
||||
dev_suffix: ${{ steps.meta.outputs.dev_suffix }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -29,12 +31,24 @@ jobs:
|
||||
run: |
|
||||
RAW_VERSION=$(awk '/^version:/{print $2}' pubspec.yaml)
|
||||
BASE_VERSION=${RAW_VERSION%%+*}
|
||||
TAG="v${BASE_VERSION}"
|
||||
VERSION="${BASE_VERSION}"
|
||||
TAG="v${VERSION}"
|
||||
DEV_SUFFIX=""
|
||||
|
||||
if [ "${GITHUB_REF}" = "refs/heads/dev" ]; then
|
||||
TAG="v${BASE_VERSION}-dev"
|
||||
DEV_ITER="${GITHUB_RUN_NUMBER:-}"
|
||||
if [ -z "$DEV_ITER" ]; then
|
||||
DEV_ITER=$(git rev-list --count HEAD)
|
||||
fi
|
||||
|
||||
DEV_SUFFIX="-dev.${DEV_ITER}"
|
||||
VERSION="${BASE_VERSION}${DEV_SUFFIX}"
|
||||
TAG="v${VERSION}"
|
||||
fi
|
||||
|
||||
echo "base=${BASE_VERSION}" >> "$GITHUB_OUTPUT"
|
||||
echo "release_tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||
echo "dev_suffix=${DEV_SUFFIX}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Fail if release already exists
|
||||
env:
|
||||
@@ -110,6 +124,8 @@ jobs:
|
||||
run: |
|
||||
set -euo pipefail
|
||||
FLUTTER_HOME="$HOME/flutter"
|
||||
# Avoid git ownership issues when Flutter checks out deps.
|
||||
git config --global --add safe.directory "$FLUTTER_HOME" || true
|
||||
if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
||||
rm -rf "$FLUTTER_HOME"
|
||||
curl -fsSL -o /tmp/flutter.tar.xz "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}-stable.tar.xz"
|
||||
@@ -139,6 +155,18 @@ jobs:
|
||||
- name: Build Android App Bundle (release)
|
||||
run: flutter build appbundle --release
|
||||
|
||||
- name: Archive Android App Bundle
|
||||
env:
|
||||
BASE_VERSION: ${{ needs.meta.outputs.base_version }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
BUNDLE_SRC="build/app/outputs/bundle/release/app-release.aab"
|
||||
if [ ! -f "$BUNDLE_SRC" ]; then
|
||||
echo "Bundle not found at $BUNDLE_SRC"
|
||||
exit 1
|
||||
fi
|
||||
cp "$BUNDLE_SRC" "mileograph-${BASE_VERSION}.aab"
|
||||
|
||||
- name: Download bundletool
|
||||
run: |
|
||||
BUNDLETOOL_VERSION=1.15.6
|
||||
@@ -185,6 +213,12 @@ jobs:
|
||||
name: android-apk
|
||||
path: mileograph-${{ needs.meta.outputs.base_version }}.apk
|
||||
|
||||
- name: Upload Android AAB artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: android-aab
|
||||
path: mileograph-${{ needs.meta.outputs.base_version }}.aab
|
||||
|
||||
linux-build:
|
||||
runs-on:
|
||||
- mileograph
|
||||
@@ -207,6 +241,8 @@ jobs:
|
||||
run: |
|
||||
set -euo pipefail
|
||||
FLUTTER_HOME="$HOME/flutter"
|
||||
# Avoid git ownership issues when Flutter checks out deps.
|
||||
git config --global --add safe.directory "$FLUTTER_HOME" || true
|
||||
if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
||||
rm -rf "$FLUTTER_HOME"
|
||||
curl -fsSL -o /tmp/flutter.tar.xz "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}-stable.tar.xz"
|
||||
@@ -238,6 +274,108 @@ jobs:
|
||||
name: linux-bundle
|
||||
path: app-linux-x64.tar.gz
|
||||
|
||||
web-build:
|
||||
runs-on:
|
||||
- mileograph
|
||||
needs: meta
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install OS deps (Web)
|
||||
run: |
|
||||
if command -v sudo >/dev/null 2>&1; then
|
||||
SUDO="sudo"
|
||||
else
|
||||
SUDO=""
|
||||
fi
|
||||
$SUDO apt-get update
|
||||
$SUDO apt-get install -y unzip xz-utils zip libstdc++6 liblzma-dev curl jq docker.io
|
||||
if ! docker info >/dev/null 2>&1; then
|
||||
$SUDO systemctl start docker 2>/dev/null || $SUDO service docker start 2>/dev/null || true
|
||||
fi
|
||||
|
||||
- name: Install Flutter SDK
|
||||
run: |
|
||||
set -euo pipefail
|
||||
FLUTTER_HOME="$HOME/flutter"
|
||||
git config --global --add safe.directory "$FLUTTER_HOME" || true
|
||||
if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
||||
rm -rf "$FLUTTER_HOME"
|
||||
curl -fsSL -o /tmp/flutter.tar.xz "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}-stable.tar.xz"
|
||||
tar -C "$HOME" -xf /tmp/flutter.tar.xz
|
||||
fi
|
||||
echo "$FLUTTER_HOME/bin" >> "$GITHUB_PATH"
|
||||
"$FLUTTER_HOME/bin/flutter" --version
|
||||
|
||||
- name: Allow all git directories (CI)
|
||||
run: git config --global --add safe.directory '*'
|
||||
|
||||
- name: Set pub cache path
|
||||
run: echo "PUB_CACHE=${GITHUB_WORKSPACE}/.pub-cache" >> "$GITHUB_ENV"
|
||||
|
||||
- name: Flutter dependencies
|
||||
run: flutter pub get
|
||||
|
||||
- name: Enable Flutter web
|
||||
run: flutter config --enable-web
|
||||
|
||||
- name: Build Flutter web (release)
|
||||
run: |
|
||||
flutter build web --release --base-href=/
|
||||
tar -C build/web -czf app-web.tar.gz .
|
||||
|
||||
- name: Upload Web artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: web-build
|
||||
path: app-web.tar.gz
|
||||
|
||||
- name: Compute web image tags
|
||||
id: web_meta
|
||||
env:
|
||||
BASE_VERSION: ${{ needs.meta.outputs.base_version }}
|
||||
DEV_SUFFIX: ${{ needs.meta.outputs.dev_suffix }}
|
||||
run: |
|
||||
IMAGE="${WEB_IMAGE}"
|
||||
TAG=""
|
||||
ALIAS=""
|
||||
if [ "${GITHUB_REF}" = "refs/heads/dev" ]; then
|
||||
TAG="${BASE_VERSION}${DEV_SUFFIX}"
|
||||
ALIAS="dev"
|
||||
elif [ "${GITHUB_REF}" = "refs/heads/master" ]; then
|
||||
TAG="${BASE_VERSION}"
|
||||
ALIAS="latest"
|
||||
fi
|
||||
|
||||
echo "image=${IMAGE}" >> "$GITHUB_OUTPUT"
|
||||
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||
echo "alias=${ALIAS}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Login to registry
|
||||
if: ${{ secrets.DOCKERHUB_TOKEN != '' && steps.web_meta.outputs.tag != '' }}
|
||||
env:
|
||||
REGISTRY_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
run: |
|
||||
echo "$REGISTRY_TOKEN" | docker login git.tgj.services -u petegregoryy --password-stdin
|
||||
|
||||
- name: Build and push web image
|
||||
if: ${{ secrets.DOCKERHUB_TOKEN != '' && steps.web_meta.outputs.tag != '' }}
|
||||
env:
|
||||
IMAGE: ${{ steps.web_meta.outputs.image }}
|
||||
TAG: ${{ steps.web_meta.outputs.tag }}
|
||||
ALIAS: ${{ steps.web_meta.outputs.alias }}
|
||||
run: |
|
||||
docker buildx create --name buildx --driver=docker-container --use || docker buildx use buildx
|
||||
TAG_ARGS=(-t "${IMAGE}:${TAG}")
|
||||
if [ -n "$ALIAS" ]; then
|
||||
TAG_ARGS+=(-t "${IMAGE}:${ALIAS}")
|
||||
fi
|
||||
docker buildx build --builder buildx --platform linux/amd64 \
|
||||
-f Dockerfile.web \
|
||||
--push \
|
||||
"${TAG_ARGS[@]}" .
|
||||
|
||||
release-dev:
|
||||
runs-on:
|
||||
- mileograph
|
||||
@@ -245,6 +383,7 @@ jobs:
|
||||
- meta
|
||||
- android-build
|
||||
- linux-build
|
||||
- web-build
|
||||
steps:
|
||||
- name: Install jq
|
||||
run: |
|
||||
@@ -262,17 +401,35 @@ jobs:
|
||||
name: android-apk
|
||||
path: artifacts
|
||||
|
||||
- name: Download Android AAB
|
||||
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: android-aab
|
||||
path: artifacts
|
||||
|
||||
- name: Prepare APK and tag
|
||||
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||
id: bundle
|
||||
run: |
|
||||
BASE="${{ needs.meta.outputs.base_version }}"
|
||||
TAG="${{ needs.meta.outputs.release_tag }}"
|
||||
DEV_SUFFIX="${{ needs.meta.outputs.dev_suffix }}"
|
||||
if [ -z "$DEV_SUFFIX" ]; then
|
||||
echo "dev_suffix is empty; expected '-dev.<n>'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mv "artifacts/mileograph-${BASE}.apk" "artifacts/mileograph-${BASE}-dev.apk"
|
||||
VERSION="${BASE}${DEV_SUFFIX}"
|
||||
APK_NAME="mileograph-${VERSION}.apk"
|
||||
AAB_NAME="mileograph-${VERSION}.aab"
|
||||
|
||||
mv "artifacts/mileograph-${BASE}.apk" "artifacts/${APK_NAME}"
|
||||
mv "artifacts/mileograph-${BASE}.aab" "artifacts/${AAB_NAME}"
|
||||
|
||||
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||
echo "apk=artifacts/mileograph-${BASE}-dev.apk" >> "$GITHUB_OUTPUT"
|
||||
echo "apk=artifacts/${APK_NAME}" >> "$GITHUB_OUTPUT"
|
||||
echo "aab=artifacts/${AAB_NAME}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Create prerelease on Gitea
|
||||
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||
@@ -313,6 +470,18 @@ jobs:
|
||||
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||
>/dev/null
|
||||
|
||||
# Attach AAB
|
||||
AAB="${{ steps.bundle.outputs.aab }}"
|
||||
NAME_AAB=$(basename "$AAB")
|
||||
echo "Uploading $NAME_AAB"
|
||||
|
||||
curl -sS -X POST \
|
||||
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||
-F "attachment=@${AAB}" \
|
||||
-F "name=${NAME_AAB}" \
|
||||
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||
>/dev/null
|
||||
|
||||
release-master:
|
||||
runs-on:
|
||||
- mileograph
|
||||
@@ -320,6 +489,7 @@ jobs:
|
||||
- meta
|
||||
- android-build
|
||||
- linux-build
|
||||
- web-build
|
||||
steps:
|
||||
- name: Install jq
|
||||
run: |
|
||||
@@ -337,6 +507,13 @@ jobs:
|
||||
name: android-apk
|
||||
path: artifacts
|
||||
|
||||
- name: Download Android AAB
|
||||
if: ${{ github.ref == 'refs/heads/master' }}
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: android-aab
|
||||
path: artifacts
|
||||
|
||||
- name: Prepare APK and tag
|
||||
if: ${{ github.ref == 'refs/heads/master' }}
|
||||
id: bundle
|
||||
@@ -346,6 +523,7 @@ jobs:
|
||||
|
||||
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||
echo "apk=artifacts/mileograph-${BASE}.apk" >> "$GITHUB_OUTPUT"
|
||||
echo "aab=artifacts/mileograph-${BASE}.aab" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Create release on Gitea
|
||||
if: ${{ github.ref == 'refs/heads/master' }}
|
||||
@@ -384,3 +562,15 @@ jobs:
|
||||
-F "name=${NAME}" \
|
||||
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||
>/dev/null
|
||||
|
||||
# Attach AAB
|
||||
AAB="${{ steps.bundle.outputs.aab }}"
|
||||
NAME_AAB=$(basename "$AAB")
|
||||
echo "Uploading $NAME_AAB"
|
||||
|
||||
curl -sS -X POST \
|
||||
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||
-F "attachment=@${AAB}" \
|
||||
-F "name=${NAME_AAB}" \
|
||||
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||
>/dev/null
|
||||
|
||||
10
Dockerfile.web
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM nginx:1.27-alpine
|
||||
|
||||
# Use a minimal Nginx image to serve the built Flutter web app.
|
||||
# Assumes `flutter build web` has already populated build/web/ in the build context.
|
||||
COPY deploy/web/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY build/web /usr/share/nginx/html
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
71
README.md
@@ -1,16 +1,67 @@
|
||||
# mileograph_flutter
|
||||
# Mileograph (Flutter)
|
||||
|
||||
A new Flutter project.
|
||||
Mileograph is a Flutter client for logging and analysing railway journeys. It lets you record legs, group them into trips, track locomotive mileage, and view stats and leaderboards.
|
||||
|
||||
## Getting Started
|
||||
## Features
|
||||
- Add and edit journey legs with traction, timings, routes, notes, and delays.
|
||||
- Group legs into trips and see mileage totals and traction stats.
|
||||
- Browse traction, view loco details, mileage leaderboards, timelines, and legs.
|
||||
- Dashboard with homepage stats, “On This Day”, recent traction changes, and trips.
|
||||
- Profile badges, class clearance progress, and traction progress.
|
||||
- Offline-friendly UI built with Provider, GoRouter, and Material 3 styling.
|
||||
|
||||
This project is a starting point for a Flutter application.
|
||||
## Project layout
|
||||
- `lib/objects/objects.dart` — shared model classes and helpers.
|
||||
- `lib/services/` — API, data loading, auth, endpoints, distance units.
|
||||
- `lib/components/` — UI pages and widgets (entries, traction, dashboard, trips, settings, etc.).
|
||||
- `assets/` — icons/fonts and other bundled assets.
|
||||
|
||||
A few resources to get you started if this is your first Flutter project:
|
||||
## Prerequisites
|
||||
- Flutter SDK (3.x or later recommended).
|
||||
- Dart SDK (bundled with Flutter).
|
||||
- A Mileograph API endpoint (set in Settings within the app).
|
||||
|
||||
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
||||
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
||||
## Setup
|
||||
1) Install Flutter: follow https://docs.flutter.dev/get-started/install and ensure `flutter doctor` is green.
|
||||
2) Get dependencies:
|
||||
```bash
|
||||
flutter pub get
|
||||
```
|
||||
3) Configure an API endpoint:
|
||||
- Run the app, open Settings, and set the base URL for your Mileograph backend.
|
||||
- The app probes the endpoint for a version string before saving.
|
||||
|
||||
For help getting started with Flutter development, view the
|
||||
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
||||
samples, guidance on mobile development, and a full API reference.
|
||||
## Running
|
||||
- Debug (mobile/web depending on your toolchain):
|
||||
```bash
|
||||
flutter run
|
||||
```
|
||||
- Release build (example for Android):
|
||||
```bash
|
||||
flutter build apk --release
|
||||
```
|
||||
|
||||
## Testing and linting
|
||||
- Static analysis: `flutter analyze`
|
||||
- Unit/widget tests (if present): `flutter test`
|
||||
|
||||
## Contributing
|
||||
1) Fork or branch from `main`.
|
||||
2) Make changes with clear, small commits.
|
||||
3) Add tests where feasible and keep `flutter analyze` clean.
|
||||
4) Submit a PR describing:
|
||||
- What changed and why.
|
||||
- How to test or reproduce.
|
||||
- Any API or migration notes.
|
||||
|
||||
### Coding conventions
|
||||
- Prefer stateless widgets where possible; keep state localized.
|
||||
- Use existing services in `lib/services` for API access; add new endpoints there.
|
||||
- Keep models in `objects.dart` (or nearby files) and use helper parsers for defensive JSON handling.
|
||||
- Follow Material theming already in use; keep strings user-facing and concise.
|
||||
|
||||
### Issue reporting
|
||||
Include device/OS, Flutter version (`flutter --version`), steps to reproduce, expected vs. actual behaviour, and logs if available.
|
||||
|
||||
## License
|
||||
Copyright © Mileograph contributors. See repository terms if provided.
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import java.io.File
|
||||
import java.util.Properties
|
||||
|
||||
plugins {
|
||||
@@ -22,8 +23,21 @@ val releaseKeyAlias = System.getenv("ANDROID_KEY_ALIAS")
|
||||
val releaseKeyPassword = System.getenv("ANDROID_KEY_PASSWORD")
|
||||
?: keystoreProperties.getProperty("keyPassword")
|
||||
|
||||
val releaseStoreFilePath: File? = releaseStoreFile?.let { path ->
|
||||
val candidate = File(path)
|
||||
if (candidate.isAbsolute) return@let candidate
|
||||
|
||||
val candidates = listOfNotNull(
|
||||
rootProject.file(path),
|
||||
rootProject.projectDir.parentFile?.let { File(it, path) },
|
||||
project.file(path),
|
||||
)
|
||||
|
||||
candidates.firstOrNull { it.exists() }
|
||||
}
|
||||
|
||||
val hasReleaseKeystore = listOf(
|
||||
releaseStoreFile,
|
||||
releaseStoreFilePath?.path,
|
||||
releaseStorePassword,
|
||||
releaseKeyAlias,
|
||||
releaseKeyPassword
|
||||
@@ -31,7 +45,7 @@ val hasReleaseKeystore = listOf(
|
||||
|
||||
android {
|
||||
namespace = "com.example.mileograph_flutter"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
compileSdk = 36
|
||||
ndkVersion = "27.0.12077973"
|
||||
|
||||
compileOptions {
|
||||
@@ -48,8 +62,8 @@ android {
|
||||
applicationId = "com.petegregoryy.mileograph_flutter"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = flutter.minSdkVersion
|
||||
targetSdk = flutter.targetSdkVersion
|
||||
minSdk = 24
|
||||
targetSdk = 36
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
}
|
||||
@@ -57,7 +71,7 @@ android {
|
||||
signingConfigs {
|
||||
if (hasReleaseKeystore) {
|
||||
create("release") {
|
||||
storeFile = file(releaseStoreFile!!)
|
||||
storeFile = releaseStoreFilePath
|
||||
storePassword = releaseStorePassword
|
||||
keyAlias = releaseKeyAlias!!
|
||||
keyPassword = releaseKeyPassword
|
||||
|
||||
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1014 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 689 B |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ic_launcher_background">#ffffff</color>
|
||||
<color name="ic_launcher_background">#000000</color>
|
||||
</resources>
|
||||
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 6.0 KiB |
BIN
assets/icons/app_icon_old.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
28
deploy/web/nginx.conf
Normal file
@@ -0,0 +1,28 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
root /usr/share/nginx/html;
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
# Serve hashed assets aggressively; keep index/service worker cacheable but not immutable.
|
||||
location /assets/ {
|
||||
try_files $uri =404;
|
||||
expires 30d;
|
||||
add_header Cache-Control "public, max-age=2592000, immutable";
|
||||
}
|
||||
|
||||
location /icons/ {
|
||||
try_files $uri =404;
|
||||
expires 30d;
|
||||
add_header Cache-Control "public, max-age=2592000";
|
||||
}
|
||||
|
||||
location = /flutter_service_worker.js {
|
||||
add_header Cache-Control "no-cache";
|
||||
try_files $uri =404;
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 598 B After Width: | Height: | Size: 346 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 497 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 738 B |
|
Before Width: | Height: | Size: 834 B After Width: | Height: | Size: 425 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 697 B |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 1017 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 497 B |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 876 B |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 632 B |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 698 B |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 834 B |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 841 B |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 1.7 KiB |
11
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/authservice.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:mileograph_flutter/services/endpoint_service.dart';
|
||||
import 'package:mileograph_flutter/ui/app_shell.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
@@ -16,6 +17,9 @@ class App extends StatelessWidget {
|
||||
ChangeNotifierProvider<EndpointService>(
|
||||
create: (_) => EndpointService(),
|
||||
),
|
||||
ChangeNotifierProvider<DistanceUnitService>(
|
||||
create: (_) => DistanceUnitService(),
|
||||
),
|
||||
ProxyProvider<EndpointService, ApiService>(
|
||||
update: (_, endpoint, api) {
|
||||
final service = api ?? ApiService(baseUrl: endpoint.baseUrl);
|
||||
@@ -27,8 +31,13 @@ class App extends StatelessWidget {
|
||||
ChangeNotifierProvider<AuthService>(
|
||||
create: (context) => AuthService(api: context.read<ApiService>()),
|
||||
),
|
||||
ChangeNotifierProvider<DataService>(
|
||||
ChangeNotifierProxyProvider<AuthService, DataService>(
|
||||
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(),
|
||||
|
||||
@@ -366,6 +366,16 @@ class _RouteCalculatorState extends State<RouteCalculator> {
|
||||
spacing: 12,
|
||||
runSpacing: 8,
|
||||
children: [
|
||||
ElevatedButton.icon(
|
||||
icon: const Icon(Icons.swap_horiz),
|
||||
label: const Text('Reverse route'),
|
||||
onPressed: () async {
|
||||
setState(() {
|
||||
data.stations = data.stations.reversed.toList();
|
||||
});
|
||||
await _calculateRoute(data.stations);
|
||||
},
|
||||
),
|
||||
ElevatedButton.icon(
|
||||
icon: const Icon(Icons.add),
|
||||
label: const Text('Add Station'),
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class RouteSummaryWidget extends StatelessWidget {
|
||||
final double distance;
|
||||
@@ -12,13 +14,14 @@ class RouteSummaryWidget extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
"Total Distance: ${distance.toStringAsFixed(2)} mi",
|
||||
"Total Distance: ${distanceUnits.format(distance, decimals: 2)}",
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
),
|
||||
),
|
||||
@@ -48,6 +51,7 @@ class RouteDetailsView extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final highlightColor = Theme.of(context).colorScheme.primary;
|
||||
final mutedColor = Theme.of(context).colorScheme.outlineVariant;
|
||||
return Column(
|
||||
@@ -78,7 +82,9 @@ class RouteDetailsView extends StatelessWidget {
|
||||
? TextStyle(color: highlightColor, fontWeight: FontWeight.w600)
|
||||
: null,
|
||||
),
|
||||
trailing: Text("${costs[index].toStringAsFixed(2)} mi"),
|
||||
trailing: Text(
|
||||
distanceUnits.format(costs[index], decimals: 2),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
|
||||
@@ -36,7 +36,6 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
||||
final data = context.watch<DataService>();
|
||||
final changes = data.latestLocoChanges;
|
||||
final isLoading = data.isLatestLocoChangesLoading;
|
||||
final hasMore = data.latestLocoChangesHasMore;
|
||||
final textTheme = Theme.of(context).textTheme;
|
||||
|
||||
return Card(
|
||||
@@ -52,7 +51,7 @@ class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
||||
const SizedBox(width: 8),
|
||||
Expanded(
|
||||
child: Text(
|
||||
'Latest loco changes',
|
||||
'Latest Loco Changes',
|
||||
style: textTheme.titleMedium?.copyWith(
|
||||
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,
|
||||
);
|
||||
|
||||
|
||||
@@ -1,17 +1,31 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
enum _LeaderboardScope { global, friends }
|
||||
|
||||
class LeaderboardPanel extends StatelessWidget {
|
||||
class LeaderboardPanel extends StatefulWidget {
|
||||
const LeaderboardPanel({super.key});
|
||||
|
||||
@override
|
||||
State<LeaderboardPanel> createState() => _LeaderboardPanelState();
|
||||
}
|
||||
|
||||
class _LeaderboardPanelState extends State<LeaderboardPanel> {
|
||||
_LeaderboardScope _scope = _LeaderboardScope.global;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.watch<DataService>();
|
||||
final leaderboard = data.homepageStats?.leaderboard ?? [];
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final leaderboard = _scope == _LeaderboardScope.global
|
||||
? (data.homepageStats?.leaderboard ?? [])
|
||||
: data.friendsLeaderboard;
|
||||
final loading = _scope == _LeaderboardScope.global
|
||||
? data.isHomepageLoading
|
||||
: data.isFriendsLeaderboardLoading;
|
||||
final textTheme = Theme.of(context).textTheme;
|
||||
if (data.isHomepageLoading && leaderboard.isEmpty) {
|
||||
if (loading && leaderboard.isEmpty) {
|
||||
return const Padding(
|
||||
padding: EdgeInsets.all(16.0),
|
||||
child: Center(child: CircularProgressIndicator()),
|
||||
@@ -49,6 +63,38 @@ class LeaderboardPanel extends StatelessWidget {
|
||||
style: textTheme.labelSmall,
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
SegmentedButton<_LeaderboardScope>(
|
||||
segments: const [
|
||||
ButtonSegment(
|
||||
value: _LeaderboardScope.global,
|
||||
label: Text('Global'),
|
||||
),
|
||||
ButtonSegment(
|
||||
value: _LeaderboardScope.friends,
|
||||
label: Text('Friends'),
|
||||
),
|
||||
],
|
||||
selected: {_scope},
|
||||
onSelectionChanged: (vals) async {
|
||||
if (vals.isEmpty) return;
|
||||
final selected = vals.first;
|
||||
setState(() => _scope = selected);
|
||||
if (selected == _LeaderboardScope.friends &&
|
||||
data.friendsLeaderboard.isEmpty &&
|
||||
!data.isFriendsLeaderboardLoading) {
|
||||
await data.fetchFriendsLeaderboard();
|
||||
} else if (selected == _LeaderboardScope.global &&
|
||||
(data.homepageStats?.leaderboard.isEmpty ?? true) &&
|
||||
!data.isHomepageLoading) {
|
||||
await data.fetchHomepageStats();
|
||||
}
|
||||
},
|
||||
style: SegmentedButton.styleFrom(
|
||||
visualDensity: VisualDensity.compact,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
@@ -82,7 +128,10 @@ class LeaderboardPanel extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
trailing: Text(
|
||||
'${leaderboard[index].mileage.toStringAsFixed(1)} mi',
|
||||
distanceUnits.format(
|
||||
leaderboard[index].mileage,
|
||||
decimals: 1,
|
||||
),
|
||||
style: textTheme.labelLarge?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class TopTractionPanel extends StatelessWidget {
|
||||
@@ -9,6 +9,7 @@ class TopTractionPanel extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.watch<DataService>();
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final stats = data.homepageStats;
|
||||
final locos = stats?.topLocos ?? [];
|
||||
final textTheme = Theme.of(context).textTheme;
|
||||
@@ -78,7 +79,10 @@ class TopTractionPanel extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
trailing: Text(
|
||||
'${locos[index].mileage?.toStringAsFixed(1)} mi',
|
||||
distanceUnits.format(
|
||||
locos[index].mileage ?? 0,
|
||||
decimals: 1,
|
||||
),
|
||||
style: textTheme.labelLarge?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import 'dart:convert';
|
||||
|
||||
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:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class LegCard extends StatefulWidget {
|
||||
@@ -28,9 +27,15 @@ class _LegCardState extends State<LegCard> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final leg = widget.leg;
|
||||
final isShared = leg.legShareId != null && leg.legShareId!.isNotEmpty;
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final routeSegments = _parseRouteSegments(leg.route);
|
||||
final textTheme = Theme.of(context).textTheme;
|
||||
return Card(
|
||||
clipBehavior: Clip.antiAlias,
|
||||
elevation: 1,
|
||||
child: Theme(
|
||||
data: Theme.of(context).copyWith(dividerColor: Colors.transparent),
|
||||
child: ExpansionTile(
|
||||
onExpansionChanged: (v) => setState(() => _expanded = v),
|
||||
tilePadding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4),
|
||||
@@ -38,19 +43,72 @@ class _LegCardState extends State<LegCard> {
|
||||
title: LayoutBuilder(
|
||||
builder: (context, constraints) {
|
||||
final isWide = constraints.maxWidth > 520;
|
||||
final routeText = Text('${leg.start} → ${leg.end}');
|
||||
final timeText =
|
||||
Text(_formatDateTime(leg.beginTime, includeDate: widget.showDate));
|
||||
final beginTimeWidget = _timeWithDelay(
|
||||
context,
|
||||
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) {
|
||||
return routeText;
|
||||
}
|
||||
return Row(
|
||||
final timeStyle = Theme.of(context).textTheme.labelSmall;
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
timeText,
|
||||
const SizedBox(width: 6),
|
||||
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('·'),
|
||||
const SizedBox(width: 6),
|
||||
Expanded(child: routeText),
|
||||
_timeWithDelay(
|
||||
context,
|
||||
leg.endTime!,
|
||||
leg.endDelayMinutes,
|
||||
includeDate: widget.showDate,
|
||||
style: timeStyle,
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
return Wrap(
|
||||
spacing: 6,
|
||||
runSpacing: 4,
|
||||
crossAxisAlignment: WrapCrossAlignment.center,
|
||||
children: [
|
||||
beginTimeWidget,
|
||||
const Text('·'),
|
||||
routeText,
|
||||
if (endTimeWidget != null) ...[
|
||||
const Text('·'),
|
||||
endTimeWidget,
|
||||
],
|
||||
],
|
||||
);
|
||||
},
|
||||
@@ -58,8 +116,6 @@ class _LegCardState extends State<LegCard> {
|
||||
subtitle: LayoutBuilder(
|
||||
builder: (context, constraints) {
|
||||
final isWide = constraints.maxWidth > 520;
|
||||
final timeWidget =
|
||||
Text(_formatDateTime(leg.beginTime, includeDate: widget.showDate));
|
||||
final tractionWrap = !_expanded && leg.locos.isNotEmpty
|
||||
? Wrap(
|
||||
spacing: 8,
|
||||
@@ -90,9 +146,7 @@ class _LegCardState extends State<LegCard> {
|
||||
children.add(tractionWrap);
|
||||
}
|
||||
} else {
|
||||
children.add(timeWidget);
|
||||
if (tractionWrap != null) {
|
||||
children.add(const SizedBox(height: 4));
|
||||
children.add(tractionWrap);
|
||||
}
|
||||
}
|
||||
@@ -128,7 +182,7 @@ class _LegCardState extends State<LegCard> {
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Text(
|
||||
'${leg.mileage.toStringAsFixed(1)} mi',
|
||||
distanceUnits.format(leg.mileage, decimals: 1),
|
||||
style: textTheme.labelLarge?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
@@ -144,6 +198,17 @@ class _LegCardState extends State<LegCard> {
|
||||
],
|
||||
],
|
||||
),
|
||||
if (isShared) ...[
|
||||
const SizedBox(width: 8),
|
||||
Tooltip(
|
||||
message: 'Shared entry',
|
||||
child: Icon(
|
||||
Icons.share,
|
||||
size: 18,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
),
|
||||
],
|
||||
if (widget.showEditButton) ...[
|
||||
const SizedBox(width: 8),
|
||||
IconButton(
|
||||
@@ -191,6 +256,12 @@ class _LegCardState extends State<LegCard> {
|
||||
),
|
||||
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) ...[
|
||||
Text('Route', style: textTheme.titleSmall),
|
||||
const SizedBox(height: 6),
|
||||
@@ -201,6 +272,7 @@ class _LegCardState extends State<LegCard> {
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -224,6 +296,7 @@ class _LegCardState extends State<LegCard> {
|
||||
);
|
||||
if (confirmed != true) return;
|
||||
|
||||
if (!context.mounted) return;
|
||||
final data = context.read<DataService>();
|
||||
final messenger = ScaffoldMessenger.of(context);
|
||||
try {
|
||||
@@ -237,6 +310,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) {
|
||||
if (date == null) return '';
|
||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||
@@ -285,6 +392,51 @@ class _LegCardState extends State<LegCard> {
|
||||
.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) {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
@@ -305,38 +457,7 @@ class _LegCardState extends State<LegCard> {
|
||||
);
|
||||
}
|
||||
|
||||
List<String> _parseRouteSegments(String route) {
|
||||
final trimmed = route.trim();
|
||||
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];
|
||||
List<String> _parseRouteSegments(List<String> route) {
|
||||
return route.map((e) => e.toString()).where((e) => e.trim().isNotEmpty).toList();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class LoginScreen extends StatefulWidget {
|
||||
@@ -16,7 +17,9 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) => _checkExistingSession());
|
||||
WidgetsBinding.instance.addPostFrameCallback(
|
||||
(_) => _checkExistingSession(),
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> _checkExistingSession() async {
|
||||
@@ -26,7 +29,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
if (!valid) return;
|
||||
await auth.tryRestoreSession();
|
||||
if (!mounted) return;
|
||||
context.go('/');
|
||||
context.go('/dashboard');
|
||||
} finally {
|
||||
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 LoginPanel(),
|
||||
const SizedBox(height: 16),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.settings, color: Colors.grey),
|
||||
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(() {
|
||||
_loggingIn = false;
|
||||
});
|
||||
context.go('/dashboard');
|
||||
} catch (e) {
|
||||
if (!mounted) return;
|
||||
setState(() {
|
||||
_loggingIn = false;
|
||||
});
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text('Login failed: $e')),
|
||||
);
|
||||
ScaffoldMessenger.of(
|
||||
context,
|
||||
).showSnackBar(SnackBar(content: Text('Login failed: $e')));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -274,6 +294,7 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
||||
final _passwordController = TextEditingController();
|
||||
final _inviteController = TextEditingController();
|
||||
bool _registering = false;
|
||||
String? _usernameError;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
@@ -286,10 +307,21 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
||||
}
|
||||
|
||||
Future<void> _register() async {
|
||||
final username = _usernameController.text.trim();
|
||||
if (username.contains(' ') || username.contains('@')) {
|
||||
setState(() {
|
||||
_usernameError = 'Username cannot contain spaces or @';
|
||||
});
|
||||
return;
|
||||
} else {
|
||||
setState(() {
|
||||
_usernameError = null;
|
||||
});
|
||||
}
|
||||
setState(() => _registering = true);
|
||||
try {
|
||||
await widget.authService.register(
|
||||
username: _usernameController.text.trim(),
|
||||
username: username,
|
||||
email: _emailController.text.trim(),
|
||||
fullName: _displayNameController.text.trim(),
|
||||
password: _passwordController.text,
|
||||
@@ -297,14 +329,16 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
||||
);
|
||||
if (!mounted) return;
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('Registration successful. Please log in.')),
|
||||
const SnackBar(
|
||||
content: Text('Registration successful. Please log in.'),
|
||||
),
|
||||
);
|
||||
widget.onBack();
|
||||
} catch (e) {
|
||||
if (!mounted) return;
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text('Registration failed: $e')),
|
||||
);
|
||||
ScaffoldMessenger.of(
|
||||
context,
|
||||
).showSnackBar(SnackBar(content: Text('Registration failed: $e')));
|
||||
} finally {
|
||||
if (mounted) setState(() => _registering = false);
|
||||
}
|
||||
@@ -341,6 +375,21 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
||||
border: OutlineInputBorder(),
|
||||
labelText: "Username",
|
||||
),
|
||||
onChanged: (_) {
|
||||
if (_usernameError != null &&
|
||||
!_usernameController.text.contains(' ') &&
|
||||
!_usernameController.text.contains('@')) {
|
||||
setState(() => _usernameError = null);
|
||||
}
|
||||
},
|
||||
),
|
||||
if (_usernameError != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 4.0),
|
||||
child: Text(
|
||||
_usernameError!,
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.error),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
TextField(
|
||||
|
||||
705
lib/components/pages/badges.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 BadgesPage extends StatefulWidget {
|
||||
const BadgesPage({super.key});
|
||||
|
||||
@override
|
||||
State<BadgesPage> createState() => _BadgesPageState();
|
||||
}
|
||||
|
||||
class _BadgesPageState extends State<BadgesPage> {
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@ import 'package:mileograph_flutter/components/dashboard/top_traction_panel.dart'
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class Dashboard extends StatefulWidget {
|
||||
@@ -23,9 +24,10 @@ class _DashboardState extends State<Dashboard> {
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.watch<DataService>();
|
||||
final auth = context.watch<AuthService>();
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final stats = data.homepageStats;
|
||||
|
||||
final isInitialLoading = data.isHomepageLoading || stats == null;
|
||||
final isInitialLoading = data.isHomepageLoading && stats == null;
|
||||
|
||||
return RefreshIndicator(
|
||||
onRefresh: () async {
|
||||
@@ -46,9 +48,15 @@ class _DashboardState extends State<Dashboard> {
|
||||
ListView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
children: [
|
||||
_buildHero(context, auth, data, stats),
|
||||
_buildHero(context, auth, data, stats, distanceUnits),
|
||||
const SizedBox(height: spacing),
|
||||
_buildTiles(context, data, maxWidth, spacing),
|
||||
_buildTiles(
|
||||
context,
|
||||
data,
|
||||
distanceUnits,
|
||||
maxWidth,
|
||||
spacing,
|
||||
),
|
||||
],
|
||||
),
|
||||
if (isInitialLoading)
|
||||
@@ -81,6 +89,7 @@ class _DashboardState extends State<Dashboard> {
|
||||
AuthService auth,
|
||||
DataService data,
|
||||
HomepageStats? stats,
|
||||
DistanceUnitService distanceUnits,
|
||||
) {
|
||||
final colorScheme = Theme.of(context).colorScheme;
|
||||
final greetingName =
|
||||
@@ -119,14 +128,14 @@ class _DashboardState extends State<Dashboard> {
|
||||
_metricTile(
|
||||
context,
|
||||
label: 'Total mileage',
|
||||
value: '${totalMileage.toStringAsFixed(1)} mi',
|
||||
value: distanceUnits.format(totalMileage, decimals: 1),
|
||||
icon: Icons.route,
|
||||
color: colorScheme.onPrimaryContainer,
|
||||
),
|
||||
_metricTile(
|
||||
context,
|
||||
label: 'This year',
|
||||
value: '${currentYearMileage.toStringAsFixed(1)} mi',
|
||||
value: distanceUnits.format(currentYearMileage, decimals: 1),
|
||||
icon: Icons.calendar_today,
|
||||
color: colorScheme.onPrimaryContainer,
|
||||
),
|
||||
@@ -215,6 +224,7 @@ class _DashboardState extends State<Dashboard> {
|
||||
Widget _buildTiles(
|
||||
BuildContext context,
|
||||
DataService data,
|
||||
DistanceUnitService distanceUnits,
|
||||
double maxWidth,
|
||||
double spacing,
|
||||
) {
|
||||
@@ -229,9 +239,9 @@ class _DashboardState extends State<Dashboard> {
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
_buildOnThisDayCard(context, data),
|
||||
_buildOnThisDayCard(context, data, distanceUnits),
|
||||
const SizedBox(height: 16),
|
||||
_buildTripsCard(context, data),
|
||||
_buildTripsCard(context, data, distanceUnits),
|
||||
const SizedBox(height: 16),
|
||||
const LatestLocoChangesPanel(expanded: true),
|
||||
],
|
||||
@@ -256,13 +266,13 @@ class _DashboardState extends State<Dashboard> {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
_buildOnThisDayCard(context, data),
|
||||
_buildOnThisDayCard(context, data, distanceUnits),
|
||||
const SizedBox(height: 16),
|
||||
const TopTractionPanel(),
|
||||
const SizedBox(height: 16),
|
||||
const LeaderboardPanel(),
|
||||
const SizedBox(height: 16),
|
||||
_buildTripsCard(context, data),
|
||||
_buildTripsCard(context, data, distanceUnits),
|
||||
const SizedBox(height: 16),
|
||||
const LatestLocoChangesPanel(),
|
||||
],
|
||||
@@ -296,7 +306,8 @@ class _DashboardState extends State<Dashboard> {
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildOnThisDayCard(BuildContext context, DataService data) {
|
||||
Widget _buildOnThisDayCard(
|
||||
BuildContext context, DataService data, DistanceUnitService distanceUnits) {
|
||||
final filtered = data.onThisDay
|
||||
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
||||
.toList();
|
||||
@@ -329,7 +340,7 @@ class _DashboardState extends State<Dashboard> {
|
||||
: Column(
|
||||
children: [
|
||||
for (int idx = 0; idx < visible.length; idx++) ...[
|
||||
_otdRow(context, visible[idx], textTheme),
|
||||
_otdRow(context, visible[idx], textTheme, distanceUnits),
|
||||
if (idx != visible.length - 1) const Divider(height: 12),
|
||||
],
|
||||
],
|
||||
@@ -337,7 +348,8 @@ class _DashboardState extends State<Dashboard> {
|
||||
);
|
||||
}
|
||||
|
||||
Widget _otdRow(BuildContext context, Leg leg, TextTheme textTheme) {
|
||||
Widget _otdRow(BuildContext context, Leg leg, TextTheme textTheme,
|
||||
DistanceUnitService distanceUnits) {
|
||||
final traction = leg.locos;
|
||||
return Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
@@ -443,7 +455,7 @@ class _DashboardState extends State<Dashboard> {
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Text(
|
||||
'${leg.mileage.toStringAsFixed(1)} mi',
|
||||
distanceUnits.format(leg.mileage, decimals: 1),
|
||||
style: textTheme.labelLarge?.copyWith(
|
||||
fontWeight: FontWeight.w800,
|
||||
),
|
||||
@@ -498,18 +510,19 @@ class _DashboardState extends State<Dashboard> {
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildTripsCard(BuildContext context, DataService data) {
|
||||
Widget _buildTripsCard(
|
||||
BuildContext context, DataService data, DistanceUnitService distanceUnits) {
|
||||
final tripsUnsorted = data.trips;
|
||||
List trips = [];
|
||||
List<TripSummary> trips = [];
|
||||
if (tripsUnsorted.isNotEmpty) {
|
||||
trips = [...tripsUnsorted]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||
trips = [...tripsUnsorted]..sort(TripSummary.compareByDateDesc);
|
||||
}
|
||||
return _panel(
|
||||
context,
|
||||
icon: Icons.bookmark,
|
||||
title: 'Trips',
|
||||
action: TextButton(
|
||||
onPressed: () => context.push('/trips'),
|
||||
onPressed: () => context.push('/logbook/trips'),
|
||||
child: const Text('View all'),
|
||||
),
|
||||
child: trips.isEmpty
|
||||
@@ -543,7 +556,7 @@ class _DashboardState extends State<Dashboard> {
|
||||
?.copyWith(fontWeight: FontWeight.w700),
|
||||
),
|
||||
Text(
|
||||
'${trip.tripMileage.toStringAsFixed(1)} mi',
|
||||
distanceUnits.format(trip.tripMileage, decimals: 1),
|
||||
style: Theme.of(context).textTheme.labelMedium,
|
||||
),
|
||||
],
|
||||
|
||||
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/components/legs/leg_card.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class LegsPage extends StatefulWidget {
|
||||
@@ -90,6 +91,7 @@ class _LegsPageState extends State<LegsPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.watch<DataService>();
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final legs = data.legs;
|
||||
final pageMileage = _pageMileage(legs);
|
||||
|
||||
@@ -121,7 +123,7 @@ class _LegsPageState extends State<LegsPage> {
|
||||
children: [
|
||||
Text('Page mileage',
|
||||
style: Theme.of(context).textTheme.labelSmall),
|
||||
Text('${pageMileage.toStringAsFixed(1)} mi',
|
||||
Text(distanceUnits.format(pageMileage, decimals: 1),
|
||||
style: Theme.of(context)
|
||||
.textTheme
|
||||
.titleMedium
|
||||
@@ -212,7 +214,7 @@ class _LegsPageState extends State<LegsPage> {
|
||||
else
|
||||
Column(
|
||||
children: [
|
||||
..._buildLegsWithDividers(context, legs),
|
||||
..._buildLegsWithDividers(context, legs, distanceUnits),
|
||||
const SizedBox(height: 8),
|
||||
if (data.legsHasMore || data.isLegsLoading)
|
||||
Align(
|
||||
@@ -239,7 +241,11 @@ class _LegsPageState extends State<LegsPage> {
|
||||
);
|
||||
}
|
||||
|
||||
List<Widget> _buildLegsWithDividers(BuildContext context, List<Leg> legs) {
|
||||
List<Widget> _buildLegsWithDividers(
|
||||
BuildContext context,
|
||||
List<Leg> legs,
|
||||
DistanceUnitService distanceUnits,
|
||||
) {
|
||||
final widgets = <Widget>[];
|
||||
String? currentDate;
|
||||
double dayMileage = 0;
|
||||
@@ -261,10 +267,8 @@ class _LegsPageState extends State<LegsPage> {
|
||||
),
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'${dayMileage.toStringAsFixed(1)} mi',
|
||||
style: Theme.of(context).textTheme.labelMedium,
|
||||
),
|
||||
Text(distanceUnits.format(dayMileage, decimals: 1),
|
||||
style: Theme.of(context).textTheme.labelMedium),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
@@ -299,7 +299,6 @@ class _FieldInput extends StatelessWidget {
|
||||
final name = field.name.toLowerCase();
|
||||
if (name == 'max_speed') {
|
||||
final unit = entry.unit ?? 'kph';
|
||||
final isNumber = true;
|
||||
return Row(
|
||||
children: [
|
||||
Expanded(
|
||||
@@ -307,7 +306,7 @@ class _FieldInput extends StatelessWidget {
|
||||
initialValue: value?.toString(),
|
||||
onChanged: (val) {
|
||||
final parsed = double.tryParse(val);
|
||||
onChanged(isNumber ? parsed : val, unit: unit);
|
||||
onChanged(parsed, unit: unit);
|
||||
},
|
||||
decoration: const InputDecoration(
|
||||
border: OutlineInputBorder(),
|
||||
|
||||
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()]),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
13
lib/components/pages/more.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/components/pages/more/more_home_page.dart';
|
||||
|
||||
export 'more/admin_page.dart';
|
||||
|
||||
class MorePage extends StatelessWidget {
|
||||
const MorePage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const MoreHomePage();
|
||||
}
|
||||
}
|
||||
476
lib/components/pages/more/admin_page.dart
Normal file
@@ -0,0 +1,476 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/api_service.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
|
||||
class AdminPage extends StatefulWidget {
|
||||
const AdminPage({super.key});
|
||||
|
||||
@override
|
||||
State<AdminPage> createState() => _AdminPageState();
|
||||
}
|
||||
|
||||
class _AdminPageState extends State<AdminPage> {
|
||||
final TextEditingController _titleController = TextEditingController();
|
||||
final TextEditingController _bodyController = TextEditingController();
|
||||
|
||||
final List<UserSummary> _selectedUsers = [];
|
||||
List<UserSummary> _userOptions = [];
|
||||
|
||||
List<String> _channels = [];
|
||||
String? _selectedChannel;
|
||||
String? _channelError;
|
||||
bool _loadingChannels = false;
|
||||
|
||||
String? _userError;
|
||||
|
||||
bool _sending = false;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_loadChannels();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_titleController.dispose();
|
||||
_bodyController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
Future<void> _loadChannels() async {
|
||||
setState(() {
|
||||
_loadingChannels = true;
|
||||
_channelError = null;
|
||||
});
|
||||
try {
|
||||
final api = context.read<ApiService>();
|
||||
final json = await api.get('/notifications/channels');
|
||||
List<dynamic>? list;
|
||||
if (json is List) {
|
||||
list = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['channels', 'data']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
list = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
final parsed =
|
||||
list?.map((e) => e.toString()).where((e) => e.isNotEmpty).toList() ??
|
||||
const [];
|
||||
setState(() {
|
||||
_channels = parsed;
|
||||
_selectedChannel = parsed.isNotEmpty ? parsed.first : null;
|
||||
});
|
||||
} catch (e) {
|
||||
setState(() {
|
||||
_channelError = 'Failed to load channels';
|
||||
});
|
||||
} finally {
|
||||
if (mounted) setState(() => _loadingChannels = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<List<UserSummary>> _fetchUserSuggestions(
|
||||
ApiService api,
|
||||
String query,
|
||||
) async {
|
||||
final encoded = Uri.encodeComponent(query);
|
||||
final candidates = [
|
||||
'/users/search?q=$encoded',
|
||||
'/users/search?query=$encoded',
|
||||
'/users?search=$encoded',
|
||||
];
|
||||
for (final path in candidates) {
|
||||
try {
|
||||
final json = await api.get(path);
|
||||
List<dynamic>? list;
|
||||
if (json is List) {
|
||||
list = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['users', 'data', 'results', 'items']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
list = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (list != null) {
|
||||
return list
|
||||
.whereType<Map>()
|
||||
.map((e) => UserSummary.fromJson(
|
||||
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||
))
|
||||
.toList();
|
||||
}
|
||||
} catch (_) {
|
||||
// Try next endpoint
|
||||
}
|
||||
}
|
||||
return const [];
|
||||
}
|
||||
|
||||
void _removeUser(UserSummary user) {
|
||||
setState(() {
|
||||
_selectedUsers.removeWhere((u) => u.userId == user.userId);
|
||||
});
|
||||
}
|
||||
|
||||
Future<void> _openUserPicker() async {
|
||||
final api = context.read<ApiService>();
|
||||
var tempSelected = List<UserSummary>.from(_selectedUsers);
|
||||
var options = List<UserSummary>.from(_userOptions);
|
||||
String query = '';
|
||||
bool loading = false;
|
||||
String? error = _userError;
|
||||
|
||||
Future<void> runSearch(String q, void Function(void Function()) setModalState) async {
|
||||
setModalState(() {
|
||||
query = q;
|
||||
loading = true;
|
||||
error = null;
|
||||
});
|
||||
try {
|
||||
final results = await _fetchUserSuggestions(api, q);
|
||||
setModalState(() {
|
||||
options = results;
|
||||
loading = false;
|
||||
error = null;
|
||||
});
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_userOptions = results;
|
||||
_userError = null;
|
||||
});
|
||||
}
|
||||
} catch (e) {
|
||||
setModalState(() {
|
||||
loading = false;
|
||||
error = 'Failed to search users';
|
||||
});
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_userError = 'Failed to search users';
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var initialFetchTriggered = false;
|
||||
|
||||
await showModalBottomSheet<void>(
|
||||
context: context,
|
||||
isScrollControlled: true,
|
||||
builder: (ctx) {
|
||||
return StatefulBuilder(
|
||||
builder: (ctx, setModalState) {
|
||||
if (!initialFetchTriggered && !loading && options.isEmpty) {
|
||||
initialFetchTriggered = true;
|
||||
WidgetsBinding.instance.addPostFrameCallback(
|
||||
(_) => runSearch('', setModalState),
|
||||
);
|
||||
}
|
||||
final lowerQuery = query.toLowerCase();
|
||||
final filtered = lowerQuery.isEmpty
|
||||
? options
|
||||
: options.where((u) {
|
||||
return u.displayName.toLowerCase().contains(lowerQuery) ||
|
||||
u.username.toLowerCase().contains(lowerQuery) ||
|
||||
u.email.toLowerCase().contains(lowerQuery);
|
||||
}).toList();
|
||||
return SafeArea(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(
|
||||
left: 16,
|
||||
right: 16,
|
||||
top: 16,
|
||||
bottom: MediaQuery.of(ctx).viewInsets.bottom + 16,
|
||||
),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text(
|
||||
'Select recipients',
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
const Spacer(),
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
setModalState(() {
|
||||
tempSelected.clear();
|
||||
});
|
||||
setState(() => _selectedUsers.clear());
|
||||
},
|
||||
child: const Text('Clear'),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
TextField(
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Search users',
|
||||
border: OutlineInputBorder(),
|
||||
),
|
||||
onChanged: (val) => runSearch(val, setModalState),
|
||||
),
|
||||
if (loading)
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(top: 8.0),
|
||||
child: LinearProgressIndicator(minHeight: 2),
|
||||
),
|
||||
if (error != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
child: Text(
|
||||
error!,
|
||||
style:
|
||||
TextStyle(color: Theme.of(context).colorScheme.error),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
SizedBox(
|
||||
height: 340,
|
||||
child: filtered.isEmpty
|
||||
? const Center(child: Text('No users yet.'))
|
||||
: ListView.builder(
|
||||
itemCount: filtered.length,
|
||||
itemBuilder: (_, index) {
|
||||
final user = filtered[index];
|
||||
final selected =
|
||||
tempSelected.any((u) => u.userId == user.userId);
|
||||
return CheckboxListTile(
|
||||
value: selected,
|
||||
title: Text(user.displayName),
|
||||
subtitle: user.email.isNotEmpty
|
||||
? Text(user.email)
|
||||
: (user.username.isNotEmpty
|
||||
? Text(user.username)
|
||||
: null),
|
||||
onChanged: (val) {
|
||||
setModalState(() {
|
||||
if (val == true) {
|
||||
if (!tempSelected
|
||||
.any((u) => u.userId == user.userId)) {
|
||||
tempSelected.add(user);
|
||||
}
|
||||
} else {
|
||||
tempSelected.removeWhere(
|
||||
(u) => u.userId == user.userId);
|
||||
}
|
||||
});
|
||||
if (mounted) {
|
||||
setState(() {
|
||||
_selectedUsers
|
||||
..clear()
|
||||
..addAll(tempSelected);
|
||||
});
|
||||
}
|
||||
},
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Align(
|
||||
alignment: Alignment.centerRight,
|
||||
child: TextButton(
|
||||
onPressed: () => Navigator.of(ctx).pop(),
|
||||
child: const Text('Done'),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> _sendNotification() async {
|
||||
final channel = _selectedChannel;
|
||||
if (channel == null || channel.isEmpty) {
|
||||
_showSnack('Select a channel first.');
|
||||
return;
|
||||
}
|
||||
if (_selectedUsers.isEmpty) {
|
||||
_showSnack('Select at least one user.');
|
||||
return;
|
||||
}
|
||||
final title = _titleController.text.trim();
|
||||
final body = _bodyController.text.trim();
|
||||
if (title.isEmpty || body.isEmpty) {
|
||||
_showSnack('Title and body are required.');
|
||||
return;
|
||||
}
|
||||
setState(() => _sending = true);
|
||||
try {
|
||||
final api = context.read<ApiService>();
|
||||
await api.post('/notifications/new', {
|
||||
'user_ids': _selectedUsers.map((e) => e.userId).toList(),
|
||||
'channel': channel,
|
||||
'title': title,
|
||||
'body': body,
|
||||
});
|
||||
if (!mounted) return;
|
||||
_showSnack('Notification sent');
|
||||
setState(() {
|
||||
_selectedUsers.clear();
|
||||
_titleController.clear();
|
||||
_bodyController.clear();
|
||||
_userOptions.clear();
|
||||
});
|
||||
} catch (e) {
|
||||
_showSnack('Failed to send: $e');
|
||||
} finally {
|
||||
if (mounted) setState(() => _sending = false);
|
||||
}
|
||||
}
|
||||
|
||||
void _showSnack(String message) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(message)));
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isAdmin = context.select<AuthService, bool>((auth) => auth.isElevated);
|
||||
if (!isAdmin) {
|
||||
return const Scaffold(
|
||||
body: Center(child: Text('You do not have access to this page.')),
|
||||
);
|
||||
}
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Admin'),
|
||||
),
|
||||
body: ListView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
children: [
|
||||
Text(
|
||||
'Send notification',
|
||||
style: Theme.of(context).textTheme.titleLarge?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
_buildUserPicker(),
|
||||
const SizedBox(height: 12),
|
||||
DropdownButtonFormField<String>(
|
||||
value: _selectedChannel,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Channel',
|
||||
border: OutlineInputBorder(),
|
||||
),
|
||||
items: _channels
|
||||
.map(
|
||||
(c) => DropdownMenuItem(
|
||||
value: c,
|
||||
child: Text(c),
|
||||
),
|
||||
)
|
||||
.toList(),
|
||||
onChanged:
|
||||
_loadingChannels ? null : (val) => setState(() => _selectedChannel = val),
|
||||
),
|
||||
if (_loadingChannels)
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(top: 8.0),
|
||||
child: LinearProgressIndicator(minHeight: 2),
|
||||
),
|
||||
if (_channelError != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
child: Text(
|
||||
_channelError!,
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.error),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
controller: _titleController,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Title',
|
||||
border: OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
controller: _bodyController,
|
||||
minLines: 3,
|
||||
maxLines: 6,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Body',
|
||||
border: OutlineInputBorder(),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
SizedBox(
|
||||
width: double.infinity,
|
||||
child: ElevatedButton.icon(
|
||||
onPressed: _sending ? null : _sendNotification,
|
||||
icon: _sending
|
||||
? const SizedBox(
|
||||
width: 18,
|
||||
height: 18,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
)
|
||||
: const Icon(Icons.send),
|
||||
label: Text(_sending ? 'Sending...' : 'Send notification'),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildUserPicker() {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'Recipients',
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
children: _selectedUsers
|
||||
.map(
|
||||
(u) => InputChip(
|
||||
label: Text(u.displayName),
|
||||
onDeleted: () => _removeUser(u),
|
||||
),
|
||||
)
|
||||
.toList(),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
OutlinedButton.icon(
|
||||
onPressed: _openUserPicker,
|
||||
icon: const Icon(Icons.person_search),
|
||||
label: const Text('Select users'),
|
||||
),
|
||||
if (_userError != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
child: Text(
|
||||
_userError!,
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.error),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
59
lib/components/pages/more/more_home_page.dart
Normal file
@@ -0,0 +1,59 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
|
||||
class MoreHomePage extends StatelessWidget {
|
||||
const MoreHomePage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isAdmin = context.select<AuthService, bool>((auth) => auth.isElevated);
|
||||
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.person),
|
||||
title: const Text('Profile'),
|
||||
onTap: () => context.go('/more/profile'),
|
||||
),
|
||||
const Divider(height: 1),
|
||||
ListTile(
|
||||
leading: const Icon(Icons.emoji_events),
|
||||
title: const Text('Badges'),
|
||||
onTap: () => context.go('/more/badges'),
|
||||
),
|
||||
const Divider(height: 1),
|
||||
ListTile(
|
||||
leading: const Icon(Icons.bar_chart),
|
||||
title: const Text('Stats'),
|
||||
onTap: () => context.go('/more/stats'),
|
||||
),
|
||||
const Divider(height: 1),
|
||||
ListTile(
|
||||
leading: const Icon(Icons.settings),
|
||||
title: const Text('Settings'),
|
||||
onTap: () => context.go('/more/settings'),
|
||||
),
|
||||
if (isAdmin) const Divider(height: 1),
|
||||
if (isAdmin)
|
||||
ListTile(
|
||||
leading: const Icon(Icons.admin_panel_settings),
|
||||
title: const Text('Admin'),
|
||||
onTap: () => context.go('/more/admin'),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,9 @@ import 'package:mileograph_flutter/components/calculator/calculator.dart';
|
||||
import 'package:mileograph_flutter/components/pages/traction.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/api_service.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:mileograph_flutter/services/navigation_guard.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
|
||||
@@ -4,15 +4,28 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
Future<bool> _handleExitIntent() async {
|
||||
if (!mounted) return false;
|
||||
if (_isEditing) return true;
|
||||
if (_activeLegShare != null) return true;
|
||||
if (_formIsEmpty()) return true;
|
||||
if (_activeDraftId != null && !_draftChangedFromBaseline()) {
|
||||
return true;
|
||||
}
|
||||
final currentSnapshot = _currentSubmissionSnapshot();
|
||||
if (_lastSubmittedSnapshot != null &&
|
||||
_snapshotEquality.equals(_lastSubmittedSnapshot, currentSnapshot)) {
|
||||
return true;
|
||||
}
|
||||
final choice = await _promptSaveDraft();
|
||||
if (choice == _ExitChoice.cancel) return false;
|
||||
if (choice == _ExitChoice.save) {
|
||||
try {
|
||||
await _saveDraftEntry(draftId: _activeDraftId);
|
||||
} catch (_) {
|
||||
return true;
|
||||
}
|
||||
} 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);
|
||||
_activeDraftId = null;
|
||||
}
|
||||
@@ -29,18 +42,28 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
}
|
||||
|
||||
bool _formIsEmpty() {
|
||||
final beginDelayVal = _parseDelayMinutes(_beginDelayController.text);
|
||||
final endDelayVal = _parseDelayMinutes(_endDelayController.text);
|
||||
return _startController.text.trim().isEmpty &&
|
||||
_endController.text.trim().isEmpty &&
|
||||
_headcodeController.text.trim().isEmpty &&
|
||||
_notesController.text.trim().isEmpty &&
|
||||
_networkController.text.trim().isEmpty &&
|
||||
_mileageController.text.trim().isEmpty &&
|
||||
_originController.text.trim().isEmpty &&
|
||||
_destinationController.text.trim().isEmpty &&
|
||||
beginDelayVal == 0 &&
|
||||
endDelayVal == 0 &&
|
||||
!_hasOriginTime &&
|
||||
!_hasDestinationTime &&
|
||||
!_hasEndTime &&
|
||||
_routeResult == null &&
|
||||
_tractionItems.length <= 1;
|
||||
}
|
||||
|
||||
Future<_ExitChoice> _promptSaveDraft() async {
|
||||
if (!mounted) return _ExitChoice.cancel;
|
||||
try {
|
||||
final result = await showDialog<_ExitChoice>(
|
||||
context: context,
|
||||
barrierDismissible: false,
|
||||
@@ -66,10 +89,15 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
],
|
||||
),
|
||||
);
|
||||
if (!mounted) return _ExitChoice.cancel;
|
||||
return result ?? _ExitChoice.cancel;
|
||||
} catch (_) {
|
||||
return _ExitChoice.cancel;
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _openDrafts() async {
|
||||
if (_activeLegShare != null) return;
|
||||
final selected = await Navigator.of(context).push<_StoredDraft>(
|
||||
MaterialPageRoute(
|
||||
builder: (_) => _DraftListPage(
|
||||
@@ -85,6 +113,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
}
|
||||
|
||||
Future<void> _saveDraftManually() async {
|
||||
if (_activeLegShare != null) return;
|
||||
if (_savingDraft) return;
|
||||
if (_formIsEmpty()) {
|
||||
ScaffoldMessenger.maybeOf(context)?.showSnackBar(
|
||||
@@ -111,7 +140,9 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
}
|
||||
|
||||
Future<void> _saveDraft() async {
|
||||
if (_restoringDraft || !_draftPersistenceEnabled) return;
|
||||
if (_restoringDraft || !_draftPersistenceEnabled || _activeLegShare != null) {
|
||||
return;
|
||||
}
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
final draft = {
|
||||
"date": _selectedDate.toIso8601String(),
|
||||
@@ -122,6 +153,30 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
"notes": _notesController.text,
|
||||
"mileage": _mileageController.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,
|
||||
"selectedTripId": _selectedTripId,
|
||||
"routeResult": _routeResult == null
|
||||
@@ -133,6 +188,14 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
"distance": _routeResult!.distance,
|
||||
},
|
||||
"tractionItems": _serializeTractionItems(),
|
||||
"shareUserIds": _shareUserIds.toList(),
|
||||
"shareUsers": _shareUsers
|
||||
.map((u) => {
|
||||
"user_id": u.userId,
|
||||
"username": u.username,
|
||||
"full_name": u.fullName,
|
||||
})
|
||||
.toList(),
|
||||
};
|
||||
await prefs.setString(_kDraftPrefsKey, jsonEncode(draft));
|
||||
}
|
||||
@@ -199,7 +262,14 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
required String id,
|
||||
bool includeTimestamp = true,
|
||||
}) {
|
||||
final units = _distanceUnits(context);
|
||||
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
|
||||
? _startController.text.trim()
|
||||
: (routeStations.isNotEmpty ? routeStations.first : '');
|
||||
@@ -207,30 +277,36 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
? _endController.text.trim()
|
||||
: (routeStations.isNotEmpty ? routeStations.last : '');
|
||||
final mileageVal = _useManualMileage
|
||||
? double.tryParse(_mileageController.text.trim()) ?? 0
|
||||
? (units.milesFromInput(_mileageController.text.trim()) ?? 0)
|
||||
: (_routeResult?.distance ?? 0);
|
||||
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
|
||||
? {
|
||||
"leg_trip": _selectedTripId,
|
||||
...commonPayload,
|
||||
"leg_start": startVal,
|
||||
"leg_end": endVal,
|
||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||
"leg_network": _networkController.text.trim(),
|
||||
"leg_distance": mileageVal,
|
||||
"isKilometers": false,
|
||||
"leg_notes": _notesController.text.trim(),
|
||||
"leg_headcode": _headcodeController.text.trim(),
|
||||
"locos": tractionPayload,
|
||||
}
|
||||
: {
|
||||
"leg_trip": _selectedTripId,
|
||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||
...commonPayload,
|
||||
"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,
|
||||
};
|
||||
return {
|
||||
@@ -265,8 +341,32 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
final beginTime = beginStr == null
|
||||
? 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 tripId = tripRaw is num ? tripRaw.toInt() : null;
|
||||
final units = _distanceUnits(context);
|
||||
|
||||
List<String> routeStations = [];
|
||||
RouteResult? restoredRouteResult;
|
||||
@@ -312,6 +412,21 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
_useManualMileage = useManual;
|
||||
_selectedDate = 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;
|
||||
_routeResult = restoredRouteResult;
|
||||
_headcodeController.text = (payload['leg_headcode'] as String? ?? '')
|
||||
@@ -319,6 +434,10 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
_networkController.text = (payload['leg_network'] as String? ?? '')
|
||||
.toUpperCase();
|
||||
_notesController.text = payload['leg_notes'] ?? '';
|
||||
_originController.text = origin;
|
||||
_destinationController.text = destination;
|
||||
_beginDelayController.text = beginDelay.toString();
|
||||
_endDelayController.text = endDelay.toString();
|
||||
|
||||
if (useManual) {
|
||||
_startController.text = payload['leg_start'] ?? '';
|
||||
@@ -326,14 +445,20 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
final miles = (payload['leg_distance'] as num?)?.toDouble();
|
||||
_mileageController.text = miles == null || miles == 0
|
||||
? ''
|
||||
: miles.toStringAsFixed(2);
|
||||
: units.format(
|
||||
miles,
|
||||
decimals: 2,
|
||||
includeUnit: false,
|
||||
);
|
||||
} else {
|
||||
_startController.text =
|
||||
routeStations.isNotEmpty ? routeStations.first : '';
|
||||
_endController.text =
|
||||
routeStations.isNotEmpty ? routeStations.last : '';
|
||||
final dist = _routeResult?.distance ?? 0;
|
||||
_mileageController.text = dist == 0 ? '' : dist.toStringAsFixed(2);
|
||||
_mileageController.text = dist == 0
|
||||
? ''
|
||||
: units.format(dist, decimals: 2, includeUnit: false);
|
||||
}
|
||||
|
||||
final tractionRaw = data['tractionItems'];
|
||||
@@ -346,6 +471,19 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
..clear()
|
||||
..add(_TractionItem.marker());
|
||||
}
|
||||
final shareIdsRaw = data['shareUserIds'];
|
||||
final shareUsersRaw = data['shareUsers'];
|
||||
_shareUserIds = shareIdsRaw is List
|
||||
? shareIdsRaw.map((e) => e.toString()).toSet()
|
||||
: {};
|
||||
_shareUsers = shareUsersRaw is List
|
||||
? shareUsersRaw
|
||||
.whereType<Map>()
|
||||
.map((e) => UserSummary.fromJson(
|
||||
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||
))
|
||||
.toList()
|
||||
: [];
|
||||
_lastSubmittedSnapshot = null;
|
||||
final idRaw = data['id'];
|
||||
if (idRaw != null) {
|
||||
@@ -359,6 +497,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
||||
includeTimestamp: false,
|
||||
);
|
||||
_restoringDraft = false;
|
||||
_scheduleMatchUpdate();
|
||||
}
|
||||
|
||||
Future<void> _loadDraft() async {
|
||||
|
||||
@@ -150,6 +150,7 @@ class _DraftListBodyState extends State<_DraftListBody> {
|
||||
final payload = draft.data['payload'];
|
||||
if (payload is! Map) return '';
|
||||
final map = Map<String, dynamic>.from(payload);
|
||||
final units = context.read<DistanceUnitService>();
|
||||
final parts = <String>[];
|
||||
if ((map['leg_trip'] as int? ?? 0) != 0) {
|
||||
parts.add('Trip ${map['leg_trip']}');
|
||||
@@ -164,7 +165,7 @@ class _DraftListBodyState extends State<_DraftListBody> {
|
||||
(map['leg_distance'] as num?)?.toDouble() ??
|
||||
(map['leg_mileage'] as num?)?.toDouble();
|
||||
if (mileage != null && mileage > 0) {
|
||||
parts.add('${mileage.toStringAsFixed(1)} mi');
|
||||
parts.add(units.format(mileage, decimals: 1));
|
||||
} else if (map['leg_route'] is List &&
|
||||
(map['leg_route'] as List).isNotEmpty) {
|
||||
parts.add('Route ${(map['leg_route'] as List).length} stops');
|
||||
@@ -176,4 +177,3 @@ class _DraftListBodyState extends State<_DraftListBody> {
|
||||
return parts.join(' • ');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -4,11 +4,12 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
Future<bool> _validateRequiredFields() async {
|
||||
final missing = <String>[];
|
||||
|
||||
final units = _distanceUnits(context);
|
||||
if (_useManualMileage) {
|
||||
if (_startController.text.trim().isEmpty) missing.add('From');
|
||||
if (_endController.text.trim().isEmpty) missing.add('To');
|
||||
final mileageText = _mileageController.text.trim();
|
||||
if (double.tryParse(mileageText) == null) {
|
||||
if (mileageText.isEmpty || units.milesFromInput(mileageText) == null) {
|
||||
missing.add('Mileage');
|
||||
}
|
||||
} else {
|
||||
@@ -51,6 +52,7 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
if (form == null) return;
|
||||
if (!form.validate()) return;
|
||||
if (!await _validateRequiredFields()) return;
|
||||
if (!mounted) return;
|
||||
final routeStations = _routeResult?.calculatedRoute ?? [];
|
||||
final startVal = _useManualMileage
|
||||
? _startController.text.trim()
|
||||
@@ -58,16 +60,25 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
final endVal = _useManualMileage
|
||||
? _endController.text.trim()
|
||||
: (routeStations.isNotEmpty ? routeStations.last : '');
|
||||
final units = _distanceUnits(context);
|
||||
final mileageVal = _useManualMileage
|
||||
? double.tryParse(_mileageController.text.trim()) ?? 0
|
||||
? (units.milesFromInput(_mileageController.text.trim()) ?? 0)
|
||||
: (_routeResult?.distance ?? 0);
|
||||
final tractionPayload = _buildTractionPayload();
|
||||
final snapshot = _buildSubmissionSnapshot(
|
||||
final endTime = _legEndDateTime;
|
||||
final originTime = _originDateTime;
|
||||
final destinationTime = _destinationDateTime;
|
||||
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||
final endDelay =
|
||||
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||
final snapshot = _currentSubmissionSnapshot(
|
||||
routeStations: routeStations,
|
||||
startVal: startVal,
|
||||
endVal: endVal,
|
||||
mileageVal: mileageVal,
|
||||
tractionPayload: tractionPayload,
|
||||
beginDelay: beginDelay,
|
||||
endDelay: endDelay,
|
||||
);
|
||||
if (_lastSubmittedSnapshot != null &&
|
||||
_snapshotEquality.equals(_lastSubmittedSnapshot, snapshot)) {
|
||||
@@ -82,19 +93,33 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
final isEditingExisting = _isEditing && widget.editLegId != null;
|
||||
|
||||
try {
|
||||
if (_useManualMileage) {
|
||||
final body = {
|
||||
final commonPayload = {
|
||||
if (isEditingExisting) "leg_id": widget.editLegId,
|
||||
"leg_trip": _selectedTripId,
|
||||
"leg_start": startVal,
|
||||
"leg_end": endVal,
|
||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||
"leg_network": _networkController.text.trim(),
|
||||
"leg_distance": mileageVal,
|
||||
"isKilometers": false,
|
||||
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 (_activeLegShare != null) "leg_share_id": _activeLegShare!.id,
|
||||
"share_user_ids": _shareUserIds.toList(),
|
||||
};
|
||||
if (_useManualMileage) {
|
||||
final body = {
|
||||
...commonPayload,
|
||||
"leg_start": startVal,
|
||||
"leg_end": endVal,
|
||||
"leg_distance": mileageVal,
|
||||
"isKilometers": false,
|
||||
};
|
||||
if (isEditingExisting) {
|
||||
await api.put('/update', body);
|
||||
@@ -103,14 +128,8 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
}
|
||||
} else {
|
||||
final body = {
|
||||
if (isEditingExisting) "leg_id": widget.editLegId,
|
||||
"leg_trip": _selectedTripId,
|
||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||
...commonPayload,
|
||||
"leg_route": routeStations,
|
||||
"leg_notes": _notesController.text.trim(),
|
||||
"leg_headcode": _headcodeController.text.trim(),
|
||||
"leg_network": _networkController.text.trim(),
|
||||
"locos": tractionPayload,
|
||||
};
|
||||
if (isEditingExisting) {
|
||||
await api.put('/update', body);
|
||||
@@ -120,6 +139,10 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
}
|
||||
if (!mounted) return;
|
||||
dataService.refreshLegs();
|
||||
await dataService.fetchNotifications();
|
||||
if (_shareNotificationId != null) {
|
||||
await dataService.dismissNotifications([_shareNotificationId!]);
|
||||
}
|
||||
if (!mounted) return;
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(
|
||||
@@ -140,26 +163,60 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
}
|
||||
}
|
||||
|
||||
Map<String, dynamic> _buildSubmissionSnapshot({
|
||||
required List<String> routeStations,
|
||||
required String startVal,
|
||||
required String endVal,
|
||||
required double mileageVal,
|
||||
required List<Map<String, dynamic>> tractionPayload,
|
||||
Map<String, dynamic> _currentSubmissionSnapshot({
|
||||
List<String>? routeStations,
|
||||
String? startVal,
|
||||
String? endVal,
|
||||
double? mileageVal,
|
||||
List<Map<String, dynamic>>? tractionPayload,
|
||||
int? beginDelay,
|
||||
int? endDelay,
|
||||
}) {
|
||||
final stations = routeStations ?? (_routeResult?.calculatedRoute ?? []);
|
||||
final start = startVal ??
|
||||
(_useManualMileage
|
||||
? _startController.text.trim()
|
||||
: (stations.isNotEmpty ? stations.first : ''));
|
||||
final end = endVal ??
|
||||
(_useManualMileage
|
||||
? _endController.text.trim()
|
||||
: (stations.isNotEmpty ? stations.last : ''));
|
||||
final mileage = mileageVal ??
|
||||
(_useManualMileage
|
||||
? (_distanceUnits(context)
|
||||
.milesFromInput(_mileageController.text.trim()) ??
|
||||
0)
|
||||
: (_routeResult?.distance ?? 0));
|
||||
final traction = tractionPayload ?? _buildTractionPayload();
|
||||
final begin = beginDelay ?? _parseDelayMinutes(_beginDelayController.text);
|
||||
final endDelayVal =
|
||||
endDelay ?? (_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0);
|
||||
|
||||
return {
|
||||
"legId": widget.editLegId,
|
||||
"useManualMileage": _useManualMileage,
|
||||
"tripId": _selectedTripId,
|
||||
"legDateTime": _legDateTime.toIso8601String(),
|
||||
"start": startVal,
|
||||
"end": endVal,
|
||||
"routeStations": routeStations,
|
||||
"mileage": mileageVal,
|
||||
"legEndTime": _legEndDateTime?.toIso8601String(),
|
||||
"hasEndTime": _hasEndTime,
|
||||
"legOriginTime": _originDateTime?.toIso8601String(),
|
||||
"hasOriginTime": _hasOriginTime,
|
||||
"legDestinationTime": _destinationDateTime?.toIso8601String(),
|
||||
"hasDestinationTime": _hasDestinationTime,
|
||||
"start": start,
|
||||
"end": end,
|
||||
"origin": _originController.text.trim(),
|
||||
"destination": _destinationController.text.trim(),
|
||||
"routeStations": stations,
|
||||
"mileage": mileage,
|
||||
"network": _networkController.text.trim(),
|
||||
"notes": _notesController.text.trim(),
|
||||
"headcode": _headcodeController.text.trim(),
|
||||
"locos": tractionPayload,
|
||||
"beginDelay": begin,
|
||||
"endDelay": endDelayVal,
|
||||
"legShareId": _activeLegShare?.id,
|
||||
"shareUserIds": _shareUserIds.toList(),
|
||||
"locos": traction,
|
||||
"routeResult": _routeResult == null
|
||||
? null
|
||||
: {
|
||||
@@ -194,6 +251,7 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
}
|
||||
|
||||
Future<void> _resetFormState({bool clearDraft = false}) async {
|
||||
final hadShare = _activeLegShare != null || widget.legShare != null;
|
||||
_formKey.currentState?.reset();
|
||||
_startController.clear();
|
||||
_endController.clear();
|
||||
@@ -201,12 +259,33 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
_notesController.clear();
|
||||
_mileageController.clear();
|
||||
_networkController.clear();
|
||||
_originController.clear();
|
||||
_destinationController.clear();
|
||||
_beginDelayController.text = '0';
|
||||
_endDelayController.text = '0';
|
||||
final now = DateTime.now();
|
||||
_setState(() {
|
||||
_selectedDate = 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;
|
||||
_hasEndTime = false;
|
||||
_hasOriginTime = false;
|
||||
_hasDestinationTime = false;
|
||||
_matchOriginToEntry = false;
|
||||
_matchDestinationToEntry = false;
|
||||
_matchUpdateScheduled = false;
|
||||
_routeResult = null;
|
||||
_activeLegShare = null;
|
||||
_sharedFromUser = null;
|
||||
_shareNotificationId = null;
|
||||
_shareUserIds.clear();
|
||||
_shareUsers.clear();
|
||||
_tractionItems
|
||||
..clear()
|
||||
..add(_TractionItem.marker());
|
||||
@@ -216,6 +295,10 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
||||
_savingDraft = false;
|
||||
_loadedDraftSnapshot = null;
|
||||
});
|
||||
if (hadShare && mounted) {
|
||||
// Clear any share params from the URL when resetting.
|
||||
GoRouter.of(context).go('/add');
|
||||
}
|
||||
if (clearDraft) {
|
||||
await _clearDraft();
|
||||
}
|
||||
|
||||
@@ -84,6 +84,13 @@ class _NewTractionPageState extends State<NewTractionPage> {
|
||||
'traction_motors': TextEditingController(),
|
||||
'build_date': TextEditingController(),
|
||||
};
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
if (!mounted) return;
|
||||
final data = context.read<DataService>();
|
||||
if (data.locoClasses.isEmpty) {
|
||||
data.fetchClassList();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
@@ -254,6 +261,10 @@ class _NewTractionPageState extends State<NewTractionPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isActive = _statusIsActive;
|
||||
final data = context.watch<DataService>();
|
||||
final classOptions = [...data.locoClasses]..sort(
|
||||
(a, b) => a.toLowerCase().compareTo(b.toLowerCase()),
|
||||
);
|
||||
final size = MediaQuery.of(context).size;
|
||||
final isNarrow = size.width < 720;
|
||||
final fieldWidth = isNarrow ? double.infinity : 340.0;
|
||||
@@ -269,6 +280,89 @@ class _NewTractionPageState extends State<NewTractionPage> {
|
||||
double? widthOverride,
|
||||
String? Function(String?)? validator,
|
||||
}) {
|
||||
// Special autocomplete for class field using existing loco classes.
|
||||
if (key == 'class' && classOptions.isNotEmpty) {
|
||||
return SizedBox(
|
||||
width: widthOverride ?? fieldWidth,
|
||||
child: Autocomplete<String>(
|
||||
optionsBuilder: (TextEditingValue value) {
|
||||
final query = value.text.trim().toLowerCase();
|
||||
if (query.isEmpty) return classOptions;
|
||||
return classOptions.where(
|
||||
(c) => c.toLowerCase().contains(query),
|
||||
);
|
||||
},
|
||||
onSelected: (selection) {
|
||||
_controllers[key]?.text = selection;
|
||||
_formKey.currentState?.validate();
|
||||
},
|
||||
fieldViewBuilder:
|
||||
(context, textEditingController, focusNode, onFieldSubmitted) {
|
||||
if (textEditingController.text != _controllers[key]?.text) {
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
if (!mounted) return;
|
||||
if (textEditingController.text != _controllers[key]?.text) {
|
||||
textEditingController.value =
|
||||
_controllers[key]?.value ?? textEditingController.value;
|
||||
}
|
||||
});
|
||||
}
|
||||
return TextFormField(
|
||||
controller: textEditingController,
|
||||
focusNode: focusNode,
|
||||
decoration: InputDecoration(
|
||||
labelText: required ? '$label *' : label,
|
||||
helperText: helper,
|
||||
suffixText: suffixText,
|
||||
border: const OutlineInputBorder(),
|
||||
),
|
||||
keyboardType: keyboardType,
|
||||
maxLines: maxLines,
|
||||
validator: (val) {
|
||||
if (required && (val == null || val.trim().isEmpty)) {
|
||||
return 'Required';
|
||||
}
|
||||
return validator?.call(val);
|
||||
},
|
||||
onChanged: (_) {
|
||||
_controllers[key]?.text = textEditingController.text;
|
||||
_formKey.currentState?.validate();
|
||||
},
|
||||
onFieldSubmitted: (_) => onFieldSubmitted(),
|
||||
);
|
||||
},
|
||||
optionsViewBuilder: (context, onSelected, options) {
|
||||
final opts = options.toList();
|
||||
if (opts.isEmpty) return const SizedBox.shrink();
|
||||
return Align(
|
||||
alignment: Alignment.topLeft,
|
||||
child: Material(
|
||||
elevation: 4,
|
||||
child: ConstrainedBox(
|
||||
constraints: BoxConstraints(
|
||||
maxHeight: 280,
|
||||
maxWidth: widthOverride ?? fieldWidth,
|
||||
),
|
||||
child: ListView.builder(
|
||||
padding: EdgeInsets.zero,
|
||||
itemCount: opts.length,
|
||||
itemBuilder: (context, index) {
|
||||
final option = opts[index];
|
||||
return ListTile(
|
||||
dense: true,
|
||||
title: Text(option),
|
||||
onTap: () => onSelected(option),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
return SizedBox(
|
||||
width: widthOverride ?? fieldWidth,
|
||||
child: TextFormField(
|
||||
|
||||
613
lib/components/pages/profile.dart
Normal file
@@ -0,0 +1,613 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
|
||||
class ProfilePage extends StatefulWidget {
|
||||
const ProfilePage({super.key});
|
||||
|
||||
@override
|
||||
State<ProfilePage> createState() => _ProfilePageState();
|
||||
}
|
||||
|
||||
class _ProfilePageState extends State<ProfilePage> {
|
||||
final TextEditingController _searchController = TextEditingController();
|
||||
List<UserSummary> _searchResults = [];
|
||||
bool _searching = false;
|
||||
String? _searchError;
|
||||
bool _fetched = false;
|
||||
|
||||
UserSummary? _selectedUser;
|
||||
Friendship? _status;
|
||||
bool _statusLoading = false;
|
||||
bool _actionLoading = false;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
if (!mounted || _fetched) return;
|
||||
_fetched = true;
|
||||
final data = context.read<DataService>();
|
||||
data.fetchFriendships();
|
||||
data.fetchPendingFriendships();
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_searchController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
Future<void> _searchUsers() async {
|
||||
final query = _searchController.text.trim();
|
||||
if (query.isEmpty) {
|
||||
setState(() {
|
||||
_searchResults = [];
|
||||
_searchError = null;
|
||||
});
|
||||
return;
|
||||
}
|
||||
setState(() {
|
||||
_searching = true;
|
||||
_searchError = null;
|
||||
});
|
||||
try {
|
||||
final results = await context.read<DataService>().searchUsers(query);
|
||||
if (!mounted) return;
|
||||
setState(() {
|
||||
_searchResults = results;
|
||||
});
|
||||
} catch (e) {
|
||||
if (!mounted) return;
|
||||
setState(() {
|
||||
_searchError = 'Search failed';
|
||||
});
|
||||
} finally {
|
||||
if (mounted) setState(() => _searching = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _loadStatus(UserSummary user) async {
|
||||
setState(() {
|
||||
_selectedUser = user;
|
||||
_statusLoading = true;
|
||||
});
|
||||
try {
|
||||
final status =
|
||||
await context.read<DataService>().fetchFriendshipStatus(user.userId);
|
||||
if (!mounted) return;
|
||||
setState(() => _status = status);
|
||||
} catch (_) {
|
||||
if (!mounted) return;
|
||||
setState(() => _status = null);
|
||||
} finally {
|
||||
if (mounted) setState(() => _statusLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _sendRequest(UserSummary user) async {
|
||||
setState(() => _actionLoading = true);
|
||||
try {
|
||||
final status = await context.read<DataService>().requestFriendship(
|
||||
user.userId,
|
||||
targetUser: user,
|
||||
);
|
||||
if (!mounted) return;
|
||||
setState(() => _status = status);
|
||||
_showSnack('Friend request sent');
|
||||
} catch (e) {
|
||||
_showSnack('Failed to send request: $e');
|
||||
} finally {
|
||||
if (mounted) setState(() => _actionLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _cancelRequest(Friendship status) async {
|
||||
final id = status.id;
|
||||
if (id == null || id.isEmpty) return;
|
||||
setState(() => _actionLoading = true);
|
||||
try {
|
||||
await context.read<DataService>().cancelFriendship(id);
|
||||
if (!mounted) return;
|
||||
setState(() => _status = status.copyWith(status: 'none'));
|
||||
_showSnack('Request cancelled');
|
||||
} catch (e) {
|
||||
_showSnack('Failed to cancel: $e');
|
||||
} finally {
|
||||
if (mounted) setState(() => _actionLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _accept(Friendship status) async {
|
||||
final id = status.id;
|
||||
if (id == null || id.isEmpty) return;
|
||||
setState(() => _actionLoading = true);
|
||||
try {
|
||||
final updated = await context.read<DataService>().acceptFriendship(id);
|
||||
if (!mounted) return;
|
||||
setState(() => _status = updated);
|
||||
_showSnack('Friend request accepted');
|
||||
} catch (e) {
|
||||
_showSnack('Failed to accept: $e');
|
||||
} finally {
|
||||
if (mounted) setState(() => _actionLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _reject(Friendship status) async {
|
||||
final id = status.id;
|
||||
if (id == null || id.isEmpty) return;
|
||||
setState(() => _actionLoading = true);
|
||||
try {
|
||||
final updated = await context.read<DataService>().rejectFriendship(id);
|
||||
if (!mounted) return;
|
||||
setState(() => _status = updated);
|
||||
_showSnack('Friend request rejected');
|
||||
} catch (e) {
|
||||
_showSnack('Failed to reject: $e');
|
||||
} finally {
|
||||
if (mounted) setState(() => _actionLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _unfriend(Friendship status) async {
|
||||
final id = status.id;
|
||||
if (id == null || id.isEmpty) return;
|
||||
final confirm = await showDialog<bool>(
|
||||
context: context,
|
||||
builder: (ctx) => AlertDialog(
|
||||
title: const Text('Remove friend'),
|
||||
content: const Text('Are you sure you want to remove this friend?'),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(ctx).pop(false),
|
||||
child: const Text('Cancel'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(ctx).pop(true),
|
||||
child: const Text('Remove'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
if (confirm != true) return;
|
||||
if (!mounted) return;
|
||||
setState(() => _actionLoading = true);
|
||||
try {
|
||||
await context.read<DataService>().deleteFriendship(id);
|
||||
if (!mounted) return;
|
||||
setState(() => _status = status.copyWith(status: 'none'));
|
||||
_showSnack('Friend removed');
|
||||
} catch (e) {
|
||||
_showSnack('Failed to remove friend: $e');
|
||||
} finally {
|
||||
if (mounted) setState(() => _actionLoading = false);
|
||||
}
|
||||
}
|
||||
|
||||
void _showSnack(String message) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(message)));
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final auth = context.watch<AuthService>();
|
||||
final data = context.watch<DataService>();
|
||||
final statsUser = data.homepageStats?.user;
|
||||
final name = auth.fullName?.isNotEmpty == true
|
||||
? auth.fullName!
|
||||
: (statsUser?.fullName ?? '');
|
||||
final username = auth.username ?? statsUser?.username ?? '';
|
||||
final email = statsUser?.email ?? '';
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Profile'),
|
||||
),
|
||||
body: RefreshIndicator(
|
||||
onRefresh: () async {
|
||||
await data.fetchFriendships();
|
||||
await data.fetchPendingFriendships();
|
||||
if (_selectedUser != null) {
|
||||
await _loadStatus(_selectedUser!);
|
||||
}
|
||||
},
|
||||
child: ListView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
children: [
|
||||
_buildUserCard(name: name, username: username, email: email),
|
||||
const SizedBox(height: 16),
|
||||
_buildSearchSection(),
|
||||
const SizedBox(height: 16),
|
||||
_buildSelectedUserSection(auth),
|
||||
const SizedBox(height: 16),
|
||||
_buildFriendsList(auth),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildUserCard({
|
||||
required String name,
|
||||
required String username,
|
||||
required String email,
|
||||
}) {
|
||||
return Card(
|
||||
child: ListTile(
|
||||
leading: const CircleAvatar(child: Icon(Icons.person)),
|
||||
title: Text(name.isNotEmpty ? name : 'You'),
|
||||
subtitle: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
if (username.isNotEmpty) Text('@$username'),
|
||||
if (email.isNotEmpty) Text(email),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildSearchSection() {
|
||||
return Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'Find a user',
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: TextField(
|
||||
controller: _searchController,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Search by username, email, or name',
|
||||
border: OutlineInputBorder(),
|
||||
),
|
||||
onSubmitted: (_) => _searchUsers(),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
ElevatedButton(
|
||||
onPressed: _searching ? null : _searchUsers,
|
||||
child:
|
||||
_searching ? const SizedBox(
|
||||
width: 16,
|
||||
height: 16,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
) : const Text('Search'),
|
||||
),
|
||||
],
|
||||
),
|
||||
if (_searchError != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
child: Text(
|
||||
_searchError!,
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.error),
|
||||
),
|
||||
),
|
||||
if (_searchResults.isNotEmpty) const SizedBox(height: 12),
|
||||
if (_searchResults.isNotEmpty)
|
||||
..._searchResults.map(
|
||||
(user) => ListTile(
|
||||
leading: const Icon(Icons.person),
|
||||
title: Text(user.displayName),
|
||||
subtitle:
|
||||
user.username.isNotEmpty ? Text('@${user.username}') : null,
|
||||
trailing: TextButton(
|
||||
onPressed: () => _loadStatus(user),
|
||||
child: const Text('View'),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildSelectedUserSection(AuthService auth) {
|
||||
final user = _selectedUser;
|
||||
if (user == null) return const SizedBox.shrink();
|
||||
final status = _status;
|
||||
final loading = _statusLoading;
|
||||
final isSelf = auth.userId == user.userId;
|
||||
|
||||
return Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text(
|
||||
user.displayName,
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
if (loading)
|
||||
const SizedBox(
|
||||
width: 16,
|
||||
height: 16,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
),
|
||||
if (!loading && status != null) _buildStatusChip(status, auth),
|
||||
],
|
||||
),
|
||||
if (user.username.isNotEmpty) Text('@${user.username}'),
|
||||
const SizedBox(height: 8),
|
||||
if (!isSelf) _buildActions(status, user, auth),
|
||||
if (isSelf)
|
||||
const Text('This is you.', style: TextStyle(fontStyle: FontStyle.italic)),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildStatusChip(Friendship status, AuthService auth) {
|
||||
String label = status.status;
|
||||
Color color = Colors.grey;
|
||||
switch (status.status.toLowerCase()) {
|
||||
case 'accepted':
|
||||
label = 'Friends';
|
||||
color = Colors.green;
|
||||
break;
|
||||
case 'pending':
|
||||
final isRequester = status.requesterId == auth.userId;
|
||||
label = isRequester ? 'Pending (you sent)' : 'Pending (waiting on you)';
|
||||
color = Colors.orange;
|
||||
break;
|
||||
case 'blocked':
|
||||
color = Colors.red;
|
||||
label = 'Blocked';
|
||||
break;
|
||||
case 'declined':
|
||||
case 'rejected':
|
||||
label = 'Declined';
|
||||
break;
|
||||
default:
|
||||
label = 'Not friends';
|
||||
}
|
||||
final bg = Color.alphaBlend(
|
||||
color.withValues(alpha: 0.15),
|
||||
Theme.of(context).colorScheme.surface,
|
||||
);
|
||||
return Container(
|
||||
margin: const EdgeInsets.only(left: 6),
|
||||
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
|
||||
decoration: BoxDecoration(
|
||||
color: bg,
|
||||
borderRadius: BorderRadius.circular(20),
|
||||
),
|
||||
child: Text(label),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildActions(
|
||||
Friendship? status,
|
||||
UserSummary user,
|
||||
AuthService auth,
|
||||
) {
|
||||
if (status == null) {
|
||||
return const SizedBox.shrink();
|
||||
}
|
||||
final isRequester = status.requesterId == auth.userId;
|
||||
final id = status.id;
|
||||
final buttons = <Widget>[];
|
||||
|
||||
if (status.isNone || status.isDeclined) {
|
||||
buttons.add(
|
||||
ElevatedButton.icon(
|
||||
onPressed: _actionLoading ? null : () => _sendRequest(user),
|
||||
icon: const Icon(Icons.person_add),
|
||||
label: const Text('Send friend request'),
|
||||
),
|
||||
);
|
||||
} else if (status.isPending) {
|
||||
if (isRequester) {
|
||||
buttons.add(
|
||||
OutlinedButton(
|
||||
onPressed: _actionLoading || id == null || id.isEmpty
|
||||
? null
|
||||
: () => _cancelRequest(status),
|
||||
child: const Text('Cancel request'),
|
||||
),
|
||||
);
|
||||
} else {
|
||||
buttons.add(
|
||||
ElevatedButton(
|
||||
onPressed: _actionLoading || id == null || id.isEmpty
|
||||
? null
|
||||
: () => _accept(status),
|
||||
child: const Text('Accept'),
|
||||
),
|
||||
);
|
||||
buttons.add(
|
||||
OutlinedButton(
|
||||
onPressed: _actionLoading || id == null || id.isEmpty
|
||||
? null
|
||||
: () => _reject(status),
|
||||
child: const Text('Reject'),
|
||||
),
|
||||
);
|
||||
}
|
||||
} else if (status.isAccepted) {
|
||||
buttons.add(
|
||||
ElevatedButton.icon(
|
||||
onPressed: _actionLoading || id == null || id.isEmpty
|
||||
? null
|
||||
: () => _unfriend(status),
|
||||
icon: const Icon(Icons.person_remove),
|
||||
label: const Text('Unfriend'),
|
||||
),
|
||||
);
|
||||
// Block action temporarily removed until backend support exists.
|
||||
} else if (status.isBlocked) {
|
||||
buttons.add(const Text('User is blocked.'));
|
||||
}
|
||||
|
||||
if (buttons.isEmpty) return const SizedBox.shrink();
|
||||
|
||||
return Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
children: buttons,
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildFriendsList(AuthService auth) {
|
||||
final data = context.watch<DataService>();
|
||||
final friends = data.friendships;
|
||||
final incoming = data.pendingIncoming;
|
||||
final outgoing = data.pendingOutgoing;
|
||||
final loading = data.isFriendshipsLoading;
|
||||
final pendingLoading = data.isPendingFriendshipsLoading;
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
if (pendingLoading && incoming.isEmpty && outgoing.isEmpty)
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 12.0),
|
||||
child: Center(child: CircularProgressIndicator()),
|
||||
),
|
||||
if (incoming.isNotEmpty || outgoing.isNotEmpty)
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'Pending requests',
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
if (outgoing.isNotEmpty)
|
||||
...outgoing.map((f) {
|
||||
final otherUser = _otherUser(f, auth.userId);
|
||||
return Card(
|
||||
child: ListTile(
|
||||
leading: const Icon(Icons.person),
|
||||
title: Text(otherUser?.displayName ?? 'User'),
|
||||
subtitle: otherUser?.username.isNotEmpty == true
|
||||
? Text('@${otherUser!.username}')
|
||||
: null,
|
||||
trailing: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
const Icon(Icons.north_east, size: 18),
|
||||
const SizedBox(width: 6),
|
||||
TextButton(
|
||||
onPressed: f.id == null || _actionLoading
|
||||
? null
|
||||
: () => _cancelRequest(f),
|
||||
child: const Text('Cancel'),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
if (incoming.isNotEmpty && outgoing.isNotEmpty)
|
||||
const SizedBox(height: 8),
|
||||
if (incoming.isNotEmpty)
|
||||
...incoming.map((f) {
|
||||
final otherUser = _otherUser(f, auth.userId);
|
||||
return Card(
|
||||
child: ListTile(
|
||||
leading: const Icon(Icons.person),
|
||||
title: Text(otherUser?.displayName ?? 'User'),
|
||||
subtitle: otherUser?.username.isNotEmpty == true
|
||||
? Text('@${otherUser!.username}')
|
||||
: null,
|
||||
trailing: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
const Icon(Icons.south_west, size: 18),
|
||||
const SizedBox(width: 6),
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
children: [
|
||||
TextButton(
|
||||
onPressed: f.id == null || _actionLoading
|
||||
? null
|
||||
: () => _accept(f),
|
||||
child: const Text('Accept'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: f.id == null || _actionLoading
|
||||
? null
|
||||
: () => _reject(f),
|
||||
child: const Text('Reject'),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
const SizedBox(height: 12),
|
||||
],
|
||||
),
|
||||
Text(
|
||||
'Friends',
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
if (loading && friends.isEmpty)
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 12.0),
|
||||
child: Center(child: CircularProgressIndicator()),
|
||||
)
|
||||
else if (friends.isEmpty)
|
||||
const Text('No friends yet.')
|
||||
else
|
||||
...friends.map((f) {
|
||||
final otherUser = _otherUser(f, auth.userId);
|
||||
return Card(
|
||||
child: ListTile(
|
||||
leading: const Icon(Icons.person),
|
||||
title: Text(otherUser?.displayName ?? 'User'),
|
||||
subtitle: otherUser?.username.isNotEmpty == true
|
||||
? Text('@${otherUser!.username}')
|
||||
: null,
|
||||
trailing: TextButton(
|
||||
onPressed: () {
|
||||
final user = otherUser;
|
||||
if (user != null) {
|
||||
_loadStatus(user);
|
||||
}
|
||||
},
|
||||
child: const Text('Manage'),
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
UserSummary? _otherUser(Friendship friendship, String? currentUserId) {
|
||||
final selfId = currentUserId ?? '';
|
||||
if (friendship.requester?.userId == selfId) return friendship.addressee;
|
||||
if (friendship.addressee?.userId == selfId) return friendship.requester;
|
||||
if (friendship.addresseeId == selfId && friendship.requester != null) {
|
||||
return friendship.requester;
|
||||
}
|
||||
if (friendship.requesterId == selfId && friendship.addressee != null) {
|
||||
return friendship.addressee;
|
||||
}
|
||||
if (friendship.addressee != null) return friendship.addressee;
|
||||
if (friendship.requester != null) return friendship.requester;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,9 @@ 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/authservice.dart';
|
||||
import 'package:mileograph_flutter/services/api_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:mileograph_flutter/services/endpoint_service.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
@@ -17,16 +20,27 @@ class SettingsPage extends StatefulWidget {
|
||||
class _SettingsPageState extends State<SettingsPage> {
|
||||
late final TextEditingController _endpointController;
|
||||
bool _saving = false;
|
||||
bool _changingPassword = false;
|
||||
final _passwordFormKey = GlobalKey<FormState>();
|
||||
late final TextEditingController _currentPasswordController;
|
||||
late final TextEditingController _newPasswordController;
|
||||
late final TextEditingController _confirmPasswordController;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
final endpoint = context.read<EndpointService>().baseUrl;
|
||||
_endpointController = TextEditingController(text: endpoint);
|
||||
_currentPasswordController = TextEditingController();
|
||||
_newPasswordController = TextEditingController();
|
||||
_confirmPasswordController = TextEditingController();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_currentPasswordController.dispose();
|
||||
_newPasswordController.dispose();
|
||||
_confirmPasswordController.dispose();
|
||||
_endpointController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
@@ -125,10 +139,48 @@ 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
|
||||
Widget build(BuildContext context) {
|
||||
final endpointService = context.watch<EndpointService>();
|
||||
if (!endpointService.isLoaded) {
|
||||
final distanceUnitService = context.watch<DistanceUnitService>();
|
||||
final loggedIn = context.select<AuthService, bool>(
|
||||
(auth) => auth.isLoggedIn,
|
||||
);
|
||||
if (!endpointService.isLoaded || !distanceUnitService.isLoaded) {
|
||||
return const Scaffold(
|
||||
body: Center(child: CircularProgressIndicator()),
|
||||
);
|
||||
@@ -149,11 +201,39 @@ class _SettingsPageState extends State<SettingsPage> {
|
||||
},
|
||||
),
|
||||
),
|
||||
body: Padding(
|
||||
body: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'Distance units',
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Text(
|
||||
'Choose how distances are displayed across the app.',
|
||||
style: Theme.of(context).textTheme.bodySmall,
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
SegmentedButton<DistanceUnit>(
|
||||
segments: DistanceUnit.values
|
||||
.map(
|
||||
(unit) => ButtonSegment<DistanceUnit>(
|
||||
value: unit,
|
||||
label: Text(unit.label),
|
||||
),
|
||||
)
|
||||
.toList(),
|
||||
selected: {distanceUnitService.unit},
|
||||
onSelectionChanged: (selection) {
|
||||
final next = selection.first;
|
||||
distanceUnitService.setUnit(next);
|
||||
},
|
||||
),
|
||||
const SizedBox(height: 24),
|
||||
Text(
|
||||
'API endpoint',
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||
@@ -205,6 +285,99 @@ class _SettingsPageState extends State<SettingsPage> {
|
||||
'Current: ${endpointService.baseUrl}',
|
||||
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',
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
225
lib/components/pages/stats.dart
Normal file
@@ -0,0 +1,225 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class StatsPage extends StatefulWidget {
|
||||
const StatsPage({super.key});
|
||||
|
||||
@override
|
||||
State<StatsPage> createState() => _StatsPageState();
|
||||
}
|
||||
|
||||
class _StatsPageState extends State<StatsPage> {
|
||||
final NumberFormat _countFormat = NumberFormat.decimalPattern();
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
_loadStats();
|
||||
});
|
||||
}
|
||||
|
||||
Future<void> _loadStats({bool force = false}) {
|
||||
return context.read<DataService>().fetchAboutStats(force: force);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.watch<DataService>();
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
return Scaffold(
|
||||
appBar: AppBar(title: const Text('Stats')),
|
||||
body: RefreshIndicator(
|
||||
onRefresh: () => _loadStats(force: true),
|
||||
child: _buildContent(data, distanceUnits),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildContent(
|
||||
DataService data,
|
||||
DistanceUnitService distanceUnits,
|
||||
) {
|
||||
final stats = data.aboutStats;
|
||||
final loading = data.isAboutStatsLoading;
|
||||
|
||||
if (loading && stats == null) {
|
||||
return ListView(
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
children: const [
|
||||
SizedBox(height: 140),
|
||||
Center(child: CircularProgressIndicator()),
|
||||
SizedBox(height: 140),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
if (stats == null || stats.sortedYears.isEmpty) {
|
||||
return ListView(
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
padding: const EdgeInsets.all(24),
|
||||
children: [
|
||||
const SizedBox(height: 40),
|
||||
const Center(child: Text('No stats available yet.')),
|
||||
const SizedBox(height: 12),
|
||||
Center(
|
||||
child: OutlinedButton(
|
||||
onPressed: () => _loadStats(force: true),
|
||||
child: const Text('Retry'),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
final years = stats.sortedYears;
|
||||
return ListView.builder(
|
||||
padding: const EdgeInsets.all(16),
|
||||
itemCount: years.length,
|
||||
itemBuilder: (context, index) {
|
||||
return Padding(
|
||||
padding: EdgeInsets.only(bottom: index == years.length - 1 ? 0 : 12),
|
||||
child: _buildYearCard(context, years[index], distanceUnits),
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildYearCard(
|
||||
BuildContext context, StatsYear year, DistanceUnitService distanceUnits) {
|
||||
final theme = Theme.of(context);
|
||||
return Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
year.year.toString(),
|
||||
style: theme.textTheme.titleLarge,
|
||||
),
|
||||
const Spacer(),
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
alignment: WrapAlignment.end,
|
||||
children: [
|
||||
_buildInfoChip(
|
||||
context,
|
||||
label: 'Mileage',
|
||||
value: distanceUnits.format(year.mileage, decimals: 1),
|
||||
),
|
||||
_buildInfoChip(
|
||||
context,
|
||||
label: 'Winners',
|
||||
value: _countFormat.format(year.winnerCount),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
_buildSection<StatsClassMileage>(
|
||||
context,
|
||||
title: 'Top classes',
|
||||
items: year.topClasses,
|
||||
emptyLabel: 'No class data',
|
||||
itemBuilder: (item, index) => ListTile(
|
||||
dense: true,
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
title: Text(item.locoClass),
|
||||
trailing: Text(
|
||||
distanceUnits.format(item.mileage, decimals: 1),
|
||||
),
|
||||
),
|
||||
),
|
||||
_buildSection<StatsNetworkMileage>(
|
||||
context,
|
||||
title: 'Top networks',
|
||||
items: year.topNetworks,
|
||||
emptyLabel: 'No network data',
|
||||
itemBuilder: (item, index) => ListTile(
|
||||
dense: true,
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
title: Text(item.network),
|
||||
trailing: Text(
|
||||
distanceUnits.format(item.mileage, decimals: 1),
|
||||
),
|
||||
),
|
||||
),
|
||||
_buildSection<StatsStationVisits>(
|
||||
context,
|
||||
title: 'Top stations',
|
||||
items: year.topStations,
|
||||
emptyLabel: 'No station data',
|
||||
itemBuilder: (item, index) => ListTile(
|
||||
dense: true,
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
title: Text(item.station),
|
||||
trailing: Text(
|
||||
'${_countFormat.format(item.visits)} visit${item.visits == 1 ? '' : 's'}',
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildInfoChip(BuildContext context,
|
||||
{required String label, required String value}) {
|
||||
final theme = Theme.of(context);
|
||||
return Chip(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
label: Text(
|
||||
'$label: $value',
|
||||
style: theme.textTheme.labelLarge,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildSection<T>(
|
||||
BuildContext context, {
|
||||
required String title,
|
||||
required List<T> items,
|
||||
required Widget Function(T item, int index) itemBuilder,
|
||||
String emptyLabel = 'No data',
|
||||
}) {
|
||||
final theme = Theme.of(context);
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(top: 4),
|
||||
child: ExpansionTile(
|
||||
tilePadding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
childrenPadding:
|
||||
const EdgeInsets.only(left: 8, right: 8, bottom: 8),
|
||||
title: Text(
|
||||
title,
|
||||
style: theme.textTheme.titleMedium,
|
||||
),
|
||||
children: items.isEmpty
|
||||
? [
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 8),
|
||||
child: Text(
|
||||
emptyLabel,
|
||||
style: theme.textTheme.bodySmall,
|
||||
),
|
||||
),
|
||||
]
|
||||
: items
|
||||
.asMap()
|
||||
.entries
|
||||
.map((entry) => itemBuilder(entry.value, entry.key))
|
||||
.toList(),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,6 +6,7 @@ import 'package:go_router/go_router.dart';
|
||||
import 'package:mileograph_flutter/components/traction/traction_card.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
|
||||
|
||||
@@ -37,6 +37,9 @@ class _TractionPageState extends State<TractionPage> {
|
||||
final Map<String, TextEditingController> _dynamicControllers = {};
|
||||
final Map<String, String?> _enumSelections = {};
|
||||
bool _restoredFromPrefs = false;
|
||||
static const int _pageSize = 100;
|
||||
int _lastTractionOffset = 0;
|
||||
String? _lastQuerySignature;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
@@ -59,6 +62,9 @@ class _TractionPageState extends State<TractionPage> {
|
||||
Future<void> _initialLoad() async {
|
||||
final data = context.read<DataService>();
|
||||
await _restoreSearchState();
|
||||
if (_lastTractionOffset == 0 && data.traction.length > _pageSize) {
|
||||
_lastTractionOffset = data.traction.length - _pageSize;
|
||||
}
|
||||
data.fetchClassList();
|
||||
data.fetchEventFields();
|
||||
await _refreshTraction();
|
||||
@@ -103,7 +109,29 @@ class _TractionPageState extends State<TractionPage> {
|
||||
dynamicFieldsUsed;
|
||||
}
|
||||
|
||||
Future<void> _refreshTraction({bool append = false}) async {
|
||||
String _tractionQuerySignature(
|
||||
Map<String, dynamic> filters,
|
||||
bool hadOnly,
|
||||
) {
|
||||
final sortedKeys = filters.keys.toList()..sort();
|
||||
final filterSignature = sortedKeys
|
||||
.map((key) => '$key=${filters[key]}')
|
||||
.join('|');
|
||||
final classQuery = (_selectedClass ?? _classController.text).trim();
|
||||
return [
|
||||
'class=$classQuery',
|
||||
'number=${_numberController.text.trim()}',
|
||||
'name=${_nameController.text.trim()}',
|
||||
'mileageFirst=$_mileageFirst',
|
||||
'hadOnly=$hadOnly',
|
||||
'filters=$filterSignature',
|
||||
].join(';');
|
||||
}
|
||||
|
||||
Future<void> _refreshTraction({
|
||||
bool append = false,
|
||||
bool preservePosition = true,
|
||||
}) async {
|
||||
final data = context.read<DataService>();
|
||||
final filters = <String, dynamic>{};
|
||||
final name = _nameController.text.trim();
|
||||
@@ -118,15 +146,49 @@ class _TractionPageState extends State<TractionPage> {
|
||||
}
|
||||
});
|
||||
final hadOnly = !_hasFilters;
|
||||
final signature = _tractionQuerySignature(filters, hadOnly);
|
||||
final queryChanged =
|
||||
_lastQuerySignature != null && signature != _lastQuerySignature;
|
||||
_lastQuerySignature = signature;
|
||||
|
||||
if (queryChanged && !append) {
|
||||
_lastTractionOffset = 0;
|
||||
}
|
||||
|
||||
final shouldPreservePosition = preservePosition &&
|
||||
!append &&
|
||||
!queryChanged &&
|
||||
_lastTractionOffset > 0;
|
||||
|
||||
int limit;
|
||||
int offset;
|
||||
if (append) {
|
||||
offset = data.traction.length;
|
||||
limit = _pageSize;
|
||||
_lastTractionOffset = offset;
|
||||
} else if (shouldPreservePosition) {
|
||||
offset = 0;
|
||||
limit = _pageSize + _lastTractionOffset;
|
||||
} else {
|
||||
offset = 0;
|
||||
limit = _pageSize;
|
||||
}
|
||||
|
||||
await data.fetchTraction(
|
||||
hadOnly: hadOnly,
|
||||
locoClass: _selectedClass ?? _classController.text.trim(),
|
||||
locoNumber: _numberController.text.trim(),
|
||||
offset: append ? data.traction.length : 0,
|
||||
offset: offset,
|
||||
limit: limit,
|
||||
append: append,
|
||||
filters: filters,
|
||||
mileageFirst: _mileageFirst,
|
||||
);
|
||||
|
||||
if (!append && !shouldPreservePosition) {
|
||||
_lastTractionOffset = 0;
|
||||
}
|
||||
|
||||
await _persistSearchState();
|
||||
}
|
||||
|
||||
@@ -244,47 +306,7 @@ class _TractionPageState extends State<TractionPage> {
|
||||
],
|
||||
),
|
||||
),
|
||||
Row(
|
||||
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'),
|
||||
),
|
||||
],
|
||||
),
|
||||
_buildHeaderActions(context, isMobile),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
@@ -546,6 +568,78 @@ class _TractionPageState extends State<TractionPage> {
|
||||
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 {
|
||||
if (!_hasClassQuery) return;
|
||||
final targetState = !_showClassStatsPanel;
|
||||
@@ -607,6 +701,7 @@ class _TractionPageState extends State<TractionPage> {
|
||||
|
||||
Widget _buildClassStatsCard(BuildContext context) {
|
||||
final scheme = Theme.of(context).colorScheme;
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
if (_classStatsLoading) {
|
||||
return Card(
|
||||
child: Padding(
|
||||
@@ -689,9 +784,27 @@ class _TractionPageState extends State<TractionPage> {
|
||||
children: [
|
||||
_metricTile('Had', hadCount),
|
||||
_metricTile('Entries', entriesWithClass),
|
||||
_metricTile('Avg mi / loco had', avgMileagePerLoco.toStringAsFixed(2)),
|
||||
_metricTile('Avg mi / entry', avgMileagePerEntry.toStringAsFixed(2)),
|
||||
_metricTile('Total mileage', totalMileage.toStringAsFixed(2)),
|
||||
_metricTile(
|
||||
'Avg distance / loco had',
|
||||
distanceUnits.format(
|
||||
avgMileagePerLoco,
|
||||
decimals: 2,
|
||||
),
|
||||
),
|
||||
_metricTile(
|
||||
'Avg distance / entry',
|
||||
distanceUnits.format(
|
||||
avgMileagePerEntry,
|
||||
decimals: 2,
|
||||
),
|
||||
),
|
||||
_metricTile(
|
||||
'Total distance',
|
||||
distanceUnits.format(
|
||||
totalMileage,
|
||||
decimals: 2,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
|
||||
@@ -39,6 +39,16 @@ extension _TractionPersistence on _TractionPageState {
|
||||
enumValues[entry.key.toString()] = entry.value?.toString();
|
||||
}
|
||||
}
|
||||
final lastOffsetRaw = decoded['lastOffset'];
|
||||
if (lastOffsetRaw is int) {
|
||||
_lastTractionOffset = lastOffsetRaw;
|
||||
} else if (lastOffsetRaw is num) {
|
||||
_lastTractionOffset = lastOffsetRaw.toInt();
|
||||
}
|
||||
final lastSig = decoded['querySignature']?.toString();
|
||||
if (lastSig != null && lastSig.isNotEmpty) {
|
||||
_lastQuerySignature = lastSig;
|
||||
}
|
||||
|
||||
for (final entry in dynamicValues.entries) {
|
||||
_dynamicControllers.putIfAbsent(
|
||||
@@ -76,6 +86,8 @@ extension _TractionPersistence on _TractionPageState {
|
||||
'showAdvancedFilters': _showAdvancedFilters,
|
||||
'dynamic': _dynamicControllers.map((k, v) => MapEntry(k, v.text)),
|
||||
'enum': _enumSelections,
|
||||
'lastOffset': _lastTractionOffset,
|
||||
'querySignature': _lastQuerySignature,
|
||||
};
|
||||
|
||||
try {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class TripsPage extends StatefulWidget {
|
||||
@@ -12,6 +13,7 @@ class TripsPage extends StatefulWidget {
|
||||
|
||||
class _TripsPageState extends State<TripsPage> {
|
||||
bool _initialised = false;
|
||||
final Map<int, Future<List<TripLocoStat>>> _tripLocoStatsFutures = {};
|
||||
|
||||
@override
|
||||
void didChangeDependencies() {
|
||||
@@ -23,7 +25,9 @@ class _TripsPageState extends State<TripsPage> {
|
||||
}
|
||||
|
||||
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 {
|
||||
@@ -35,10 +39,7 @@ class _TripsPageState extends State<TripsPage> {
|
||||
"trip_id": trip.id,
|
||||
"trip_name": newName,
|
||||
});
|
||||
await Future.wait([
|
||||
data.fetchTripDetails(),
|
||||
data.fetchTrips(),
|
||||
]);
|
||||
await data.fetchTripDetails();
|
||||
} catch (e) {
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(content: Text('Failed to rename trip: $e')),
|
||||
@@ -47,6 +48,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 {
|
||||
final controller = TextEditingController(text: initial);
|
||||
final newName = await showDialog<String>(
|
||||
@@ -78,9 +100,12 @@ class _TripsPageState extends State<TripsPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.watch<DataService>();
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
final tripDetails = data.tripDetails;
|
||||
final tripSummaries = data.trips;
|
||||
final isMobile = MediaQuery.of(context).size.width < 700;
|
||||
final tripSummaries = data.tripList;
|
||||
final summaryById = {
|
||||
for (final summary in tripSummaries) summary.tripId: summary,
|
||||
};
|
||||
final showLoading = data.isTripDetailsLoading && tripDetails.isEmpty;
|
||||
|
||||
return RefreshIndicator(
|
||||
@@ -165,91 +190,116 @@ class _TripsPageState extends State<TripsPage> {
|
||||
return Card(
|
||||
child: ListTile(
|
||||
title: Text(trip.tripName),
|
||||
subtitle: Text('${trip.tripMileage.toStringAsFixed(1)} mi'),
|
||||
subtitle:
|
||||
Text(distanceUnits.format(trip.tripMileage, decimals: 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 distanceUnits = context.watch<DistanceUnitService>();
|
||||
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(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'Trip #${trip.id}',
|
||||
style: Theme.of(context).textTheme.labelMedium,
|
||||
),
|
||||
const SizedBox(height: 4),
|
||||
Text(
|
||||
trip.name,
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Text(
|
||||
'${trip.mileage.toStringAsFixed(1)} mi · ${trip.legCount} legs',
|
||||
style: Theme.of(context).textTheme.bodyMedium,
|
||||
distanceUnits.format(trip.mileage, decimals: 1),
|
||||
style:
|
||||
Theme.of(context).textTheme.headlineSmall?.copyWith(
|
||||
fontWeight: FontWeight.w800,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
IconButton(
|
||||
icon: const Icon(Icons.train),
|
||||
tooltip: 'Traction',
|
||||
onPressed: () => _showTripWinners(context, trip),
|
||||
],
|
||||
),
|
||||
IconButton(
|
||||
const SizedBox(height: 12),
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
children: [
|
||||
_buildMetaChip(context, Icons.timeline, '$legCount legs'),
|
||||
if (dateRange != null)
|
||||
_buildMetaChip(context, Icons.calendar_month, dateRange),
|
||||
if (endpoints != null)
|
||||
_buildMetaChip(context, Icons.route, endpoints),
|
||||
if (stats.isNotEmpty) ...[
|
||||
_buildMetaChip(context, Icons.train, '${stats.length} had'),
|
||||
_buildMetaChip(
|
||||
context,
|
||||
Icons.emoji_events_outlined,
|
||||
'$winnerCount winners',
|
||||
),
|
||||
] else
|
||||
_buildMetaChip(context, Icons.train, 'No traction yet'),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
Align(
|
||||
alignment: Alignment.centerRight,
|
||||
child: Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
alignment: WrapAlignment.end,
|
||||
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),
|
||||
tooltip: 'Details',
|
||||
label: const Text('Details'),
|
||||
onPressed: () => _showTripDetail(context, trip),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
if (legs.isNotEmpty)
|
||||
Column(
|
||||
children: legs.take(isMobile ? 2 : 3).map((leg) {
|
||||
return ListTile(
|
||||
dense: isMobile,
|
||||
contentPadding: EdgeInsets.zero,
|
||||
leading: const Icon(Icons.train),
|
||||
title: Text('${leg.start} → ${leg.end}'),
|
||||
subtitle: Text(
|
||||
_formatDate(leg.beginTime),
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
trailing: Text(
|
||||
leg.mileage?.toStringAsFixed(1) ?? '-',
|
||||
style: Theme.of(context).textTheme.labelLarge?.copyWith(
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
);
|
||||
}).toList(),
|
||||
),
|
||||
if (legs.length > 3)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 6.0),
|
||||
child: Text(
|
||||
'+${legs.length - 3} more legs',
|
||||
style: Theme.of(context).textTheme.bodySmall,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
@@ -257,12 +307,65 @@ class _TripsPageState extends State<TripsPage> {
|
||||
);
|
||||
}
|
||||
|
||||
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) {
|
||||
if (date == null) return '';
|
||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||
}
|
||||
|
||||
void _showTripDetail(BuildContext context, TripDetail trip) {
|
||||
final distanceUnits = context.read<DistanceUnitService>();
|
||||
showModalBottomSheet(
|
||||
context: context,
|
||||
isScrollControlled: true,
|
||||
@@ -323,6 +426,7 @@ class _TripsPageState extends State<TripsPage> {
|
||||
data.fetchTripDetails(),
|
||||
data.fetchTrips(),
|
||||
]);
|
||||
_tripLocoStatsFutures.remove(trip.id);
|
||||
if (!mounted) return;
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(content: Text('Deleted "${trip.name}"')),
|
||||
@@ -386,7 +490,9 @@ class _TripsPageState extends State<TripsPage> {
|
||||
),
|
||||
],
|
||||
const SizedBox(width: 4),
|
||||
Text('${trip.mileage.toStringAsFixed(1)} mi'),
|
||||
Text(
|
||||
distanceUnits.format(trip.mileage, decimals: 1),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
@@ -401,7 +507,12 @@ class _TripsPageState extends State<TripsPage> {
|
||||
title: Text('${leg.start} → ${leg.end}'),
|
||||
subtitle: Text(_formatDate(leg.beginTime)),
|
||||
trailing: Text(
|
||||
leg.mileage?.toStringAsFixed(1) ?? '-',
|
||||
leg.mileage == null
|
||||
? '-'
|
||||
: distanceUnits.format(
|
||||
leg.mileage!,
|
||||
decimals: 1,
|
||||
),
|
||||
style: Theme.of(context).textTheme.labelLarge
|
||||
?.copyWith(fontWeight: FontWeight.bold),
|
||||
),
|
||||
@@ -419,15 +530,20 @@ class _TripsPageState extends State<TripsPage> {
|
||||
);
|
||||
}
|
||||
|
||||
void _showTripWinners(BuildContext context, TripDetail trip) {
|
||||
void _showTripWinners(
|
||||
BuildContext context,
|
||||
TripDetail trip,
|
||||
TripSummary? summary,
|
||||
) {
|
||||
final distanceUnits = context.read<DistanceUnitService>();
|
||||
showModalBottomSheet(
|
||||
context: context,
|
||||
isScrollControlled: true,
|
||||
builder: (_) {
|
||||
final data = context.read<DataService>();
|
||||
return SafeArea(
|
||||
child: FutureBuilder<List<TripLocoStat>>(
|
||||
future: data.fetchTripLocoStats(trip.id),
|
||||
future: _loadTripStats(trip, summary),
|
||||
initialData: _cachedTripStats(trip, summary),
|
||||
builder: (ctx, snapshot) {
|
||||
final items = snapshot.data ?? [];
|
||||
final loading =
|
||||
@@ -452,7 +568,9 @@ class _TripsPageState extends State<TripsPage> {
|
||||
?.copyWith(fontWeight: FontWeight.bold),
|
||||
),
|
||||
const Spacer(),
|
||||
Text('${trip.mileage.toStringAsFixed(1)} mi'),
|
||||
Text(
|
||||
distanceUnits.format(trip.mileage, decimals: 1),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/api_service.dart';
|
||||
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class TractionCard extends StatelessWidget {
|
||||
const TractionCard({
|
||||
@@ -28,6 +31,7 @@ class TractionCard extends StatelessWidget {
|
||||
final domain = loco.domain ?? '';
|
||||
final hasMileageOrTrips = _hasMileageOrTrips(loco);
|
||||
final statusColors = _statusChipColors(context, status);
|
||||
final distanceUnits = context.watch<DistanceUnitService>();
|
||||
|
||||
return Card(
|
||||
child: Padding(
|
||||
@@ -151,8 +155,11 @@ class TractionCard extends StatelessWidget {
|
||||
children: [
|
||||
_statPill(
|
||||
context,
|
||||
label: 'Miles',
|
||||
value: _formatNumber(loco.mileage),
|
||||
label: 'Distance',
|
||||
value: distanceUnits.format(
|
||||
loco.mileage ?? 0,
|
||||
decimals: 1,
|
||||
),
|
||||
),
|
||||
_statPill(
|
||||
context,
|
||||
@@ -203,6 +210,12 @@ Future<void> showTractionDetails(
|
||||
LocoSummary loco,
|
||||
) async {
|
||||
final hasMileageOrTrips = _hasMileageOrTrips(loco);
|
||||
final distanceUnits = context.read<DistanceUnitService>();
|
||||
final api = context.read<ApiService>();
|
||||
final leaderboardId = _leaderboardId(loco);
|
||||
final leaderboardFuture = leaderboardId == null
|
||||
? Future.value(const <LeaderboardEntry>[])
|
||||
: _fetchLocoLeaderboard(api, leaderboardId);
|
||||
await showModalBottomSheet(
|
||||
context: context,
|
||||
isScrollControlled: true,
|
||||
@@ -275,7 +288,10 @@ Future<void> showTractionDetails(
|
||||
_detailRow(
|
||||
context,
|
||||
'Mileage',
|
||||
_formatNumber(loco.mileage ?? 0),
|
||||
distanceUnits.format(
|
||||
loco.mileage ?? 0,
|
||||
decimals: 1,
|
||||
),
|
||||
),
|
||||
_detailRow(
|
||||
context,
|
||||
@@ -285,6 +301,63 @@ Future<void> showTractionDetails(
|
||||
_detailRow(context, 'EVN', loco.evn ?? ''),
|
||||
if (loco.notes != null && loco.notes!.isNotEmpty)
|
||||
_detailRow(context, 'Notes', loco.notes!),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
'Leaderboard',
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
FutureBuilder<List<LeaderboardEntry>>(
|
||||
future: leaderboardFuture,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||
return const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 12.0),
|
||||
child: Center(
|
||||
child: SizedBox(
|
||||
height: 24,
|
||||
width: 24,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
if (snapshot.hasError) {
|
||||
return Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||
child: Text(
|
||||
'Failed to load leaderboard',
|
||||
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||
color: Theme.of(context).colorScheme.error,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
final entries = snapshot.data ?? const <LeaderboardEntry>[];
|
||||
if (entries.isEmpty) {
|
||||
return Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||
child: Text(
|
||||
'No mileage leaderboard yet.',
|
||||
style: Theme.of(context).textTheme.bodyMedium,
|
||||
),
|
||||
);
|
||||
}
|
||||
return Column(
|
||||
children: entries.asMap().entries.map((entry) {
|
||||
final rank = entry.key + 1;
|
||||
return _leaderboardRow(
|
||||
context,
|
||||
rank,
|
||||
entry.value,
|
||||
distanceUnits,
|
||||
);
|
||||
}).toList(),
|
||||
);
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -297,6 +370,105 @@ Future<void> showTractionDetails(
|
||||
);
|
||||
}
|
||||
|
||||
Future<List<LeaderboardEntry>> _fetchLocoLeaderboard(
|
||||
ApiService api,
|
||||
int locoId,
|
||||
) async {
|
||||
try {
|
||||
final json = await api.get('/loco/leaderboard/id/$locoId');
|
||||
Iterable<dynamic>? raw;
|
||||
if (json is List) {
|
||||
raw = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['data', 'leaderboard', 'results']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
raw = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (raw == null) return const [];
|
||||
return raw.whereType<Map>().map((e) {
|
||||
return LeaderboardEntry.fromJson(
|
||||
e.map((key, value) => MapEntry(key.toString(), value)),
|
||||
);
|
||||
}).toList();
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch loco leaderboard for $locoId: $e');
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
int? _leaderboardId(LocoSummary loco) {
|
||||
int? parse(dynamic value) {
|
||||
if (value == null) return null;
|
||||
if (value is int) return value == 0 ? null : value;
|
||||
if (value is num) return value.toInt() == 0 ? null : value.toInt();
|
||||
return int.tryParse(value.toString());
|
||||
}
|
||||
|
||||
return parse(loco.extra['loco_id']) ??
|
||||
parse(loco.extra['id']) ??
|
||||
parse(loco.id);
|
||||
}
|
||||
|
||||
Widget _leaderboardRow(
|
||||
BuildContext context,
|
||||
int rank,
|
||||
LeaderboardEntry entry,
|
||||
DistanceUnitService distanceUnits,
|
||||
) {
|
||||
final theme = Theme.of(context);
|
||||
final primaryName =
|
||||
entry.userFullName.isNotEmpty ? entry.userFullName : entry.username;
|
||||
final mileageLabel = distanceUnits.format(entry.mileage, decimals: 1);
|
||||
|
||||
return Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 6.0),
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: 36,
|
||||
height: 36,
|
||||
alignment: Alignment.center,
|
||||
decoration: BoxDecoration(
|
||||
color: theme.colorScheme.primaryContainer,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
child: Text(
|
||||
'#$rank',
|
||||
style: theme.textTheme.labelMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
color: theme.colorScheme.onPrimaryContainer,
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 10),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
primaryName,
|
||||
style: theme.textTheme.bodyMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Text(
|
||||
mileageLabel,
|
||||
style: theme.textTheme.bodyMedium?.copyWith(
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _detailRow(BuildContext context, String label, String value) {
|
||||
if (value.isEmpty) return const SizedBox.shrink();
|
||||
return Padding(
|
||||
@@ -368,8 +540,3 @@ bool _hasMileageOrTrips(LocoSummary loco) {
|
||||
final trips = loco.trips ?? loco.journeys ?? 0;
|
||||
return mileage > 0 || trips > 0;
|
||||
}
|
||||
|
||||
String _formatNumber(double? value) {
|
||||
if (value == null) return '0';
|
||||
return value.toStringAsFixed(1);
|
||||
}
|
||||
|
||||
127
lib/components/widgets/friend_request_notification_card.dart
Normal file
@@ -0,0 +1,127 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class FriendRequestNotificationCard extends StatelessWidget {
|
||||
const FriendRequestNotificationCard({super.key, required this.notification});
|
||||
|
||||
final UserNotification notification;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.read<DataService>();
|
||||
final friendshipId = notification.body.trim();
|
||||
if (friendshipId.isEmpty) {
|
||||
return const Text('Invalid friend request notification.');
|
||||
}
|
||||
final future = data.fetchFriendshipById(friendshipId);
|
||||
return FutureBuilder<Friendship?>(
|
||||
future: future,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||
return const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 6.0),
|
||||
child: SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
),
|
||||
);
|
||||
}
|
||||
if (snapshot.hasError) {
|
||||
return const Text('Failed to load request details.');
|
||||
}
|
||||
final friendship = snapshot.data;
|
||||
final requester = friendship?.requester;
|
||||
if (friendship == null || requester == null) {
|
||||
return const Text('Friend request details unavailable.');
|
||||
}
|
||||
final buttonStyle = ElevatedButton.styleFrom(
|
||||
minimumSize: const Size(0, 36),
|
||||
);
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
const Icon(Icons.person_add_alt, size: 18),
|
||||
const SizedBox(width: 6),
|
||||
Text(
|
||||
requester.displayName.isNotEmpty
|
||||
? requester.displayName
|
||||
: '@${requester.username}',
|
||||
style: Theme.of(context).textTheme.titleSmall,
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 6),
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
children: [
|
||||
ElevatedButton(
|
||||
style: buttonStyle,
|
||||
onPressed: () =>
|
||||
_respond(context, friendship.id, accept: true),
|
||||
child: const Text('Accept'),
|
||||
),
|
||||
ElevatedButton(
|
||||
style: buttonStyle,
|
||||
onPressed: () =>
|
||||
_respond(context, friendship.id, accept: false),
|
||||
child: const Text('Reject'),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> _respond(
|
||||
BuildContext context,
|
||||
String? friendshipId, {
|
||||
required bool accept,
|
||||
}) async {
|
||||
if (friendshipId == null || friendshipId.isEmpty) return;
|
||||
final data = context.read<DataService>();
|
||||
final messenger = ScaffoldMessenger.maybeOf(context);
|
||||
try {
|
||||
if (accept) {
|
||||
await data.acceptFriendship(friendshipId);
|
||||
if (!context.mounted) return;
|
||||
messenger?.showSnackBar(
|
||||
const SnackBar(content: Text('Friend request accepted')),
|
||||
);
|
||||
await _dismissNotification(context, messenger);
|
||||
} else {
|
||||
await data.rejectFriendship(friendshipId);
|
||||
if (!context.mounted) return;
|
||||
messenger?.showSnackBar(
|
||||
const SnackBar(content: Text('Friend request rejected')),
|
||||
);
|
||||
await _dismissNotification(context, messenger);
|
||||
}
|
||||
await data.fetchPendingFriendships();
|
||||
} catch (e) {
|
||||
if (!context.mounted) return;
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(content: Text('Failed to respond: $e')),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _dismissNotification(
|
||||
BuildContext context,
|
||||
ScaffoldMessengerState? messenger,
|
||||
) async {
|
||||
try {
|
||||
await context.read<DataService>().dismissNotifications([notification.id]);
|
||||
} catch (e) {
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(content: Text('Failed to dismiss notification: $e')),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
147
lib/components/widgets/leg_share_notification_card.dart
Normal file
@@ -0,0 +1,147 @@
|
||||
import 'dart:async';
|
||||
|
||||
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 LegShareNotificationCard extends StatelessWidget {
|
||||
const LegShareNotificationCard({super.key, required this.notification});
|
||||
|
||||
final UserNotification notification;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final data = context.read<DataService>();
|
||||
final legShareId = notification.body.trim();
|
||||
if (legShareId.isEmpty) {
|
||||
return const Text('Invalid leg share notification.');
|
||||
}
|
||||
final future = data.fetchLegShare(legShareId);
|
||||
return FutureBuilder<LegShareData?>(
|
||||
future: future,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||
return const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 6.0),
|
||||
child: SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
),
|
||||
);
|
||||
}
|
||||
if (snapshot.hasError) {
|
||||
return const Text('Failed to load shared entry.');
|
||||
}
|
||||
final share = snapshot.data;
|
||||
final entry = share?.entry;
|
||||
if (share == null || entry == null) {
|
||||
return const Text('Shared entry unavailable.');
|
||||
}
|
||||
final begin = entry.beginTime;
|
||||
final beginStr =
|
||||
'${begin.year.toString().padLeft(4, '0')}-${begin.month.toString().padLeft(2, '0')}-${begin.day.toString().padLeft(2, '0')} ${begin.hour.toString().padLeft(2, '0')}:${begin.minute.toString().padLeft(2, '0')}';
|
||||
final start = entry.route.isNotEmpty ? entry.route.first : entry.start;
|
||||
final end = entry.route.isNotEmpty ? entry.route.last : entry.end;
|
||||
final sharedAt = share.sharedAt;
|
||||
final sharedAtStr = sharedAt == null
|
||||
? null
|
||||
: '${sharedAt.year.toString().padLeft(4, '0')}-${sharedAt.month.toString().padLeft(2, '0')}-${sharedAt.day.toString().padLeft(2, '0')} ${sharedAt.hour.toString().padLeft(2, '0')}:${sharedAt.minute.toString().padLeft(2, '0')}';
|
||||
final from = share.sharedFromName;
|
||||
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text('$beginStr • $start → $end'),
|
||||
if (from.isNotEmpty)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 4.0),
|
||||
child: Text(
|
||||
'From $from',
|
||||
style: Theme.of(context).textTheme.bodySmall,
|
||||
),
|
||||
),
|
||||
if (sharedAtStr != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 4.0),
|
||||
child: Text(
|
||||
'Shared at $sharedAtStr',
|
||||
style: Theme.of(context).textTheme.bodySmall,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 8,
|
||||
children: [
|
||||
ElevatedButton(
|
||||
onPressed: () => _accept(context, share),
|
||||
child: const Text('Accept'),
|
||||
),
|
||||
OutlinedButton(
|
||||
onPressed: () => _inspect(context, share),
|
||||
child: const Text('Inspect'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () => _reject(context, share),
|
||||
child: const Text('Reject'),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> _accept(BuildContext context, LegShareData share) async {
|
||||
final data = context.read<DataService>();
|
||||
final messenger = ScaffoldMessenger.maybeOf(context);
|
||||
try {
|
||||
await data.acceptLegShare(share);
|
||||
if (!context.mounted) return;
|
||||
await data.dismissNotifications([notification.id]);
|
||||
// Refresh legs in the background.
|
||||
unawaited(data.refreshLegs());
|
||||
messenger?.showSnackBar(
|
||||
const SnackBar(content: Text('Shared entry added to logbook')),
|
||||
);
|
||||
} catch (e) {
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(content: Text('Failed to add shared entry: $e')),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _reject(BuildContext context, LegShareData share) async {
|
||||
final data = context.read<DataService>();
|
||||
final messenger = ScaffoldMessenger.maybeOf(context);
|
||||
try {
|
||||
await data.rejectLegShare(share.id);
|
||||
if (!context.mounted) return;
|
||||
await data.dismissNotifications([notification.id]);
|
||||
messenger?.showSnackBar(
|
||||
const SnackBar(content: Text('Share rejected')),
|
||||
);
|
||||
} catch (e) {
|
||||
messenger?.showSnackBar(
|
||||
SnackBar(content: Text('Failed to reject share: $e')),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _inspect(BuildContext context, LegShareData share) async {
|
||||
final router = GoRouter.of(context);
|
||||
// Close notifications panel if open.
|
||||
if (Navigator.canPop(context)) {
|
||||
Navigator.of(context).pop();
|
||||
}
|
||||
await Future<void>.delayed(Duration.zero);
|
||||
final target = share.copyWith(notificationId: notification.id);
|
||||
final ts = DateTime.now().millisecondsSinceEpoch;
|
||||
final path = '/add?share=${Uri.encodeComponent(share.id)}&ts=$ts';
|
||||
router.go(path, extra: target);
|
||||
}
|
||||
}
|
||||
@@ -128,7 +128,12 @@ class ApiService {
|
||||
await _onUnauthorized!();
|
||||
}
|
||||
|
||||
throw Exception('API error ${res.statusCode}: $body');
|
||||
final message = _extractErrorMessage(body);
|
||||
throw ApiException(
|
||||
statusCode: res.statusCode,
|
||||
message: message,
|
||||
body: body,
|
||||
);
|
||||
}
|
||||
|
||||
dynamic _decodeBody(http.Response res) {
|
||||
@@ -149,4 +154,41 @@ class ApiService {
|
||||
return res.body;
|
||||
}
|
||||
}
|
||||
|
||||
String _extractErrorMessage(dynamic body) {
|
||||
if (body == null) return 'No response body';
|
||||
if (body is String) return body;
|
||||
if (body is Map<String, dynamic>) {
|
||||
for (final key in ['message', 'error', 'detail', 'msg']) {
|
||||
final val = body[key];
|
||||
if (val is String && val.trim().isNotEmpty) return val;
|
||||
}
|
||||
return body.toString();
|
||||
}
|
||||
if (body is List) {
|
||||
final parts = body
|
||||
.map((e) => e is Map
|
||||
? _extractErrorMessage(Map<String, dynamic>.from(e))
|
||||
: e.toString())
|
||||
.where((e) => e.trim().isNotEmpty)
|
||||
.toList();
|
||||
if (parts.isNotEmpty) return parts.join('; ');
|
||||
}
|
||||
return body.toString();
|
||||
}
|
||||
}
|
||||
|
||||
class ApiException implements Exception {
|
||||
final int statusCode;
|
||||
final String message;
|
||||
final dynamic body;
|
||||
|
||||
ApiException({
|
||||
required this.statusCode,
|
||||
required this.message,
|
||||
this.body,
|
||||
});
|
||||
|
||||
@override
|
||||
String toString() => 'API error $statusCode: $message';
|
||||
}
|
||||
|
||||
@@ -21,6 +21,9 @@ class AuthService extends ChangeNotifier {
|
||||
String? get userId => _user?.userId;
|
||||
String? get username => _user?.username;
|
||||
String? get fullName => _user?.fullName;
|
||||
bool get isElevated => _user?.isElevated ?? false;
|
||||
bool get isAdmin => isElevated; // alias for old name
|
||||
bool get isDisabled => _user?.disabled ?? false;
|
||||
|
||||
void setLoginData({
|
||||
required String userId,
|
||||
@@ -28,6 +31,8 @@ class AuthService extends ChangeNotifier {
|
||||
required String fullName,
|
||||
required String accessToken,
|
||||
required String email,
|
||||
bool isElevated = false,
|
||||
bool isDisabled = false,
|
||||
}) {
|
||||
_user = AuthenticatedUserData(
|
||||
userId: userId,
|
||||
@@ -35,6 +40,8 @@ class AuthService extends ChangeNotifier {
|
||||
fullName: fullName,
|
||||
accessToken: accessToken,
|
||||
email: email,
|
||||
isElevated: isElevated,
|
||||
disabled: isDisabled,
|
||||
);
|
||||
_persistToken(accessToken);
|
||||
notifyListeners();
|
||||
@@ -70,6 +77,8 @@ class AuthService extends ChangeNotifier {
|
||||
fullName: userResponse['full_name'],
|
||||
accessToken: accessToken,
|
||||
email: userResponse['email'],
|
||||
isElevated: _parseIsElevated(userResponse),
|
||||
isDisabled: _parseIsDisabled(userResponse),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -95,6 +104,8 @@ class AuthService extends ChangeNotifier {
|
||||
fullName: userResponse['full_name'],
|
||||
accessToken: token,
|
||||
email: userResponse['email'],
|
||||
isElevated: _parseIsElevated(userResponse),
|
||||
isDisabled: _parseIsDisabled(userResponse),
|
||||
);
|
||||
} catch (_) {
|
||||
await _clearToken();
|
||||
@@ -157,4 +168,60 @@ class AuthService extends ChangeNotifier {
|
||||
void logout() {
|
||||
handleTokenExpired(); // reuse
|
||||
}
|
||||
|
||||
bool _parseIsElevated(Map<String, dynamic> json) {
|
||||
dynamic value = json['is_elevated'] ??
|
||||
json['elevated'] ??
|
||||
json['is_admin'] ??
|
||||
json['admin'] ??
|
||||
json['isAdmin'] ??
|
||||
json['admin_user'] ??
|
||||
json['role'] ??
|
||||
json['roles'] ??
|
||||
json['permissions'] ??
|
||||
json['scopes'] ??
|
||||
json['is_staff'] ??
|
||||
json['staff'] ??
|
||||
json['is_superuser'] ??
|
||||
json['superuser'] ??
|
||||
json['groups'];
|
||||
|
||||
bool parseBoolish(dynamic v) {
|
||||
if (v is bool) return v;
|
||||
if (v is num) return v != 0;
|
||||
final str = v?.toString().toLowerCase().trim();
|
||||
if (str == null || str.isEmpty) return false;
|
||||
if (['1', 'true', 'yes', 'y', 'admin', 'superuser', 'staff', 'elevated'].contains(str)) {
|
||||
return true;
|
||||
}
|
||||
return str.contains('admin') || str.contains('superuser') || str.contains('staff');
|
||||
}
|
||||
|
||||
if (value is List) {
|
||||
for (final entry in value) {
|
||||
if (parseBoolish(entry)) return true;
|
||||
final s = entry?.toString().toLowerCase();
|
||||
if (s != null &&
|
||||
(s.contains('admin') ||
|
||||
s.contains('superuser') ||
|
||||
s.contains('staff') ||
|
||||
s.contains('elevated') ||
|
||||
s == 'root')) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
return parseBoolish(value);
|
||||
}
|
||||
|
||||
bool _parseIsDisabled(Map<String, dynamic> json) {
|
||||
dynamic value = json['disabled'] ?? json['is_disabled'];
|
||||
if (value is bool) return value;
|
||||
if (value is num) return value != 0;
|
||||
final str = value?.toString().toLowerCase().trim();
|
||||
if (str == null || str.isEmpty) return false;
|
||||
return ['1', 'true', 'yes', 'y', 'disabled'].contains(str);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,4 +9,8 @@ import 'package:mileograph_flutter/services/api_service.dart';
|
||||
part 'data_service_core.dart';
|
||||
part 'data_service_traction.dart';
|
||||
part 'data_service_trips.dart';
|
||||
|
||||
part 'data_service_notifications.dart';
|
||||
part 'data_service_badges.dart';
|
||||
part 'data_service_stats.dart';
|
||||
part 'data_service_friendships.dart';
|
||||
part 'data_service_leg_share.dart';
|
||||
|
||||
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,11 +21,17 @@ class DataService extends ChangeNotifier {
|
||||
|
||||
DataService({required this.api});
|
||||
|
||||
String? _currentUserId;
|
||||
|
||||
_LegFetchOptions _lastLegsFetch = const _LegFetchOptions();
|
||||
|
||||
// Homepage Data
|
||||
HomepageStats? _homepageStats;
|
||||
HomepageStats? get homepageStats => _homepageStats;
|
||||
StatsAbout? _aboutStats;
|
||||
StatsAbout? get aboutStats => _aboutStats;
|
||||
bool _isAboutStatsLoading = false;
|
||||
bool get isAboutStatsLoading => _isAboutStatsLoading;
|
||||
|
||||
// Legs Data
|
||||
List<Leg> _legs = [];
|
||||
@@ -58,6 +64,18 @@ class DataService extends ChangeNotifier {
|
||||
bool isLocoTimelineLoading(int locoId) =>
|
||||
_isLocoTimelineLoading[locoId] ?? false;
|
||||
|
||||
// Friendships
|
||||
List<Friendship> _friendships = [];
|
||||
List<Friendship> _pendingIncoming = [];
|
||||
List<Friendship> _pendingOutgoing = [];
|
||||
List<Friendship> get friendships => _friendships;
|
||||
List<Friendship> get pendingIncoming => _pendingIncoming;
|
||||
List<Friendship> get pendingOutgoing => _pendingOutgoing;
|
||||
bool _isFriendshipsLoading = false;
|
||||
bool get isFriendshipsLoading => _isFriendshipsLoading;
|
||||
bool _isPendingFriendshipsLoading = false;
|
||||
bool get isPendingFriendshipsLoading => _isPendingFriendshipsLoading;
|
||||
|
||||
// Trips
|
||||
List<TripSummary> _trips = [];
|
||||
List<TripSummary> get trips => _trips;
|
||||
@@ -90,6 +108,40 @@ class DataService extends ChangeNotifier {
|
||||
bool get isHomepageLoading => _isHomepageLoading;
|
||||
bool _isOnThisDayLoading = false;
|
||||
bool get isOnThisDayLoading => _isOnThisDayLoading;
|
||||
List<LeaderboardEntry> _friendsLeaderboard = [];
|
||||
List<LeaderboardEntry> get friendsLeaderboard => _friendsLeaderboard;
|
||||
bool _isFriendsLeaderboardLoading = false;
|
||||
bool get isFriendsLeaderboardLoading => _isFriendsLeaderboardLoading;
|
||||
|
||||
// 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 = [
|
||||
EventField(name: 'operator', display: 'Operator'),
|
||||
@@ -115,7 +167,8 @@ class DataService extends ChangeNotifier {
|
||||
try {
|
||||
final json = await api.get('/stats/homepage');
|
||||
_homepageStats = HomepageStats.fromJson(json);
|
||||
_trips = _homepageStats?.trips ?? [];
|
||||
_trips = [...(_homepageStats?.trips ?? const [])]
|
||||
..sort(TripSummary.compareByDateDesc);
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch homepage stats: $e');
|
||||
_homepageStats = null;
|
||||
@@ -345,6 +398,8 @@ class DataService extends ChangeNotifier {
|
||||
}
|
||||
|
||||
void clear() {
|
||||
_currentUserId = null;
|
||||
_lastLegsFetch = const _LegFetchOptions();
|
||||
_homepageStats = null;
|
||||
_legs = [];
|
||||
_onThisDay = [];
|
||||
@@ -355,9 +410,44 @@ class DataService extends ChangeNotifier {
|
||||
_isLocoTimelineLoading.clear();
|
||||
_latestLocoChanges = [];
|
||||
_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();
|
||||
}
|
||||
|
||||
void handleAuthChanged(String? userId) {
|
||||
if (_currentUserId == userId) return;
|
||||
_currentUserId = userId;
|
||||
clear();
|
||||
_currentUserId = userId;
|
||||
}
|
||||
|
||||
double getMileageForCurrentYear() {
|
||||
final currentYear = DateTime.now().year;
|
||||
return getMileageForYear(currentYear) ?? 0;
|
||||
|
||||
282
lib/services/data_service/data_service_friendships.dart
Normal file
@@ -0,0 +1,282 @@
|
||||
part of 'data_service.dart';
|
||||
|
||||
extension DataServiceFriendships on DataService {
|
||||
Future<void> fetchFriendships() async {
|
||||
_isFriendshipsLoading = true;
|
||||
try {
|
||||
final json = await api.get('/friendships');
|
||||
List<dynamic>? list;
|
||||
if (json is List) {
|
||||
list = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['friendships', 'data', 'items', 'results']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
list = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
final parsed = list
|
||||
?.whereType<Map>()
|
||||
.map((e) => Friendship.fromJson(
|
||||
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||
))
|
||||
.where((f) => f.isAccepted)
|
||||
.toList();
|
||||
_friendships = parsed ?? [];
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch friendships: $e');
|
||||
_friendships = [];
|
||||
} finally {
|
||||
_isFriendshipsLoading = false;
|
||||
_notifyAsync();
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> fetchPendingFriendships() async {
|
||||
_isPendingFriendshipsLoading = true;
|
||||
try {
|
||||
final incoming = await _fetchPending('incoming');
|
||||
final outgoing = await _fetchPending('outgoing');
|
||||
_pendingIncoming = incoming;
|
||||
_pendingOutgoing = outgoing;
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch pending friendships: $e');
|
||||
_pendingIncoming = [];
|
||||
_pendingOutgoing = [];
|
||||
} finally {
|
||||
_isPendingFriendshipsLoading = false;
|
||||
_notifyAsync();
|
||||
}
|
||||
}
|
||||
|
||||
Future<List<Friendship>> _fetchPending(String direction) async {
|
||||
final json = await api.get('/friendships/pending?direction=$direction');
|
||||
List<dynamic>? list;
|
||||
if (json is List) {
|
||||
list = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['friendships', 'data', 'items', 'results']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
list = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return list
|
||||
?.whereType<Map>()
|
||||
.map((e) => Friendship.fromJson(
|
||||
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||
))
|
||||
.where((f) => f.isPending)
|
||||
.toList() ??
|
||||
const [];
|
||||
}
|
||||
|
||||
Future<Friendship?> fetchFriendshipById(String friendshipId) async {
|
||||
try {
|
||||
final json = await api.get('/friendships/$friendshipId');
|
||||
if (json is Map) {
|
||||
return Friendship.fromJson(
|
||||
json.map((k, v) => MapEntry(k.toString(), v)),
|
||||
);
|
||||
}
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch friendship $friendshipId: $e');
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Future<List<UserSummary>> searchUsers(
|
||||
String query, {
|
||||
bool friendsOnly = false,
|
||||
}) async {
|
||||
final encoded = Uri.encodeComponent(query);
|
||||
final json = await api.get(
|
||||
'/users/search?search=$encoded${friendsOnly ? '&friends_only=true' : ''}',
|
||||
);
|
||||
List<dynamic>? list;
|
||||
if (json is List) {
|
||||
list = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['users', 'data', 'results', 'items']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
list = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (list == null) return const [];
|
||||
return list
|
||||
.whereType<Map>()
|
||||
.map((e) => UserSummary.fromJson(
|
||||
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||
))
|
||||
.toList();
|
||||
}
|
||||
|
||||
Future<Friendship> fetchFriendshipStatus(String targetUserId) async {
|
||||
try {
|
||||
final json = await api.get('/friendships/status/$targetUserId');
|
||||
if (json is Map) {
|
||||
return Friendship.fromStatusJson(
|
||||
json.map((k, v) => MapEntry(k.toString(), v)),
|
||||
targetUserId: targetUserId,
|
||||
);
|
||||
}
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch friendship status for $targetUserId: $e');
|
||||
}
|
||||
return Friendship(
|
||||
id: null,
|
||||
status: 'none',
|
||||
requesterId: '',
|
||||
addresseeId: targetUserId,
|
||||
);
|
||||
}
|
||||
|
||||
Future<Friendship> requestFriendship(
|
||||
String targetUserId, {
|
||||
UserSummary? targetUser,
|
||||
}) async {
|
||||
final json = await api.post('/friendships/request', {
|
||||
"target_user_id": targetUserId,
|
||||
});
|
||||
final friendship = _parseAndUpsertFriendship(
|
||||
json,
|
||||
fallbackStatus: 'pending',
|
||||
overrideAddressee: targetUser,
|
||||
);
|
||||
_pendingOutgoing = [friendship, ..._pendingOutgoing];
|
||||
_notifyAsync();
|
||||
return friendship;
|
||||
}
|
||||
|
||||
Future<Friendship> acceptFriendship(String friendshipId) async {
|
||||
final json = await api.post('/friendships/$friendshipId/accept', {});
|
||||
final friendship = _parseAndUpsertFriendship(json, fallbackStatus: 'accepted');
|
||||
_pendingIncoming = _pendingIncoming.where((f) => f.id != friendshipId).toList();
|
||||
_notifyAsync();
|
||||
return friendship;
|
||||
}
|
||||
|
||||
Future<Friendship> rejectFriendship(String friendshipId) async {
|
||||
final json = await api.post('/friendships/$friendshipId/reject', {});
|
||||
final friendship = _parseAndUpsertFriendship(json, fallbackStatus: 'declined');
|
||||
_pendingIncoming = _pendingIncoming.where((f) => f.id != friendshipId).toList();
|
||||
_notifyAsync();
|
||||
return friendship;
|
||||
}
|
||||
|
||||
Future<Friendship> cancelFriendship(String friendshipId) async {
|
||||
final json = await api.post('/friendships/$friendshipId/cancel', {});
|
||||
final friendship =
|
||||
_parseAndRemoveFriendship(json, friendshipId, status: 'none');
|
||||
_pendingOutgoing =
|
||||
_pendingOutgoing.where((f) => f.id != friendshipId).toList();
|
||||
_notifyAsync();
|
||||
return friendship;
|
||||
}
|
||||
|
||||
Future<void> deleteFriendship(String friendshipId) async {
|
||||
try {
|
||||
await api.delete('/friendships/$friendshipId');
|
||||
} catch (e) {
|
||||
debugPrint('Failed to delete friendship $friendshipId: $e');
|
||||
rethrow;
|
||||
}
|
||||
_friendships = _friendships.where((f) => f.id != friendshipId).toList();
|
||||
_pendingIncoming =
|
||||
_pendingIncoming.where((f) => f.id != friendshipId).toList();
|
||||
_pendingOutgoing =
|
||||
_pendingOutgoing.where((f) => f.id != friendshipId).toList();
|
||||
_notifyAsync();
|
||||
}
|
||||
|
||||
Future<Friendship> blockUser(String targetUserId) async {
|
||||
final json = await api.post('/friendships/block', {
|
||||
"target_user_id": targetUserId,
|
||||
});
|
||||
final friendship = _parseAndUpsertFriendship(json, fallbackStatus: 'blocked');
|
||||
_pendingIncoming = _pendingIncoming
|
||||
.where((f) => f.addresseeId != targetUserId && f.requesterId != targetUserId)
|
||||
.toList();
|
||||
_pendingOutgoing = _pendingOutgoing
|
||||
.where((f) => f.addresseeId != targetUserId && f.requesterId != targetUserId)
|
||||
.toList();
|
||||
_notifyAsync();
|
||||
return friendship;
|
||||
}
|
||||
|
||||
Friendship _parseAndUpsertFriendship(
|
||||
dynamic json, {
|
||||
String fallbackStatus = 'none',
|
||||
UserSummary? overrideAddressee,
|
||||
}) {
|
||||
Friendship friendship;
|
||||
if (json is Map) {
|
||||
friendship = Friendship.fromJson(
|
||||
json.map((k, v) => MapEntry(k.toString(), v)),
|
||||
);
|
||||
} else {
|
||||
friendship = Friendship(
|
||||
id: null,
|
||||
status: fallbackStatus,
|
||||
requesterId: '',
|
||||
addresseeId: '',
|
||||
);
|
||||
}
|
||||
if (overrideAddressee != null &&
|
||||
(friendship.addressee == null ||
|
||||
friendship.addressee!.userId.isEmpty ||
|
||||
friendship.addressee!.displayName.isEmpty)) {
|
||||
friendship = friendship.copyWith(
|
||||
addressee: overrideAddressee,
|
||||
addresseeId: overrideAddressee.userId,
|
||||
);
|
||||
}
|
||||
_upsertFriendship(friendship);
|
||||
return friendship;
|
||||
}
|
||||
|
||||
Friendship _parseAndRemoveFriendship(
|
||||
dynamic json,
|
||||
String friendshipId, {
|
||||
required String status,
|
||||
}) {
|
||||
Friendship friendship;
|
||||
if (json is Map) {
|
||||
friendship = Friendship.fromJson(
|
||||
json.map((k, v) => MapEntry(k.toString(), v)),
|
||||
);
|
||||
} else {
|
||||
friendship = Friendship(
|
||||
id: friendshipId,
|
||||
status: status,
|
||||
requesterId: '',
|
||||
addresseeId: '',
|
||||
);
|
||||
}
|
||||
_friendships = _friendships.where((f) => f.id != friendshipId).toList();
|
||||
_notifyAsync();
|
||||
return friendship;
|
||||
}
|
||||
|
||||
void _upsertFriendship(Friendship friendship) {
|
||||
if (friendship.id == null || friendship.id!.isEmpty) {
|
||||
_notifyAsync();
|
||||
return;
|
||||
}
|
||||
final idx = _friendships.indexWhere((f) => f.id == friendship.id);
|
||||
if (idx >= 0) {
|
||||
_friendships[idx] = friendship;
|
||||
} else {
|
||||
_friendships = [friendship, ..._friendships];
|
||||
}
|
||||
_friendships = _friendships.where((f) => f.isAccepted).toList();
|
||||
_notifyAsync();
|
||||
}
|
||||
}
|
||||
97
lib/services/data_service/data_service_leg_share.dart
Normal file
@@ -0,0 +1,97 @@
|
||||
part of 'data_service.dart';
|
||||
|
||||
extension DataServiceLegShare on DataService {
|
||||
Future<LegShareData?> fetchLegShare(String legShareId) async {
|
||||
try {
|
||||
final json = await api.get('/legs/share/$legShareId');
|
||||
if (json is Map) {
|
||||
return LegShareData.fromJson(
|
||||
json.map((k, v) => MapEntry(k.toString(), v)),
|
||||
);
|
||||
}
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch leg share $legShareId: $e');
|
||||
rethrow;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Future<void> rejectLegShare(String legShareId) async {
|
||||
try {
|
||||
await api.post('/legs/share/$legShareId/reject', {});
|
||||
} catch (e) {
|
||||
debugPrint('Failed to reject leg share $legShareId: $e');
|
||||
rethrow;
|
||||
}
|
||||
}
|
||||
|
||||
Future<int?> acceptLegShare(LegShareData share) async {
|
||||
final entry = share.entry;
|
||||
final hasRoute = entry.route.isNotEmpty;
|
||||
final locosPayload = <Map<String, dynamic>>[];
|
||||
for (var i = 0; i < entry.locos.length; i++) {
|
||||
final loco = entry.locos[i];
|
||||
final pos = loco.allocPos != 0 ? loco.allocPos : i;
|
||||
locosPayload.add({
|
||||
"loco_id": loco.id,
|
||||
"alloc_pos": pos,
|
||||
"alloc_powering": loco.powering ? 1 : 0,
|
||||
});
|
||||
}
|
||||
final payload = <String, dynamic>{
|
||||
"leg_share_id": share.id,
|
||||
"leg_trip": null,
|
||||
"leg_begin_time": entry.beginTime.toIso8601String(),
|
||||
if (entry.endTime != null) "leg_end_time": entry.endTime!.toIso8601String(),
|
||||
if (entry.originTime != null)
|
||||
"leg_origin_time": entry.originTime!.toIso8601String(),
|
||||
if (entry.destinationTime != null)
|
||||
"leg_destination_time": entry.destinationTime!.toIso8601String(),
|
||||
"leg_notes": entry.notes,
|
||||
"leg_headcode": entry.headcode,
|
||||
"leg_network": entry.network,
|
||||
"leg_origin": entry.origin,
|
||||
"leg_destination": entry.destination,
|
||||
"leg_begin_delay": entry.beginDelayMinutes ?? 0,
|
||||
if (entry.endDelayMinutes != null) "leg_end_delay": entry.endDelayMinutes,
|
||||
"locos": locosPayload,
|
||||
"share_user_ids": <String>[],
|
||||
};
|
||||
|
||||
dynamic response;
|
||||
if (hasRoute) {
|
||||
response = await api.post(
|
||||
'/add',
|
||||
{
|
||||
...payload,
|
||||
"leg_route": entry.route,
|
||||
"leg_mileage": entry.mileage,
|
||||
},
|
||||
);
|
||||
} else {
|
||||
response = await api.post(
|
||||
'/add/manual',
|
||||
{
|
||||
...payload,
|
||||
"leg_start": entry.start,
|
||||
"leg_end": entry.end,
|
||||
"leg_distance": entry.mileage,
|
||||
"isKilometers": false,
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
final legId = _parseNullableInt(
|
||||
response is Map ? response['leg_id'] : null,
|
||||
);
|
||||
if (legId != null) return legId;
|
||||
return null;
|
||||
}
|
||||
|
||||
int? _parseNullableInt(dynamic value) {
|
||||
if (value is int) return value;
|
||||
if (value is num) return value.toInt();
|
||||
if (value is String) return int.tryParse(value);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
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 && n.channel.toLowerCase() != 'web')
|
||||
.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();
|
||||
}
|
||||
}
|
||||
}
|
||||
62
lib/services/data_service/data_service_stats.dart
Normal file
@@ -0,0 +1,62 @@
|
||||
part of 'data_service.dart';
|
||||
|
||||
extension DataServiceStats on DataService {
|
||||
Future<void> fetchAboutStats({bool force = false}) async {
|
||||
if (_isAboutStatsLoading) return;
|
||||
if (!force && _aboutStats != null) return;
|
||||
_isAboutStatsLoading = true;
|
||||
_notifyAsync();
|
||||
try {
|
||||
final json = await api.get('/stats/about');
|
||||
if (json is Map<String, dynamic>) {
|
||||
_aboutStats = StatsAbout.fromJson(json);
|
||||
} else if (json is Map) {
|
||||
_aboutStats = StatsAbout.fromJson(
|
||||
json.map((key, value) => MapEntry(key.toString(), value)),
|
||||
);
|
||||
} else {
|
||||
throw Exception('Unexpected stats response: $json');
|
||||
}
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch about stats: $e');
|
||||
_aboutStats = null;
|
||||
} finally {
|
||||
_isAboutStatsLoading = false;
|
||||
_notifyAsync();
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> fetchFriendsLeaderboard() async {
|
||||
if (_isFriendsLeaderboardLoading) return;
|
||||
_isFriendsLeaderboardLoading = true;
|
||||
_notifyAsync();
|
||||
try {
|
||||
final json = await api.get('/stats/leaderboard/friends');
|
||||
List<dynamic>? list;
|
||||
if (json is List) {
|
||||
list = json;
|
||||
} else if (json is Map) {
|
||||
for (final key in ['leaderboard', 'data', 'items', 'results']) {
|
||||
final value = json[key];
|
||||
if (value is List) {
|
||||
list = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
_friendsLeaderboard = list
|
||||
?.whereType<Map>()
|
||||
.map((e) => LeaderboardEntry.fromJson(
|
||||
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||
))
|
||||
.toList() ??
|
||||
const [];
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch friends leaderboard: $e');
|
||||
_friendsLeaderboard = [];
|
||||
} finally {
|
||||
_isFriendsLeaderboardLoading = false;
|
||||
_notifyAsync();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -13,7 +13,7 @@ extension DataServiceTraction on DataService {
|
||||
Future<void> fetchTraction({
|
||||
bool hadOnly = false,
|
||||
int offset = 0,
|
||||
int limit = 50,
|
||||
int limit = 100,
|
||||
String? locoClass,
|
||||
String? locoNumber,
|
||||
bool mileageFirst = true,
|
||||
|
||||
@@ -4,16 +4,27 @@ extension DataServiceTrips on DataService {
|
||||
Future<void> fetchTripDetails() async {
|
||||
_isTripDetailsLoading = true;
|
||||
try {
|
||||
final json = await api.get('/trips/legs-and-stats');
|
||||
if (json is List) {
|
||||
final tripMap = json.map((e) => TripDetail.fromJson(e)).toList();
|
||||
_tripDetails = [...tripMap]..sort((a, b) => b.id.compareTo(a.id));
|
||||
} else {
|
||||
_tripDetails = [];
|
||||
}
|
||||
final json = await api.get('/trips/info');
|
||||
final tripDetails = _parseTripInfoList(json);
|
||||
_tripDetails = [...tripDetails]..sort(TripDetail.compareByDateDesc);
|
||||
_tripList = tripDetails
|
||||
.map(
|
||||
(detail) => TripSummary(
|
||||
tripId: detail.id,
|
||||
tripName: detail.name,
|
||||
tripMileage: detail.mileage,
|
||||
legCount: detail.legCount,
|
||||
locoStats: detail.locoStats,
|
||||
startDate: detail.startDate,
|
||||
endDate: detail.endDate,
|
||||
),
|
||||
)
|
||||
.toList()
|
||||
..sort(TripSummary.compareByDateDesc);
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch trip_map: $e');
|
||||
_tripDetails = [];
|
||||
_tripList = [];
|
||||
} finally {
|
||||
_isTripDetailsLoading = false;
|
||||
_notifyAsync();
|
||||
@@ -23,55 +34,24 @@ extension DataServiceTrips on DataService {
|
||||
Future<List<TripLocoStat>> fetchTripLocoStats(int tripId) async {
|
||||
try {
|
||||
final json = await api.get('/trips/stats/$tripId');
|
||||
return _parseTripLocoStats(json);
|
||||
return TripLocoStat.listFromJson(json);
|
||||
} catch (e) {
|
||||
debugPrint('Failed to fetch trip loco stats: $e');
|
||||
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 {
|
||||
try {
|
||||
final json = await api.get('/trips/mileage');
|
||||
Iterable<dynamic>? raw;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
final json = await api.get('/trips/info');
|
||||
final raw = _extractTrips(json);
|
||||
if (raw != null) {
|
||||
final tripMap = raw
|
||||
.whereType<Map<String, dynamic>>()
|
||||
.map((e) => TripSummary.fromJson(e))
|
||||
.toList();
|
||||
|
||||
_tripList = [...tripMap]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||
_tripList = [...tripMap]..sort(TripSummary.compareByDateDesc);
|
||||
} else {
|
||||
debugPrint('Unexpected trip list response: $json');
|
||||
_tripList = [];
|
||||
@@ -105,7 +85,7 @@ extension DataServiceTrips on DataService {
|
||||
.map((e) => TripSummary.fromJson(e))
|
||||
.toList();
|
||||
|
||||
_tripList = [...tripMap]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||
_tripList = [...tripMap]..sort(TripSummary.compareByDateDesc);
|
||||
} else {
|
||||
debugPrint('Unexpected trip list response: $json');
|
||||
_tripList = [];
|
||||
@@ -119,14 +99,35 @@ extension DataServiceTrips on DataService {
|
||||
}
|
||||
|
||||
void upsertTripSummary(TripSummary trip) {
|
||||
final existingIndex =
|
||||
_tripList.indexWhere((element) => element.tripId == trip.tripId);
|
||||
final existingIndex = _tripList.indexWhere(
|
||||
(element) => element.tripId == trip.tripId,
|
||||
);
|
||||
if (existingIndex >= 0) {
|
||||
_tripList[existingIndex] = trip;
|
||||
} else {
|
||||
_tripList = [trip, ..._tripList];
|
||||
}
|
||||
_tripList.sort((a, b) => b.tripId.compareTo(a.tripId));
|
||||
_tripList.sort(TripSummary.compareByDateDesc);
|
||||
_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();
|
||||
}
|
||||
}
|
||||
|
||||
211
lib/services/distance_unit_service.dart
Normal file
@@ -0,0 +1,211 @@
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
|
||||
enum DistanceUnit {
|
||||
milesDecimal,
|
||||
milesChains,
|
||||
kilometers,
|
||||
}
|
||||
|
||||
extension DistanceUnitLabels on DistanceUnit {
|
||||
String get label {
|
||||
switch (this) {
|
||||
case DistanceUnit.milesDecimal:
|
||||
return 'Miles (decimal)';
|
||||
case DistanceUnit.milesChains:
|
||||
return 'Miles & chains';
|
||||
case DistanceUnit.kilometers:
|
||||
return 'Kilometers';
|
||||
}
|
||||
}
|
||||
|
||||
String get shortLabel {
|
||||
switch (this) {
|
||||
case DistanceUnit.milesDecimal:
|
||||
return 'mi';
|
||||
case DistanceUnit.milesChains:
|
||||
return 'm.ch';
|
||||
case DistanceUnit.kilometers:
|
||||
return 'km';
|
||||
}
|
||||
}
|
||||
|
||||
String get _prefsValue => toString().split('.').last;
|
||||
|
||||
static DistanceUnit fromPrefs(String raw) {
|
||||
return DistanceUnit.values.firstWhere(
|
||||
(u) => u._prefsValue == raw,
|
||||
orElse: () => DistanceUnit.milesDecimal,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class DistanceUnitService extends ChangeNotifier {
|
||||
static const _prefsKey = 'distance_unit';
|
||||
static const double kmPerMile = 1.609344;
|
||||
static const double chainsPerMile = 80.0;
|
||||
|
||||
DistanceUnitService() {
|
||||
_load();
|
||||
}
|
||||
|
||||
DistanceUnit _unit = DistanceUnit.milesDecimal;
|
||||
bool _loaded = false;
|
||||
|
||||
DistanceUnit get unit => _unit;
|
||||
bool get isLoaded => _loaded;
|
||||
|
||||
Future<void> _load() async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
final saved = prefs.getString(_prefsKey);
|
||||
if (saved != null && saved.trim().isNotEmpty) {
|
||||
_unit = DistanceUnitLabels.fromPrefs(saved.trim());
|
||||
}
|
||||
_loaded = true;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
Future<void> setUnit(DistanceUnit unit) async {
|
||||
_unit = unit;
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
await prefs.setString(_prefsKey, unit._prefsValue);
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
double? milesFromInput(String input) =>
|
||||
DistanceFormatter(_unit).parseInputMiles(input);
|
||||
|
||||
String format(double miles,
|
||||
{int decimals = 1, bool includeUnit = true}) =>
|
||||
DistanceFormatter(_unit)
|
||||
.format(miles, decimals: decimals, includeUnit: includeUnit);
|
||||
|
||||
double toDisplay(double miles, {int decimals = 1}) =>
|
||||
DistanceFormatter(_unit).convertMiles(miles, decimals: decimals);
|
||||
}
|
||||
|
||||
class DistanceFormatter {
|
||||
DistanceFormatter(this.unit);
|
||||
|
||||
final DistanceUnit unit;
|
||||
|
||||
String format(double miles,
|
||||
{int decimals = 1, bool includeUnit = true}) {
|
||||
decimals = decimals.clamp(1, 2);
|
||||
if (unit == DistanceUnit.milesChains) {
|
||||
// Always show chains with two decimals.
|
||||
decimals = 2;
|
||||
}
|
||||
switch (unit) {
|
||||
case DistanceUnit.milesDecimal:
|
||||
final value = _numberFormat(decimals).format(miles);
|
||||
return includeUnit ? '$value mi' : value;
|
||||
case DistanceUnit.kilometers:
|
||||
final kms = miles * DistanceUnitService.kmPerMile;
|
||||
final value = _numberFormat(decimals).format(kms);
|
||||
return includeUnit ? '$value km' : value;
|
||||
case DistanceUnit.milesChains:
|
||||
final value = _formatMilesChains(miles);
|
||||
return includeUnit ? '$value mi' : value;
|
||||
}
|
||||
}
|
||||
|
||||
double convertMiles(double miles, {int decimals = 1}) {
|
||||
decimals = decimals.clamp(1, 2);
|
||||
switch (unit) {
|
||||
case DistanceUnit.milesDecimal:
|
||||
return double.parse(miles.toStringAsFixed(decimals));
|
||||
case DistanceUnit.kilometers:
|
||||
final kms = miles * DistanceUnitService.kmPerMile;
|
||||
return double.parse(kms.toStringAsFixed(decimals));
|
||||
case DistanceUnit.milesChains:
|
||||
// Return miles again; chains representation handled by format.
|
||||
return double.parse(miles.toStringAsFixed(decimals));
|
||||
}
|
||||
}
|
||||
|
||||
double milesFromDisplayValue(double value) {
|
||||
switch (unit) {
|
||||
case DistanceUnit.milesDecimal:
|
||||
return value;
|
||||
case DistanceUnit.kilometers:
|
||||
return value / DistanceUnitService.kmPerMile;
|
||||
case DistanceUnit.milesChains:
|
||||
// Value already represents miles when parsed via parseMilesChains.
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
double? parseInputMiles(String input) {
|
||||
final trimmed = input.trim();
|
||||
if (trimmed.isEmpty) return null;
|
||||
switch (unit) {
|
||||
case DistanceUnit.milesDecimal:
|
||||
return double.tryParse(trimmed.replaceAll(',', ''));
|
||||
case DistanceUnit.kilometers:
|
||||
final km = double.tryParse(trimmed.replaceAll(',', ''));
|
||||
if (km == null) return null;
|
||||
return km / DistanceUnitService.kmPerMile;
|
||||
case DistanceUnit.milesChains:
|
||||
return _parseMilesChains(trimmed);
|
||||
}
|
||||
}
|
||||
|
||||
NumberFormat _numberFormat(int decimals) {
|
||||
final pattern =
|
||||
decimals == 1 ? '#,##0.0' : '#,##0.00';
|
||||
return NumberFormat(pattern);
|
||||
}
|
||||
|
||||
String _formatMilesChains(double miles) {
|
||||
final totalChains = miles * DistanceUnitService.chainsPerMile;
|
||||
var milesPart = totalChains ~/ DistanceUnitService.chainsPerMile;
|
||||
final chainRemainder =
|
||||
totalChains - (milesPart * DistanceUnitService.chainsPerMile);
|
||||
|
||||
// Always show chains as two digits (00-79), rounded to the nearest chain.
|
||||
var roundedChains = chainRemainder.roundToDouble();
|
||||
if (roundedChains >= DistanceUnitService.chainsPerMile) {
|
||||
milesPart += 1;
|
||||
roundedChains -= DistanceUnitService.chainsPerMile;
|
||||
}
|
||||
final chainText = NumberFormat('00').format(roundedChains);
|
||||
return '$milesPart.$chainText';
|
||||
}
|
||||
|
||||
double? _parseMilesChains(String raw) {
|
||||
final cleaned = raw
|
||||
.toLowerCase()
|
||||
.replaceAll(',', '')
|
||||
.replaceAll('m', '.')
|
||||
.replaceAll('c', '.')
|
||||
.replaceAll(RegExp(r'\s+'), '.')
|
||||
.replaceAll(RegExp(r'\.+'), '.')
|
||||
.trim();
|
||||
if (cleaned.isEmpty) return null;
|
||||
|
||||
final parts = cleaned.split('.');
|
||||
if (parts.isEmpty) return null;
|
||||
|
||||
final milesPart =
|
||||
int.tryParse(parts[0].isEmpty ? '0' : parts[0]);
|
||||
if (milesPart == null) return null;
|
||||
double chainsPart = 0;
|
||||
if (parts.length >= 2) {
|
||||
final chainRaw = parts
|
||||
.sublist(1)
|
||||
.join()
|
||||
.trim();
|
||||
if (chainRaw.isNotEmpty) {
|
||||
final parsedChains = double.tryParse(chainRaw);
|
||||
if (parsedChains == null) return null;
|
||||
chainsPart = parsedChains;
|
||||
}
|
||||
}
|
||||
final totalMiles =
|
||||
milesPart +
|
||||
(chainsPart / DistanceUnitService.chainsPerMile);
|
||||
return totalMiles;
|
||||
}
|
||||
}
|
||||
@@ -1,37 +1,55 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:dynamic_color/dynamic_color.dart';
|
||||
import 'package:flutter/gestures.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.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_details.dart';
|
||||
import 'package:mileograph_flutter/components/login/login.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_timeline.dart';
|
||||
import 'package:mileograph_flutter/components/pages/logbook.dart';
|
||||
import 'package:mileograph_flutter/components/pages/more.dart';
|
||||
import 'package:mileograph_flutter/components/pages/badges.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/profile.dart';
|
||||
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||
import 'package:mileograph_flutter/components/pages/stats.dart';
|
||||
import 'package:mileograph_flutter/components/pages/traction.dart';
|
||||
import 'package:mileograph_flutter/components/pages/trips.dart';
|
||||
import 'package:mileograph_flutter/components/widgets/friend_request_notification_card.dart';
|
||||
import 'package:mileograph_flutter/components/widgets/leg_share_notification_card.dart';
|
||||
import 'package:mileograph_flutter/objects/objects.dart';
|
||||
import 'package:mileograph_flutter/services/authservice.dart';
|
||||
import 'package:mileograph_flutter/services/data_service.dart';
|
||||
import 'package:mileograph_flutter/services/navigation_guard.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
final GlobalKey<NavigatorState> _shellNavigatorKey = GlobalKey<NavigatorState>();
|
||||
final GlobalKey<NavigatorState> _shellNavigatorKey =
|
||||
GlobalKey<NavigatorState>();
|
||||
|
||||
const List<String> _contentPages = [
|
||||
"/",
|
||||
"/dashboard",
|
||||
"/calculator",
|
||||
"/legs",
|
||||
"/logbook",
|
||||
"/traction",
|
||||
"/trips",
|
||||
"/add",
|
||||
"/more",
|
||||
];
|
||||
|
||||
const int _addTabIndex = 5;
|
||||
const List<String> _defaultTabDestinations = [
|
||||
"/dashboard",
|
||||
"/calculator",
|
||||
"/logbook/entries",
|
||||
"/traction",
|
||||
"/add",
|
||||
"/more",
|
||||
];
|
||||
|
||||
const int _addTabIndex = 4;
|
||||
|
||||
class _NavItem {
|
||||
final String label;
|
||||
@@ -42,18 +60,32 @@ class _NavItem {
|
||||
const List<_NavItem> _navItems = [
|
||||
_NavItem("Home", Icons.home),
|
||||
_NavItem("Calculator", Icons.route),
|
||||
_NavItem("Entries", Icons.list),
|
||||
_NavItem("Logbook", Icons.menu_book),
|
||||
_NavItem("Traction", Icons.train),
|
||||
_NavItem("Trips", Icons.book),
|
||||
_NavItem("Add", Icons.add),
|
||||
_NavItem("More", Icons.more_horiz),
|
||||
];
|
||||
|
||||
int tabIndexForPath(String path) {
|
||||
final newIndex = _contentPages.indexWhere((routePath) {
|
||||
if (path == routePath) return true;
|
||||
if (routePath == '/') return path == '/';
|
||||
return path.startsWith('$routePath/');
|
||||
});
|
||||
var matchPath = path;
|
||||
if (matchPath == '/') matchPath = '/dashboard';
|
||||
if (matchPath.startsWith('/dashboard')) return 0;
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -81,6 +113,7 @@ class _MyAppState extends State<MyApp> {
|
||||
_routerInitialized = true;
|
||||
final auth = context.read<AuthService>();
|
||||
_router = GoRouter(
|
||||
initialLocation: '/dashboard',
|
||||
refreshListenable: auth,
|
||||
redirect: (context, state) {
|
||||
final loggedIn = auth.isLoggedIn;
|
||||
@@ -88,29 +121,59 @@ class _MyAppState extends State<MyApp> {
|
||||
final atSettings = state.uri.toString() == '/settings';
|
||||
|
||||
if (!loggedIn && !loggingIn && !atSettings) return '/login';
|
||||
if (loggedIn && loggingIn) return '/';
|
||||
if (loggedIn && loggingIn) return '/dashboard';
|
||||
return null;
|
||||
},
|
||||
routes: [
|
||||
GoRoute(path: '/', redirect: (context, state) => '/dashboard'),
|
||||
ShellRoute(
|
||||
navigatorKey: _shellNavigatorKey,
|
||||
builder: (context, state, child) => MyHomePage(child: child),
|
||||
routes: [
|
||||
GoRoute(path: '/', builder: (context, state) => const Dashboard()),
|
||||
GoRoute(
|
||||
path: '/calculator',
|
||||
builder: (context, state) => CalculatorPage(),
|
||||
path: '/dashboard',
|
||||
builder: (context, state) => const Dashboard(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/calculator/details',
|
||||
path: '/calculator',
|
||||
builder: (context, state) => const CalculatorPage(),
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: 'details',
|
||||
builder: (context, state) =>
|
||||
CalculatorDetailsPage(result: state.extra),
|
||||
),
|
||||
GoRoute(path: '/legs', builder: (context, state) => LegsPage()),
|
||||
],
|
||||
),
|
||||
GoRoute(
|
||||
path: '/logbook',
|
||||
redirect: (context, state) => '/logbook/entries',
|
||||
),
|
||||
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: '/traction',
|
||||
builder: (context, state) => TractionPage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/profile',
|
||||
builder: (context, state) => const ProfilePage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/traction/:id/timeline',
|
||||
builder: (_, state) {
|
||||
@@ -147,8 +210,39 @@ class _MyAppState extends State<MyApp> {
|
||||
path: '/traction/new',
|
||||
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) {
|
||||
final extra = state.extra;
|
||||
return NewEntryPage(
|
||||
legShare: extra is LegShareData ? extra : null,
|
||||
);
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
path: '/more',
|
||||
builder: (context, state) => const MorePage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/more/profile',
|
||||
builder: (context, state) => const ProfilePage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/more/badges',
|
||||
builder: (context, state) => const BadgesPage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/more/stats',
|
||||
builder: (context, state) => const StatsPage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/more/settings',
|
||||
builder: (context, state) => const SettingsPage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/more/admin',
|
||||
builder: (context, state) => const AdminPage(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/legs/edit/:id',
|
||||
builder: (_, state) {
|
||||
@@ -159,7 +253,10 @@ class _MyAppState extends State<MyApp> {
|
||||
),
|
||||
],
|
||||
),
|
||||
GoRoute(path: '/login', builder: (context, state) => const LoginScreen()),
|
||||
GoRoute(
|
||||
path: '/login',
|
||||
builder: (context, state) => const LoginScreen(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/settings',
|
||||
builder: (context, state) => const SettingsPage(),
|
||||
@@ -207,24 +304,32 @@ class MyHomePage extends StatefulWidget {
|
||||
}
|
||||
|
||||
class _MyHomePageState extends State<MyHomePage> {
|
||||
List<String> get contentPages => _contentPages;
|
||||
List<String> get tabDestinations => _defaultTabDestinations;
|
||||
|
||||
Future<void> _onItemTapped(int index, int currentIndex) async {
|
||||
if (index < 0 || index >= contentPages.length || index == currentIndex) {
|
||||
if (index < 0 || index >= tabDestinations.length) {
|
||||
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 {
|
||||
if (!mounted) return;
|
||||
_navigateToIndex(index);
|
||||
});
|
||||
}
|
||||
|
||||
final List<int> _history = [];
|
||||
final List<String> _history = [];
|
||||
int _historyPosition = -1;
|
||||
final List<int> _forwardHistory = [];
|
||||
final List<String> _forwardHistory = [];
|
||||
bool _suppressRecord = false;
|
||||
|
||||
bool _fetched = false;
|
||||
bool _railCollapsed = false;
|
||||
Timer? _notificationsTimer;
|
||||
|
||||
@override
|
||||
void didChangeDependencies() {
|
||||
@@ -258,21 +363,50 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
if (data.tripDetails.isEmpty) {
|
||||
data.fetchTripDetails();
|
||||
}
|
||||
if (data.notifications.isEmpty) {
|
||||
data.fetchNotifications();
|
||||
}
|
||||
if (data.friendships.isEmpty && !data.isFriendshipsLoading) {
|
||||
data.fetchFriendships();
|
||||
}
|
||||
if ((data.pendingIncoming.isEmpty && data.pendingOutgoing.isEmpty) &&
|
||||
!data.isPendingFriendshipsLoading) {
|
||||
data.fetchPendingFriendships();
|
||||
}
|
||||
_startNotificationPolling();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
void _startNotificationPolling() {
|
||||
_notificationsTimer?.cancel();
|
||||
final auth = context.read<AuthService>();
|
||||
if (!auth.isLoggedIn) return;
|
||||
_notificationsTimer = Timer.periodic(const Duration(minutes: 2), (_) async {
|
||||
if (!mounted) return;
|
||||
final auth = context.read<AuthService>();
|
||||
if (!auth.isLoggedIn) return;
|
||||
final data = context.read<DataService>();
|
||||
try {
|
||||
await data.fetchNotifications();
|
||||
} catch (_) {
|
||||
// Errors already logged inside data service.
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final uri = GoRouterState.of(context).uri;
|
||||
final pageIndex = tabIndexForPath(uri.path);
|
||||
_syncHistory(pageIndex);
|
||||
_syncHistory(uri.path);
|
||||
if (pageIndex != _addTabIndex) {
|
||||
NavigationGuard.unregister();
|
||||
}
|
||||
final homepageReady = context.select<DataService, bool>(
|
||||
(data) => data.homepageStats != null || !data.isHomepageLoading,
|
||||
);
|
||||
final data = context.watch<DataService>();
|
||||
final auth = context.read<AuthService>();
|
||||
|
||||
final currentPage = homepageReady
|
||||
@@ -282,7 +416,9 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
final scaffold = LayoutBuilder(
|
||||
builder: (context, constraints) {
|
||||
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
|
||||
.map(
|
||||
(item) => NavigationRailDestination(
|
||||
@@ -307,7 +443,10 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
TextSpan(
|
||||
children: const [
|
||||
TextSpan(text: "Mile"),
|
||||
TextSpan(text: "O", style: TextStyle(color: Colors.red)),
|
||||
TextSpan(
|
||||
text: "O",
|
||||
style: TextStyle(color: Colors.red),
|
||||
),
|
||||
TextSpan(text: "graph"),
|
||||
],
|
||||
style: const TextStyle(
|
||||
@@ -318,16 +457,21 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
const IconButton(
|
||||
onPressed: null,
|
||||
icon: Icon(Icons.account_circle),
|
||||
_buildNotificationAction(context, data),
|
||||
IconButton(
|
||||
tooltip: 'Profile',
|
||||
onPressed: () => context.go('/more/profile'),
|
||||
icon: const Icon(Icons.person),
|
||||
),
|
||||
IconButton(
|
||||
tooltip: 'Settings',
|
||||
onPressed: () => context.go('/settings'),
|
||||
onPressed: () => context.go('/more/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
|
||||
@@ -342,6 +486,14 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
? Row(
|
||||
children: [
|
||||
SafeArea(
|
||||
child: LayoutBuilder(
|
||||
builder: (ctx, _) {
|
||||
return Stack(
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.only(
|
||||
bottom: showRailToggle ? 56.0 : 0.0,
|
||||
),
|
||||
child: NavigationRail(
|
||||
selectedIndex: pageIndex,
|
||||
extended: railExtended,
|
||||
@@ -353,6 +505,18 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
destinations: navRailDestinations,
|
||||
),
|
||||
),
|
||||
if (showRailToggle)
|
||||
Positioned(
|
||||
left: 0,
|
||||
right: 0,
|
||||
bottom: 8,
|
||||
child: _buildRailToggleButton(railExtended),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
const VerticalDivider(width: 1),
|
||||
Expanded(child: currentPage),
|
||||
],
|
||||
@@ -365,7 +529,8 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
return Shortcuts(
|
||||
shortcuts: <LogicalKeySet, Intent>{
|
||||
LogicalKeySet(LogicalKeyboardKey.browserBack): const _BackIntent(),
|
||||
LogicalKeySet(LogicalKeyboardKey.browserForward): const _ForwardIntent(),
|
||||
LogicalKeySet(LogicalKeyboardKey.browserForward):
|
||||
const _ForwardIntent(),
|
||||
},
|
||||
child: Actions(
|
||||
actions: {
|
||||
@@ -391,7 +556,10 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
canPop: false,
|
||||
onPopInvokedWithResult: (didPop, _) async {
|
||||
if (didPop) return;
|
||||
await _handleBackNavigation(allowExit: true, recordForward: false);
|
||||
await _handleBackNavigation(
|
||||
allowExit: true,
|
||||
recordForward: false,
|
||||
);
|
||||
},
|
||||
child: scaffold,
|
||||
),
|
||||
@@ -410,31 +578,344 @@ 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 dismissibleIds = notifications
|
||||
.where(
|
||||
(n) =>
|
||||
!_isFriendRequestNotification(n) && !_isLegShareNotification(n),
|
||||
)
|
||||
.map((e) => e.id)
|
||||
.toList();
|
||||
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];
|
||||
final isFriendRequest = _isFriendRequestNotification(item);
|
||||
final isLegShare = _isLegShareNotification(item);
|
||||
final isSpecial = isFriendRequest || isLegShare;
|
||||
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(
|
||||
isFriendRequest || isLegShare
|
||||
? isFriendRequest
|
||||
? 'Accept to share entries'
|
||||
: 'Shared entry details below.'
|
||||
: 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,
|
||||
);
|
||||
}(),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
if (!isSpecial) ...[
|
||||
const SizedBox(width: 8),
|
||||
TextButton(
|
||||
onPressed: () =>
|
||||
_dismissNotifications(context, [item.id]),
|
||||
child: const Text('Dismiss'),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
if (isFriendRequest)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
child: FriendRequestNotificationCard(
|
||||
notification: item,
|
||||
),
|
||||
),
|
||||
if (isLegShare)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
child: LegShareNotificationCard(notification: item),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
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, dismissibleIds),
|
||||
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';
|
||||
}
|
||||
|
||||
bool _isFriendRequestNotification(UserNotification notification) {
|
||||
final type = notification.type.trim().toLowerCase();
|
||||
final channel = notification.channel.trim().toLowerCase();
|
||||
final title = notification.title.trim().toLowerCase();
|
||||
bool matchesChannel =
|
||||
channel == 'friend_request' || channel == 'friend-request';
|
||||
if (!matchesChannel) {
|
||||
matchesChannel = channel.contains('friend_request') ||
|
||||
channel.contains('friend-request') ||
|
||||
channel.contains('friend');
|
||||
}
|
||||
return matchesChannel ||
|
||||
type == 'friend_request' ||
|
||||
type == 'friend-request' ||
|
||||
title.contains('friend request');
|
||||
}
|
||||
|
||||
bool _isLegShareNotification(UserNotification notification) {
|
||||
final channel = notification.channel.trim().toLowerCase();
|
||||
final type = notification.type.trim().toLowerCase();
|
||||
return channel.contains('leg_share') || type.contains('leg_share');
|
||||
}
|
||||
|
||||
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({
|
||||
bool allowExit = false,
|
||||
bool recordForward = false,
|
||||
}) async {
|
||||
final pageIndex = _currentPageIndex;
|
||||
final currentPath = GoRouterState.of(context).uri.path;
|
||||
final shellNav = _shellNavigatorKey.currentState;
|
||||
if (shellNav != null && shellNav.canPop()) {
|
||||
if (recordForward) _pushForward(currentPath);
|
||||
_alignHistoryAfterPop(currentPath);
|
||||
shellNav.pop();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (_historyPosition > 0) {
|
||||
if (recordForward) _pushForward(pageIndex);
|
||||
if (recordForward) _pushForward(currentPath);
|
||||
_historyPosition -= 1;
|
||||
_suppressRecord = true;
|
||||
context.go(contentPages[_history[_historyPosition]]);
|
||||
context.go(_history[_historyPosition]);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (pageIndex != 0) {
|
||||
if (recordForward) _pushForward(pageIndex);
|
||||
final homePath = tabDestinations.first;
|
||||
if (currentPath != homePath) {
|
||||
if (recordForward) _pushForward(currentPath);
|
||||
_suppressRecord = true;
|
||||
context.go(contentPages[0]);
|
||||
context.go(homePath);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -448,35 +929,48 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
|
||||
Future<bool> _handleForwardNavigation() async {
|
||||
if (_forwardHistory.isEmpty) return false;
|
||||
final nextTab = _forwardHistory.removeLast();
|
||||
final nextPath = _forwardHistory.removeLast();
|
||||
|
||||
// Move cursor forward, keeping history in sync.
|
||||
if (_historyPosition < _history.length - 1) {
|
||||
_historyPosition += 1;
|
||||
_history[_historyPosition] = nextTab;
|
||||
_history[_historyPosition] = nextPath;
|
||||
if (_historyPosition < _history.length - 1) {
|
||||
_history.removeRange(_historyPosition + 1, _history.length);
|
||||
}
|
||||
} else {
|
||||
_history.add(nextTab);
|
||||
_history.add(nextPath);
|
||||
_historyPosition = _history.length - 1;
|
||||
}
|
||||
|
||||
_suppressRecord = true;
|
||||
if (!mounted) return false;
|
||||
context.go(contentPages[nextTab]);
|
||||
context.go(nextPath);
|
||||
return true;
|
||||
}
|
||||
|
||||
void _pushForward(int pageIndex) {
|
||||
if (_forwardHistory.isEmpty || _forwardHistory.last != pageIndex) {
|
||||
_forwardHistory.add(pageIndex);
|
||||
void _pushForward(String path) {
|
||||
if (_forwardHistory.isEmpty || _forwardHistory.last != path) {
|
||||
_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) {
|
||||
_history.add(pageIndex);
|
||||
_history.add(path);
|
||||
_historyPosition = 0;
|
||||
return;
|
||||
}
|
||||
@@ -486,13 +980,13 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
}
|
||||
if (_historyPosition >= 0 &&
|
||||
_historyPosition < _history.length &&
|
||||
_history[_historyPosition] == pageIndex) {
|
||||
_history[_historyPosition] == path) {
|
||||
return;
|
||||
}
|
||||
if (_historyPosition < _history.length - 1) {
|
||||
_history.removeRange(_historyPosition + 1, _history.length);
|
||||
}
|
||||
_history.add(pageIndex);
|
||||
_history.add(path);
|
||||
_historyPosition = _history.length - 1;
|
||||
_forwardHistory.clear();
|
||||
}
|
||||
@@ -500,6 +994,12 @@ class _MyHomePageState extends State<MyHomePage> {
|
||||
void _navigateToIndex(int index) {
|
||||
_suppressRecord = false;
|
||||
_forwardHistory.clear();
|
||||
context.go(contentPages[index]);
|
||||
context.go(tabDestinations[index]);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_notificationsTimer?.cancel();
|
||||
super.dispose();
|
||||
}
|
||||
}
|
||||
|
||||
13
pubspec.yaml
@@ -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
|
||||
# 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.
|
||||
version: 0.3.4+1
|
||||
version: 0.6.1+4
|
||||
|
||||
environment:
|
||||
sdk: ^3.8.1
|
||||
@@ -102,7 +102,16 @@ flutter:
|
||||
flutter_launcher_icons:
|
||||
android: true
|
||||
ios: true
|
||||
remove_alpha_ios: true
|
||||
linux:
|
||||
generate: true
|
||||
web:
|
||||
generate: true
|
||||
background_colour: "#000000"
|
||||
theme_color: "#0175C2"
|
||||
windows:
|
||||
generate: true
|
||||
image_path: assets/icons/app_icon.png
|
||||
adaptive_icon_background: "#ffffff"
|
||||
adaptive_icon_background: "#000000"
|
||||
adaptive_icon_foreground: assets/icons/app_icon.png
|
||||
min_sdk_android: 21
|
||||
|
||||
@@ -8,13 +8,12 @@ void main() {
|
||||
expect(tabIndexForPath('/calculator/details'), 1);
|
||||
expect(tabIndexForPath('/legs'), 2);
|
||||
expect(tabIndexForPath('/traction/12/timeline'), 3);
|
||||
expect(tabIndexForPath('/trips'), 4);
|
||||
expect(tabIndexForPath('/add'), 5);
|
||||
expect(tabIndexForPath('/trips'), 2);
|
||||
expect(tabIndexForPath('/add'), 4);
|
||||
});
|
||||
|
||||
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);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
BIN
web/favicon.png
|
Before Width: | Height: | Size: 917 B After Width: | Height: | Size: 304 B |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 6.5 KiB |
@@ -18,18 +18,19 @@
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
||||
<meta name="description" content="A new Flutter project.">
|
||||
<meta name="description" content="Log and explore your Mileograph journeys.">
|
||||
<meta name="theme-color" content="#0175C2">
|
||||
|
||||
<!-- iOS meta tags & icons -->
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-title" content="mileograph_flutter">
|
||||
<meta name="apple-mobile-web-app-title" content="Mileograph">
|
||||
<link rel="apple-touch-icon" href="icons/Icon-192.png">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/png" href="favicon.png"/>
|
||||
|
||||
<title>mileograph_flutter</title>
|
||||
<title>Mileograph</title>
|
||||
<link rel="manifest" href="manifest.json">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"name": "mileograph_flutter",
|
||||
"short_name": "mileograph_flutter",
|
||||
"start_url": ".",
|
||||
"name": "Mileograph",
|
||||
"short_name": "Mileograph",
|
||||
"start_url": "/",
|
||||
"scope": "/",
|
||||
"display": "standalone",
|
||||
"background_color": "#0175C2",
|
||||
"theme_color": "#0175C2",
|
||||
"description": "A new Flutter project.",
|
||||
"description": "Log and explore your Mileograph journeys.",
|
||||
"orientation": "portrait-primary",
|
||||
"prefer_related_applications": false,
|
||||
"icons": [
|
||||
|
||||
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 711 B |