Compare commits
31 Commits
v0.2.3-dev
...
v0.6.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 89b760508d | |||
| 42af39b442 | |||
| 2fa66ff9c6 | |||
| 29cecf0ded | |||
| f9c392bb07 | |||
| e5b145b4b2 | |||
| 59458484aa | |||
| 648872acf1 | |||
| b427ed0bd3 | |||
| 66a1d149f0 | |||
| cea483ae0b | |||
| 7139cfcc99 | |||
| 1c15546b66 | |||
| e1ad1ea685 | |||
| 9b307ab56b | |||
| 8cf43c76e2 | |||
| 2600e90efa | |||
| a9bc6c306c | |||
| 54026aa93a | |||
| 0971124fd4 | |||
| 4bd6f0bbed | |||
| 44d79e7c28 | |||
| 29959f7580 | |||
| d5d204dd19 | |||
| 950978b021 | |||
| dc5ed2567f | |||
| b1a8f7baf4 | |||
| 7feb672e7e | |||
| 45d543498f | |||
| 63b545c7a3 | |||
| 587933fa50 |
@@ -10,8 +10,9 @@ env:
|
|||||||
JAVA_VERSION: "17"
|
JAVA_VERSION: "17"
|
||||||
ANDROID_SDK_ROOT: "${{ github.workspace }}/android-sdk"
|
ANDROID_SDK_ROOT: "${{ github.workspace }}/android-sdk"
|
||||||
FLUTTER_VERSION: "3.38.5"
|
FLUTTER_VERSION: "3.38.5"
|
||||||
BUILD_WINDOWS: "false" # set to "true" when you actually want Windows builds
|
BUILD_WINDOWS: "false" # Windows build disabled (no runner available)
|
||||||
GITEA_BASE_URL: https://git.tgj.services
|
GITEA_BASE_URL: https://git.tgj.services
|
||||||
|
WEB_IMAGE: "git.tgj.services/petegregoryy/mileograph-web"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
meta:
|
meta:
|
||||||
@@ -20,6 +21,7 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
base_version: ${{ steps.meta.outputs.base }}
|
base_version: ${{ steps.meta.outputs.base }}
|
||||||
release_tag: ${{ steps.meta.outputs.release_tag }}
|
release_tag: ${{ steps.meta.outputs.release_tag }}
|
||||||
|
dev_suffix: ${{ steps.meta.outputs.dev_suffix }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -29,12 +31,24 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
RAW_VERSION=$(awk '/^version:/{print $2}' pubspec.yaml)
|
RAW_VERSION=$(awk '/^version:/{print $2}' pubspec.yaml)
|
||||||
BASE_VERSION=${RAW_VERSION%%+*}
|
BASE_VERSION=${RAW_VERSION%%+*}
|
||||||
TAG="v${BASE_VERSION}"
|
VERSION="${BASE_VERSION}"
|
||||||
|
TAG="v${VERSION}"
|
||||||
|
DEV_SUFFIX=""
|
||||||
|
|
||||||
if [ "${GITHUB_REF}" = "refs/heads/dev" ]; then
|
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
|
fi
|
||||||
|
|
||||||
echo "base=${BASE_VERSION}" >> "$GITHUB_OUTPUT"
|
echo "base=${BASE_VERSION}" >> "$GITHUB_OUTPUT"
|
||||||
echo "release_tag=${TAG}" >> "$GITHUB_OUTPUT"
|
echo "release_tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "dev_suffix=${DEV_SUFFIX}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Fail if release already exists
|
- name: Fail if release already exists
|
||||||
env:
|
env:
|
||||||
@@ -110,6 +124,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
FLUTTER_HOME="$HOME/flutter"
|
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
|
if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
||||||
rm -rf "$FLUTTER_HOME"
|
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"
|
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)
|
- name: Build Android App Bundle (release)
|
||||||
run: flutter build appbundle --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
|
- name: Download bundletool
|
||||||
run: |
|
run: |
|
||||||
BUNDLETOOL_VERSION=1.15.6
|
BUNDLETOOL_VERSION=1.15.6
|
||||||
@@ -185,6 +213,12 @@ jobs:
|
|||||||
name: android-apk
|
name: android-apk
|
||||||
path: mileograph-${{ needs.meta.outputs.base_version }}.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:
|
linux-build:
|
||||||
runs-on:
|
runs-on:
|
||||||
- mileograph
|
- mileograph
|
||||||
@@ -207,6 +241,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
FLUTTER_HOME="$HOME/flutter"
|
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
|
if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
||||||
rm -rf "$FLUTTER_HOME"
|
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"
|
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
|
name: linux-bundle
|
||||||
path: app-linux-x64.tar.gz
|
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:
|
release-dev:
|
||||||
runs-on:
|
runs-on:
|
||||||
- mileograph
|
- mileograph
|
||||||
@@ -245,6 +383,7 @@ jobs:
|
|||||||
- meta
|
- meta
|
||||||
- android-build
|
- android-build
|
||||||
- linux-build
|
- linux-build
|
||||||
|
- web-build
|
||||||
steps:
|
steps:
|
||||||
- name: Install jq
|
- name: Install jq
|
||||||
run: |
|
run: |
|
||||||
@@ -262,17 +401,35 @@ jobs:
|
|||||||
name: android-apk
|
name: android-apk
|
||||||
path: artifacts
|
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
|
- name: Prepare APK and tag
|
||||||
if: ${{ github.ref == 'refs/heads/dev' }}
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
id: bundle
|
id: bundle
|
||||||
run: |
|
run: |
|
||||||
BASE="${{ needs.meta.outputs.base_version }}"
|
BASE="${{ needs.meta.outputs.base_version }}"
|
||||||
TAG="${{ needs.meta.outputs.release_tag }}"
|
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 "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
|
- name: Create prerelease on Gitea
|
||||||
if: ${{ github.ref == 'refs/heads/dev' }}
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
@@ -313,6 +470,18 @@ jobs:
|
|||||||
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||||
>/dev/null
|
>/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:
|
release-master:
|
||||||
runs-on:
|
runs-on:
|
||||||
- mileograph
|
- mileograph
|
||||||
@@ -320,6 +489,7 @@ jobs:
|
|||||||
- meta
|
- meta
|
||||||
- android-build
|
- android-build
|
||||||
- linux-build
|
- linux-build
|
||||||
|
- web-build
|
||||||
steps:
|
steps:
|
||||||
- name: Install jq
|
- name: Install jq
|
||||||
run: |
|
run: |
|
||||||
@@ -337,6 +507,13 @@ jobs:
|
|||||||
name: android-apk
|
name: android-apk
|
||||||
path: artifacts
|
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
|
- name: Prepare APK and tag
|
||||||
if: ${{ github.ref == 'refs/heads/master' }}
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
id: bundle
|
id: bundle
|
||||||
@@ -346,6 +523,7 @@ jobs:
|
|||||||
|
|
||||||
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||||
echo "apk=artifacts/mileograph-${BASE}.apk" >> "$GITHUB_OUTPUT"
|
echo "apk=artifacts/mileograph-${BASE}.apk" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "aab=artifacts/mileograph-${BASE}.aab" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Create release on Gitea
|
- name: Create release on Gitea
|
||||||
if: ${{ github.ref == 'refs/heads/master' }}
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
@@ -384,3 +562,15 @@ jobs:
|
|||||||
-F "name=${NAME}" \
|
-F "name=${NAME}" \
|
||||||
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||||
>/dev/null
|
>/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
|
||||||
|
|||||||
4
.vscode/settings.json
vendored
@@ -1 +1,3 @@
|
|||||||
{}
|
{
|
||||||
|
"cmake.ignoreCMakeListsMissing": true
|
||||||
|
}
|
||||||
|
|||||||
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)
|
## Setup
|
||||||
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
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
|
## Running
|
||||||
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
- Debug (mobile/web depending on your toolchain):
|
||||||
samples, guidance on mobile development, and a full API reference.
|
```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
|
import java.util.Properties
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
@@ -22,8 +23,21 @@ val releaseKeyAlias = System.getenv("ANDROID_KEY_ALIAS")
|
|||||||
val releaseKeyPassword = System.getenv("ANDROID_KEY_PASSWORD")
|
val releaseKeyPassword = System.getenv("ANDROID_KEY_PASSWORD")
|
||||||
?: keystoreProperties.getProperty("keyPassword")
|
?: 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(
|
val hasReleaseKeystore = listOf(
|
||||||
releaseStoreFile,
|
releaseStoreFilePath?.path,
|
||||||
releaseStorePassword,
|
releaseStorePassword,
|
||||||
releaseKeyAlias,
|
releaseKeyAlias,
|
||||||
releaseKeyPassword
|
releaseKeyPassword
|
||||||
@@ -31,7 +45,7 @@ val hasReleaseKeystore = listOf(
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.example.mileograph_flutter"
|
namespace = "com.example.mileograph_flutter"
|
||||||
compileSdk = flutter.compileSdkVersion
|
compileSdk = 36
|
||||||
ndkVersion = "27.0.12077973"
|
ndkVersion = "27.0.12077973"
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
@@ -45,11 +59,11 @@ android {
|
|||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
applicationId = "com.example.mileograph_flutter"
|
applicationId = "com.petegregoryy.mileograph_flutter"
|
||||||
// You can update the following values to match your application needs.
|
// You can update the following values to match your application needs.
|
||||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||||
minSdk = flutter.minSdkVersion
|
minSdk = 24
|
||||||
targetSdk = flutter.targetSdkVersion
|
targetSdk = 36
|
||||||
versionCode = flutter.versionCode
|
versionCode = flutter.versionCode
|
||||||
versionName = flutter.versionName
|
versionName = flutter.versionName
|
||||||
}
|
}
|
||||||
@@ -57,7 +71,7 @@ android {
|
|||||||
signingConfigs {
|
signingConfigs {
|
||||||
if (hasReleaseKeystore) {
|
if (hasReleaseKeystore) {
|
||||||
create("release") {
|
create("release") {
|
||||||
storeFile = file(releaseStoreFile!!)
|
storeFile = releaseStoreFilePath
|
||||||
storePassword = releaseStorePassword
|
storePassword = releaseStorePassword
|
||||||
keyAlias = releaseKeyAlias!!
|
keyAlias = releaseKeyAlias!!
|
||||||
keyPassword = releaseKeyPassword
|
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"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<color name="ic_launcher_background">#ffffff</color>
|
<color name="ic_launcher_background">#000000</color>
|
||||||
</resources>
|
</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 |
24
lib/app.dart
@@ -2,6 +2,8 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:mileograph_flutter/services/api_service.dart';
|
import 'package:mileograph_flutter/services/api_service.dart';
|
||||||
import 'package:mileograph_flutter/services/authservice.dart';
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.dart';
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/endpoint_service.dart';
|
||||||
import 'package:mileograph_flutter/ui/app_shell.dart';
|
import 'package:mileograph_flutter/ui/app_shell.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
@@ -12,14 +14,30 @@ class App extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return MultiProvider(
|
return MultiProvider(
|
||||||
providers: [
|
providers: [
|
||||||
Provider<ApiService>(
|
ChangeNotifierProvider<EndpointService>(
|
||||||
create: (_) => ApiService(baseUrl: 'https://mileograph.co.uk/api/v1'),
|
create: (_) => EndpointService(),
|
||||||
|
),
|
||||||
|
ChangeNotifierProvider<DistanceUnitService>(
|
||||||
|
create: (_) => DistanceUnitService(),
|
||||||
|
),
|
||||||
|
ProxyProvider<EndpointService, ApiService>(
|
||||||
|
update: (_, endpoint, api) {
|
||||||
|
final service = api ?? ApiService(baseUrl: endpoint.baseUrl);
|
||||||
|
service.setBaseUrl(endpoint.baseUrl);
|
||||||
|
return service;
|
||||||
|
},
|
||||||
|
create: (_) => ApiService(baseUrl: EndpointService.defaultBaseUrl),
|
||||||
),
|
),
|
||||||
ChangeNotifierProvider<AuthService>(
|
ChangeNotifierProvider<AuthService>(
|
||||||
create: (context) => AuthService(api: context.read<ApiService>()),
|
create: (context) => AuthService(api: context.read<ApiService>()),
|
||||||
),
|
),
|
||||||
ChangeNotifierProvider<DataService>(
|
ChangeNotifierProxyProvider<AuthService, DataService>(
|
||||||
create: (context) => DataService(api: context.read<ApiService>()),
|
create: (context) => DataService(api: context.read<ApiService>()),
|
||||||
|
update: (context, auth, data) {
|
||||||
|
data ??= DataService(api: context.read<ApiService>());
|
||||||
|
data.handleAuthChanged(auth.userId);
|
||||||
|
return data;
|
||||||
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
child: const MyApp(),
|
child: const MyApp(),
|
||||||
|
|||||||
@@ -133,6 +133,11 @@ class RouteCalculator extends StatefulWidget {
|
|||||||
|
|
||||||
class _RouteCalculatorState extends State<RouteCalculator> {
|
class _RouteCalculatorState extends State<RouteCalculator> {
|
||||||
List<Station> allStations = [];
|
List<Station> allStations = [];
|
||||||
|
List<String> _networks = [];
|
||||||
|
List<String> _countries = [];
|
||||||
|
List<String> _selectedNetworks = [];
|
||||||
|
List<String> _selectedCountries = [];
|
||||||
|
bool _loadingStations = false;
|
||||||
|
|
||||||
RouteResult? _routeResult;
|
RouteResult? _routeResult;
|
||||||
RouteResult? get result => _routeResult;
|
RouteResult? get result => _routeResult;
|
||||||
@@ -150,14 +155,31 @@ class _RouteCalculatorState extends State<RouteCalculator> {
|
|||||||
}
|
}
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
||||||
final data = context.read<DataService>();
|
final data = context.read<DataService>();
|
||||||
final result = await data.fetchStations();
|
await data.fetchStationFilters();
|
||||||
if (mounted) {
|
if (!mounted) return;
|
||||||
setState(() => allStations = result);
|
setState(() {
|
||||||
}
|
_networks = data.stationNetworks;
|
||||||
|
_countries = data.stationCountryNetworks.keys.toList();
|
||||||
|
});
|
||||||
|
await _loadStations();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> _loadStations() async {
|
||||||
|
setState(() => _loadingStations = true);
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
final stations = await data.fetchStations(
|
||||||
|
countries: _selectedCountries,
|
||||||
|
networks: _selectedNetworks,
|
||||||
|
);
|
||||||
|
if (!mounted) return;
|
||||||
|
setState(() {
|
||||||
|
allStations = stations;
|
||||||
|
_loadingStations = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> _calculateRoute(List<String> stations) async {
|
Future<void> _calculateRoute(List<String> stations) async {
|
||||||
setState(() {
|
setState(() {
|
||||||
_errorMessage = null;
|
_errorMessage = null;
|
||||||
@@ -215,6 +237,43 @@ class _RouteCalculatorState extends State<RouteCalculator> {
|
|||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
return Column(
|
return Column(
|
||||||
children: [
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 8),
|
||||||
|
child: Wrap(
|
||||||
|
spacing: 12,
|
||||||
|
runSpacing: 12,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
children: [
|
||||||
|
_MultiSelectFilter(
|
||||||
|
label: 'Countries',
|
||||||
|
options: _countries,
|
||||||
|
selected: _selectedCountries,
|
||||||
|
onChanged: (vals) {
|
||||||
|
setState(() => _selectedCountries = vals);
|
||||||
|
_loadStations();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
_MultiSelectFilter(
|
||||||
|
label: 'Networks',
|
||||||
|
options: _networks,
|
||||||
|
selected: _selectedNetworks,
|
||||||
|
onChanged: (vals) {
|
||||||
|
setState(() => _selectedNetworks = vals);
|
||||||
|
_loadStations();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
if (_loadingStations)
|
||||||
|
const Padding(
|
||||||
|
padding: EdgeInsets.only(left: 8.0),
|
||||||
|
child: SizedBox(
|
||||||
|
height: 20,
|
||||||
|
width: 20,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: ReorderableListView(
|
child: ReorderableListView(
|
||||||
buildDefaultDragHandles: false,
|
buildDefaultDragHandles: false,
|
||||||
@@ -300,32 +359,27 @@ class _RouteCalculatorState extends State<RouteCalculator> {
|
|||||||
else
|
else
|
||||||
SizedBox.shrink(),
|
SizedBox.shrink(),
|
||||||
const SizedBox(height: 10),
|
const SizedBox(height: 10),
|
||||||
LayoutBuilder(
|
Padding(
|
||||||
builder: (context, constraints) {
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
||||||
double screenWidth = constraints.maxWidth;
|
child: Wrap(
|
||||||
|
alignment: WrapAlignment.center,
|
||||||
return Padding(
|
spacing: 12,
|
||||||
padding: EdgeInsets.only(right: screenWidth < 450 ? 70 : 0),
|
runSpacing: 8,
|
||||||
child: Row(
|
children: [
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
ElevatedButton.icon(
|
||||||
children: [
|
icon: const Icon(Icons.add),
|
||||||
ElevatedButton.icon(
|
label: const Text('Add Station'),
|
||||||
icon: const Icon(Icons.add),
|
onPressed: _addStation,
|
||||||
label: const Text('Add Station'),
|
|
||||||
onPressed: _addStation,
|
|
||||||
),
|
|
||||||
const SizedBox(width: 16),
|
|
||||||
ElevatedButton.icon(
|
|
||||||
icon: const Icon(Icons.route),
|
|
||||||
label: const Text('Calculate Route'),
|
|
||||||
onPressed: () async {
|
|
||||||
await _calculateRoute(data.stations);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
);
|
ElevatedButton.icon(
|
||||||
},
|
icon: const Icon(Icons.route),
|
||||||
|
label: const Text('Calculate Route'),
|
||||||
|
onPressed: () async {
|
||||||
|
await _calculateRoute(data.stations);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
@@ -350,3 +404,159 @@ Widget debugPanel(List<String> stations) {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _MultiSelectFilter extends StatefulWidget {
|
||||||
|
const _MultiSelectFilter({
|
||||||
|
required this.label,
|
||||||
|
required this.options,
|
||||||
|
required this.selected,
|
||||||
|
required this.onChanged,
|
||||||
|
});
|
||||||
|
|
||||||
|
final String label;
|
||||||
|
final List<String> options;
|
||||||
|
final List<String> selected;
|
||||||
|
final ValueChanged<List<String>> onChanged;
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<_MultiSelectFilter> createState() => _MultiSelectFilterState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _MultiSelectFilterState extends State<_MultiSelectFilter> {
|
||||||
|
late List<String> _tempSelected;
|
||||||
|
String _query = '';
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_tempSelected = List.from(widget.selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void didUpdateWidget(covariant _MultiSelectFilter oldWidget) {
|
||||||
|
super.didUpdateWidget(oldWidget);
|
||||||
|
if (oldWidget.selected != widget.selected) {
|
||||||
|
_tempSelected = List.from(widget.selected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void _openPicker() async {
|
||||||
|
_tempSelected = List.from(widget.selected);
|
||||||
|
_query = '';
|
||||||
|
await showModalBottomSheet<void>(
|
||||||
|
context: context,
|
||||||
|
isScrollControlled: true,
|
||||||
|
builder: (ctx) {
|
||||||
|
return StatefulBuilder(
|
||||||
|
builder: (ctx, setModalState) {
|
||||||
|
final filtered = widget.options
|
||||||
|
.where((opt) =>
|
||||||
|
_query.isEmpty || opt.toLowerCase().contains(_query.toLowerCase()))
|
||||||
|
.toList();
|
||||||
|
return SafeArea(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'Select ${widget.label.toLowerCase()}',
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const Spacer(),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () {
|
||||||
|
setModalState(() {
|
||||||
|
_tempSelected.clear();
|
||||||
|
});
|
||||||
|
Navigator.of(ctx).pop();
|
||||||
|
widget.onChanged(const []);
|
||||||
|
},
|
||||||
|
child: const Text('Clear'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
TextField(
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
labelText: 'Search',
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
onChanged: (val) {
|
||||||
|
setModalState(() {
|
||||||
|
_query = val;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
SizedBox(
|
||||||
|
height: 320,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: filtered.length,
|
||||||
|
itemBuilder: (_, index) {
|
||||||
|
final option = filtered[index];
|
||||||
|
final selected = _tempSelected.contains(option);
|
||||||
|
return CheckboxListTile(
|
||||||
|
value: selected,
|
||||||
|
title: Text(option),
|
||||||
|
onChanged: (val) {
|
||||||
|
setModalState(() {
|
||||||
|
if (val == true) {
|
||||||
|
if (!_tempSelected.contains(option)) {
|
||||||
|
_tempSelected.add(option);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_tempSelected.removeWhere((e) => e == option);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
widget.onChanged(List.from(_tempSelected.toSet()));
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.centerRight,
|
||||||
|
child: FilledButton.icon(
|
||||||
|
onPressed: () {
|
||||||
|
widget.onChanged(List.from(_tempSelected.toSet()));
|
||||||
|
Navigator.of(ctx).pop();
|
||||||
|
},
|
||||||
|
icon: const Icon(Icons.check),
|
||||||
|
label: const Text('Apply'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final hasSelection = widget.selected.isNotEmpty;
|
||||||
|
final display =
|
||||||
|
hasSelection ? widget.selected.join(', ') : 'Any ${widget.label.toLowerCase()}';
|
||||||
|
return OutlinedButton.icon(
|
||||||
|
onPressed: _openPicker,
|
||||||
|
icon: const Icon(Icons.filter_alt),
|
||||||
|
label: SizedBox(
|
||||||
|
width: 180,
|
||||||
|
child: Text(
|
||||||
|
'${widget.label}: $display',
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class RouteSummaryWidget extends StatelessWidget {
|
class RouteSummaryWidget extends StatelessWidget {
|
||||||
final double distance;
|
final double distance;
|
||||||
@@ -12,13 +14,14 @@ class RouteSummaryWidget extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Text(
|
child: Text(
|
||||||
"Total Distance: ${distance.toStringAsFixed(2)} mi",
|
"Total Distance: ${distanceUnits.format(distance, decimals: 2)}",
|
||||||
style: Theme.of(context).textTheme.titleMedium,
|
style: Theme.of(context).textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -36,16 +39,21 @@ class RouteDetailsView extends StatelessWidget {
|
|||||||
final List<String> route;
|
final List<String> route;
|
||||||
final List<double> costs;
|
final List<double> costs;
|
||||||
final VoidCallback onBack;
|
final VoidCallback onBack;
|
||||||
|
final Set<String> routingPoints;
|
||||||
|
|
||||||
const RouteDetailsView({
|
const RouteDetailsView({
|
||||||
super.key,
|
super.key,
|
||||||
required this.route,
|
required this.route,
|
||||||
required this.costs,
|
required this.costs,
|
||||||
required this.onBack,
|
required this.onBack,
|
||||||
|
this.routingPoints = const {},
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
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(
|
return Column(
|
||||||
children: [
|
children: [
|
||||||
Align(
|
Align(
|
||||||
@@ -60,9 +68,23 @@ class RouteDetailsView extends StatelessWidget {
|
|||||||
child: ListView.builder(
|
child: ListView.builder(
|
||||||
itemCount: route.length,
|
itemCount: route.length,
|
||||||
itemBuilder: (context, index) {
|
itemBuilder: (context, index) {
|
||||||
|
final label = route[index];
|
||||||
|
final isRoutingPoint = routingPoints.contains(label);
|
||||||
return ListTile(
|
return ListTile(
|
||||||
title: Text(route[index]),
|
leading: Icon(
|
||||||
trailing: Text("${costs[index].toStringAsFixed(2)} mi"),
|
Icons.circle,
|
||||||
|
size: 12,
|
||||||
|
color: isRoutingPoint ? highlightColor : mutedColor,
|
||||||
|
),
|
||||||
|
title: Text(
|
||||||
|
label,
|
||||||
|
style: isRoutingPoint
|
||||||
|
? TextStyle(color: highlightColor, fontWeight: FontWeight.w600)
|
||||||
|
: null,
|
||||||
|
),
|
||||||
|
trailing: Text(
|
||||||
|
distanceUnits.format(costs[index], decimals: 2),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|||||||
498
lib/components/dashboard/latest_loco_changes_panel.dart
Normal file
@@ -0,0 +1,498 @@
|
|||||||
|
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:provider/provider.dart';
|
||||||
|
|
||||||
|
class LatestLocoChangesPanel extends StatefulWidget {
|
||||||
|
const LatestLocoChangesPanel({super.key, this.expanded = false});
|
||||||
|
|
||||||
|
final bool expanded;
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<LatestLocoChangesPanel> createState() => _LatestLocoChangesPanelState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _LatestLocoChangesPanelState extends State<LatestLocoChangesPanel> {
|
||||||
|
late final ScrollController _controller;
|
||||||
|
final Set<String> _collapsedDates = {};
|
||||||
|
final Set<String> _collapsedClasses = {};
|
||||||
|
final Set<String> _collapsedLocos = {};
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_controller = ScrollController();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_controller.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final data = context.watch<DataService>();
|
||||||
|
final changes = data.latestLocoChanges;
|
||||||
|
final isLoading = data.isLatestLocoChangesLoading;
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
|
|
||||||
|
return Card(
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
const Icon(Icons.bolt, size: 20),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
'Latest Loco Changes',
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (isLoading && changes.isNotEmpty)
|
||||||
|
const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
if (isLoading && changes.isEmpty)
|
||||||
|
const Padding(
|
||||||
|
padding: EdgeInsets.all(12.0),
|
||||||
|
child: Center(child: CircularProgressIndicator()),
|
||||||
|
)
|
||||||
|
else if (changes.isEmpty)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||||
|
child: Text(
|
||||||
|
'No recent loco changes yet.',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
else
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
_buildChangesList(changes, textTheme),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.centerLeft,
|
||||||
|
child: OutlinedButton.icon(
|
||||||
|
onPressed: isLoading ? null : _loadMore,
|
||||||
|
icon: isLoading
|
||||||
|
? const SizedBox(
|
||||||
|
height: 14,
|
||||||
|
width: 14,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.expand_more),
|
||||||
|
label: Text(isLoading ? 'Loading...' : 'Show more'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildChangesList(List<LocoChange> changes, TextTheme textTheme) {
|
||||||
|
final grouped = _groupChanges(changes);
|
||||||
|
// Start with all locos collapsed by default.
|
||||||
|
if (_collapsedLocos.isEmpty) {
|
||||||
|
for (final group in grouped) {
|
||||||
|
for (final classGroup in group.classGroups) {
|
||||||
|
for (final locoGroup in classGroup.locoGroups) {
|
||||||
|
_collapsedLocos.add(
|
||||||
|
_locoKey(group.dateLabel, classGroup.classLabel, locoGroup.locoLabel),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final listView = ListView.separated(
|
||||||
|
controller: null,
|
||||||
|
shrinkWrap: true,
|
||||||
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
|
itemBuilder: (context, groupIndex) {
|
||||||
|
final group = grouped[groupIndex];
|
||||||
|
final dateCollapsed = _collapsedDates.contains(group.dateLabel);
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 6.0),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
iconSize: 18,
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
constraints: const BoxConstraints(),
|
||||||
|
onPressed: () => _toggleDate(group.dateLabel),
|
||||||
|
icon: Icon(
|
||||||
|
dateCollapsed ? Icons.chevron_right : Icons.expand_more,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 6),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
group.dateLabel,
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => _collapseDateChildren(
|
||||||
|
group.dateLabel,
|
||||||
|
group.classGroups,
|
||||||
|
collapse: !_isDateFullyCollapsed(group),
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
_isDateFullyCollapsed(group) ? 'Expand all' : 'Collapse all',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (!dateCollapsed)
|
||||||
|
...group.classGroups.map(
|
||||||
|
(classGroup) {
|
||||||
|
final classKey = _classKey(group.dateLabel, classGroup.classLabel);
|
||||||
|
final classCollapsed = _collapsedClasses.contains(classKey);
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.only(bottom: 8.0, left: 12.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
iconSize: 18,
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
constraints: const BoxConstraints(),
|
||||||
|
onPressed: () => _toggleClass(classKey),
|
||||||
|
icon: Icon(
|
||||||
|
classCollapsed
|
||||||
|
? Icons.chevron_right
|
||||||
|
: Icons.expand_more,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
classGroup.classLabel,
|
||||||
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => _collapseClassChildren(
|
||||||
|
group.dateLabel,
|
||||||
|
classGroup.classLabel,
|
||||||
|
classGroup.locoGroups,
|
||||||
|
collapse:
|
||||||
|
!_isClassFullyCollapsed(classKey, classGroup, group.dateLabel),
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
_isClassFullyCollapsed(classKey, classGroup, group.dateLabel)
|
||||||
|
? 'Expand all'
|
||||||
|
: 'Collapse all',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (!classCollapsed)
|
||||||
|
...classGroup.locoGroups.map(
|
||||||
|
(locoGroup) {
|
||||||
|
final locoKey =
|
||||||
|
_locoKey(group.dateLabel, classGroup.classLabel, locoGroup.locoLabel);
|
||||||
|
final locoCollapsed = _collapsedLocos.contains(locoKey);
|
||||||
|
return Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.only(bottom: 4.0, left: 22.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
iconSize: 18,
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
constraints: const BoxConstraints(),
|
||||||
|
onPressed: () => _toggleLoco(locoKey),
|
||||||
|
icon: Icon(
|
||||||
|
locoCollapsed
|
||||||
|
? Icons.chevron_right
|
||||||
|
: Icons.expand_more,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
locoGroup.locoLabel,
|
||||||
|
style: textTheme.bodyMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (!locoCollapsed) ...[
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
...locoGroup.changes.map(
|
||||||
|
(change) => ListTile(
|
||||||
|
dense: true,
|
||||||
|
visualDensity: const VisualDensity(
|
||||||
|
horizontal: 0,
|
||||||
|
vertical: -3,
|
||||||
|
),
|
||||||
|
minVerticalPadding: 0,
|
||||||
|
contentPadding: EdgeInsets.zero,
|
||||||
|
title: Text(
|
||||||
|
'${change.changeLabel}: ${change.valueLabel}',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
trailing: change.approvedBy.isEmpty
|
||||||
|
? null
|
||||||
|
: Text(
|
||||||
|
change.approvedBy,
|
||||||
|
style: textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
separatorBuilder: (_, index) => const Divider(height: 8),
|
||||||
|
itemCount: grouped.length,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (widget.expanded) {
|
||||||
|
return listView;
|
||||||
|
}
|
||||||
|
|
||||||
|
return listView;
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleDate(String date) {
|
||||||
|
setState(() {
|
||||||
|
if (_collapsedDates.contains(date)) {
|
||||||
|
_collapsedDates.remove(date);
|
||||||
|
} else {
|
||||||
|
_collapsedDates.add(date);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleClass(String key) {
|
||||||
|
setState(() {
|
||||||
|
if (_collapsedClasses.contains(key)) {
|
||||||
|
_collapsedClasses.remove(key);
|
||||||
|
} else {
|
||||||
|
_collapsedClasses.add(key);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void _toggleLoco(String key) {
|
||||||
|
setState(() {
|
||||||
|
if (_collapsedLocos.contains(key)) {
|
||||||
|
_collapsedLocos.remove(key);
|
||||||
|
} else {
|
||||||
|
_collapsedLocos.add(key);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void _collapseDateChildren(
|
||||||
|
String date,
|
||||||
|
List<_ClassGroup> classGroups, {
|
||||||
|
required bool collapse,
|
||||||
|
}) {
|
||||||
|
setState(() {
|
||||||
|
for (final classGroup in classGroups) {
|
||||||
|
final classKey = _classKey(date, classGroup.classLabel);
|
||||||
|
if (collapse) {
|
||||||
|
_collapsedClasses.add(classKey);
|
||||||
|
} else {
|
||||||
|
_collapsedClasses.remove(classKey);
|
||||||
|
}
|
||||||
|
for (final locoGroup in classGroup.locoGroups) {
|
||||||
|
final locoKey = _locoKey(date, classGroup.classLabel, locoGroup.locoLabel);
|
||||||
|
if (collapse) {
|
||||||
|
_collapsedLocos.add(locoKey);
|
||||||
|
} else {
|
||||||
|
_collapsedLocos.remove(locoKey);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void _collapseClassChildren(
|
||||||
|
String date,
|
||||||
|
String classLabel,
|
||||||
|
List<_LocoGroup> locos, {
|
||||||
|
required bool collapse,
|
||||||
|
}) {
|
||||||
|
setState(() {
|
||||||
|
final classKey = _classKey(date, classLabel);
|
||||||
|
if (collapse) {
|
||||||
|
_collapsedClasses.add(classKey);
|
||||||
|
} else {
|
||||||
|
_collapsedClasses.remove(classKey);
|
||||||
|
}
|
||||||
|
for (final locoGroup in locos) {
|
||||||
|
final locoKey = _locoKey(date, classLabel, locoGroup.locoLabel);
|
||||||
|
if (collapse) {
|
||||||
|
_collapsedLocos.add(locoKey);
|
||||||
|
} else {
|
||||||
|
_collapsedLocos.remove(locoKey);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
bool _isDateFullyCollapsed(_ChangeGroup group) {
|
||||||
|
for (final classGroup in group.classGroups) {
|
||||||
|
final classKey = _classKey(group.dateLabel, classGroup.classLabel);
|
||||||
|
if (!_collapsedClasses.contains(classKey)) return false;
|
||||||
|
for (final loco in classGroup.locoGroups) {
|
||||||
|
final locoKey = _locoKey(group.dateLabel, classGroup.classLabel, loco.locoLabel);
|
||||||
|
if (!_collapsedLocos.contains(locoKey)) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool _isClassFullyCollapsed(String classKey, _ClassGroup classGroup, String date) {
|
||||||
|
if (!_collapsedClasses.contains(classKey)) return false;
|
||||||
|
for (final loco in classGroup.locoGroups) {
|
||||||
|
final locoKey = _locoKey(date, classGroup.classLabel, loco.locoLabel);
|
||||||
|
if (!_collapsedLocos.contains(locoKey)) return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
String _classKey(String date, String classLabel) => '$date|$classLabel';
|
||||||
|
String _locoKey(String date, String classLabel, String locoLabel) =>
|
||||||
|
'$date|$classLabel|$locoLabel';
|
||||||
|
|
||||||
|
List<_ChangeGroup> _groupChanges(List<LocoChange> changes) {
|
||||||
|
final dateFormat = DateFormat('yyyy-MM-dd');
|
||||||
|
final Map<String, Map<String, Map<String, List<LocoChange>>>> grouped = {};
|
||||||
|
|
||||||
|
final filtered = changes.where((change) {
|
||||||
|
final code = change.attrCode.toLowerCase();
|
||||||
|
return code != 'build_prec' && code != 'operational' && code != 'gettable';
|
||||||
|
});
|
||||||
|
|
||||||
|
for (final change in filtered) {
|
||||||
|
final date = change.approvedAt ?? change.validFrom;
|
||||||
|
final dateKey = date != null ? dateFormat.format(date) : 'Unknown date';
|
||||||
|
final classKey = change.locoClass.isNotEmpty
|
||||||
|
? change.locoClass
|
||||||
|
: 'Unknown class';
|
||||||
|
final locoKey = _locoLabel(change);
|
||||||
|
grouped.putIfAbsent(dateKey, () => {});
|
||||||
|
grouped[dateKey]!.putIfAbsent(classKey, () => {});
|
||||||
|
grouped[dateKey]![classKey]!.putIfAbsent(locoKey, () => []);
|
||||||
|
grouped[dateKey]![classKey]![locoKey]!.add(change);
|
||||||
|
}
|
||||||
|
|
||||||
|
final sortedDates = grouped.keys.toList()
|
||||||
|
..sort((a, b) {
|
||||||
|
if (a == 'Unknown date') return 1;
|
||||||
|
if (b == 'Unknown date') return -1;
|
||||||
|
return b.compareTo(a); // newest first
|
||||||
|
});
|
||||||
|
|
||||||
|
return sortedDates
|
||||||
|
.map(
|
||||||
|
(dateKey) => _ChangeGroup(
|
||||||
|
dateLabel: dateKey,
|
||||||
|
classGroups: grouped[dateKey]!.entries
|
||||||
|
.map(
|
||||||
|
(classEntry) => _ClassGroup(
|
||||||
|
classLabel: classEntry.key,
|
||||||
|
locoGroups: classEntry.value.entries
|
||||||
|
.map(
|
||||||
|
(locoEntry) => _LocoGroup(
|
||||||
|
locoLabel: locoEntry.key,
|
||||||
|
changes: locoEntry.value
|
||||||
|
..sort(
|
||||||
|
(a, b) => (b.approvedAt ?? b.validFrom ?? DateTime(0))
|
||||||
|
.compareTo(a.approvedAt ?? a.validFrom ?? DateTime(0)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList(),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadMore() async {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
await data.fetchLatestLocoChanges(
|
||||||
|
offset: data.latestLocoChanges.length,
|
||||||
|
append: true,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ChangeGroup {
|
||||||
|
final String dateLabel;
|
||||||
|
final List<_ClassGroup> classGroups;
|
||||||
|
|
||||||
|
_ChangeGroup({required this.dateLabel, required this.classGroups});
|
||||||
|
}
|
||||||
|
|
||||||
|
class _LocoGroup {
|
||||||
|
final String locoLabel;
|
||||||
|
final List<LocoChange> changes;
|
||||||
|
|
||||||
|
_LocoGroup({required this.locoLabel, required this.changes});
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ClassGroup {
|
||||||
|
final String classLabel;
|
||||||
|
final List<_LocoGroup> locoGroups;
|
||||||
|
|
||||||
|
_ClassGroup({required this.classLabel, required this.locoGroups});
|
||||||
|
}
|
||||||
|
|
||||||
|
String _locoLabel(LocoChange change) {
|
||||||
|
final number = change.locoNumber.trim();
|
||||||
|
final name = change.locoName.trim();
|
||||||
|
if (number.isNotEmpty && name.isNotEmpty) return '$number — $name';
|
||||||
|
if (number.isNotEmpty) return number;
|
||||||
|
if (name.isNotEmpty) return name;
|
||||||
|
return 'Loco ${change.locoId}';
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.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:provider/provider.dart';
|
||||||
|
|
||||||
@@ -9,71 +10,92 @@ class LeaderboardPanel extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
final leaderboard = data.homepageStats?.leaderboard ?? [];
|
final leaderboard = data.homepageStats?.leaderboard ?? [];
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
if (data.isHomepageLoading && leaderboard.isEmpty) {
|
if (data.isHomepageLoading && leaderboard.isEmpty) {
|
||||||
return const Padding(
|
return const Padding(
|
||||||
padding: EdgeInsets.all(16.0),
|
padding: EdgeInsets.all(16.0),
|
||||||
child: Center(child: CircularProgressIndicator()),
|
child: Center(child: CircularProgressIndicator()),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return Padding(
|
return Card(
|
||||||
padding: const EdgeInsets.all(10.0),
|
clipBehavior: Clip.antiAlias,
|
||||||
child: Card(
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Row(
|
||||||
"Leaderboard",
|
children: [
|
||||||
style: TextStyle(
|
const Icon(Icons.emoji_events, size: 20),
|
||||||
fontSize: 24,
|
const SizedBox(width: 8),
|
||||||
fontWeight: FontWeight.bold,
|
Expanded(
|
||||||
decoration: TextDecoration.underline,
|
child: Text(
|
||||||
),
|
"Leaderboard",
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (leaderboard.isNotEmpty)
|
||||||
|
Container(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
'Top ${leaderboard.length}',
|
||||||
|
style: textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
if (leaderboard.isEmpty)
|
if (leaderboard.isEmpty)
|
||||||
const Padding(
|
const Padding(
|
||||||
padding: EdgeInsets.all(16.0),
|
padding: EdgeInsets.all(8.0),
|
||||||
child: Text('No leaderboard data yet'),
|
child: Text('No leaderboard data yet'),
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
Column(
|
Column(
|
||||||
children: List.generate(
|
children: [
|
||||||
leaderboard.length,
|
for (int index = 0; index < leaderboard.length; index++) ...[
|
||||||
(index) {
|
ListTile(
|
||||||
final leaderboardEntry = leaderboard[index];
|
contentPadding: EdgeInsets.zero,
|
||||||
return Container(
|
dense: true,
|
||||||
width: double.infinity,
|
leading: CircleAvatar(
|
||||||
margin: const EdgeInsets.symmetric(
|
radius: 18,
|
||||||
horizontal: 0, vertical: 8),
|
backgroundColor:
|
||||||
child: Padding(
|
Theme.of(context).colorScheme.secondaryContainer,
|
||||||
padding: const EdgeInsets.all(8),
|
child: Text(
|
||||||
child: Row(
|
'${index + 1}',
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
style: textTheme.labelLarge?.copyWith(
|
||||||
children: [
|
fontWeight: FontWeight.w800,
|
||||||
Text.rich(
|
),
|
||||||
TextSpan(
|
|
||||||
children: [
|
|
||||||
TextSpan(
|
|
||||||
text: '${index + 1}. ',
|
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
TextSpan(
|
|
||||||
text: leaderboardEntry.userFullName,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
'${leaderboardEntry.mileage.toStringAsFixed(1)} mi',
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
title: Text(
|
||||||
},
|
leaderboard[index].userFullName,
|
||||||
),
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
trailing: Text(
|
||||||
|
distanceUnits.format(
|
||||||
|
leaderboard[index].mileage,
|
||||||
|
decimals: 1,
|
||||||
|
),
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (index != leaderboard.length - 1) const Divider(height: 12),
|
||||||
|
],
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.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:provider/provider.dart';
|
||||||
|
|
||||||
class TopTractionPanel extends StatelessWidget {
|
class TopTractionPanel extends StatelessWidget {
|
||||||
@@ -9,81 +9,88 @@ class TopTractionPanel extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
final stats = data.homepageStats;
|
final stats = data.homepageStats;
|
||||||
final locos = stats?.topLocos ?? [];
|
final locos = stats?.topLocos ?? [];
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
if (data.isHomepageLoading && locos.isEmpty) {
|
if (data.isHomepageLoading && locos.isEmpty) {
|
||||||
return const Padding(
|
return const Padding(
|
||||||
padding: EdgeInsets.all(16.0),
|
padding: EdgeInsets.all(16.0),
|
||||||
child: Center(child: CircularProgressIndicator()),
|
child: Center(child: CircularProgressIndicator()),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return Padding(
|
return Card(
|
||||||
padding: const EdgeInsets.all(10.0),
|
clipBehavior: Clip.antiAlias,
|
||||||
child: Card(
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Row(
|
||||||
"Top Traction",
|
children: [
|
||||||
style: TextStyle(
|
const Icon(Icons.train, size: 20),
|
||||||
fontSize: 24,
|
const SizedBox(width: 8),
|
||||||
fontWeight: FontWeight.bold,
|
Expanded(
|
||||||
decoration: TextDecoration.underline,
|
child: Text(
|
||||||
),
|
"Top traction",
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
if (locos.isEmpty)
|
if (locos.isEmpty)
|
||||||
const Padding(
|
const Padding(
|
||||||
padding: EdgeInsets.all(16.0),
|
padding: EdgeInsets.all(8.0),
|
||||||
child: Text('No traction data yet'),
|
child: Text('No traction data yet'),
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
Column(
|
Column(
|
||||||
children: List.generate(
|
children: [
|
||||||
locos.length,
|
for (int index = 0; index < locos.length; index++) ...[
|
||||||
(index) {
|
ListTile(
|
||||||
final loco = locos[index];
|
contentPadding: EdgeInsets.zero,
|
||||||
return Container(
|
dense: true,
|
||||||
width: double.infinity,
|
leading: CircleAvatar(
|
||||||
margin:
|
radius: 18,
|
||||||
const EdgeInsets.symmetric(horizontal: 0, vertical: 8),
|
backgroundColor:
|
||||||
child: Padding(
|
Theme.of(context).colorScheme.primaryContainer,
|
||||||
padding: const EdgeInsets.all(8),
|
child: Text(
|
||||||
child: Row(
|
'${index + 1}',
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
style: textTheme.labelLarge?.copyWith(
|
||||||
children: [
|
fontWeight: FontWeight.w800,
|
||||||
Column(
|
),
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Text.rich(
|
|
||||||
TextSpan(
|
|
||||||
children: [
|
|
||||||
TextSpan(
|
|
||||||
text: '${index + 1}. ',
|
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
TextSpan(
|
|
||||||
text:
|
|
||||||
'${loco.locoClass} ${loco.number}',
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
loco.name ?? '',
|
|
||||||
style:
|
|
||||||
const TextStyle(fontStyle: FontStyle.italic),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Text('${loco.mileage?.toStringAsFixed(1)} mi'),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
title: Text(
|
||||||
},
|
'${locos[index].locoClass} ${locos[index].number}',
|
||||||
),
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: (locos[index].name ?? '').isEmpty
|
||||||
|
? null
|
||||||
|
: Text(
|
||||||
|
locos[index].name ?? '',
|
||||||
|
style: textTheme.bodySmall?.copyWith(
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
trailing: Text(
|
||||||
|
distanceUnits.format(
|
||||||
|
locos[index].mileage ?? 0,
|
||||||
|
decimals: 1,
|
||||||
|
),
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (index != locos.length - 1) const Divider(height: 12),
|
||||||
|
],
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,45 +1,179 @@
|
|||||||
import 'dart:convert';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.dart';
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
|
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 StatelessWidget {
|
class LegCard extends StatefulWidget {
|
||||||
const LegCard({
|
const LegCard({
|
||||||
super.key,
|
super.key,
|
||||||
required this.leg,
|
required this.leg,
|
||||||
this.showEditButton = true,
|
this.showEditButton = true,
|
||||||
|
this.showDate = true,
|
||||||
});
|
});
|
||||||
|
|
||||||
final Leg leg;
|
final Leg leg;
|
||||||
final bool showEditButton;
|
final bool showEditButton;
|
||||||
|
final bool showDate;
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<LegCard> createState() => _LegCardState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _LegCardState extends State<LegCard> {
|
||||||
|
bool _expanded = false;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
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 routeSegments = _parseRouteSegments(leg.route);
|
||||||
final textTheme = Theme.of(context).textTheme;
|
final textTheme = Theme.of(context).textTheme;
|
||||||
return Card(
|
return Card(
|
||||||
child: ExpansionTile(
|
clipBehavior: Clip.antiAlias,
|
||||||
tilePadding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4),
|
elevation: 1,
|
||||||
leading: const Icon(Icons.train),
|
child: Theme(
|
||||||
title: Text('${leg.start} → ${leg.end}'),
|
data: Theme.of(context).copyWith(dividerColor: Colors.transparent),
|
||||||
subtitle: Column(
|
child: ExpansionTile(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
onExpansionChanged: (v) => setState(() => _expanded = v),
|
||||||
children: [
|
tilePadding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4),
|
||||||
Text(_formatDateTime(leg.beginTime)),
|
leading: const Icon(Icons.train),
|
||||||
if (leg.headcode.isNotEmpty)
|
title: LayoutBuilder(
|
||||||
Text(
|
builder: (context, constraints) {
|
||||||
'Headcode: ${leg.headcode}',
|
final isWide = constraints.maxWidth > 520;
|
||||||
style: textTheme.labelSmall,
|
final beginTimeWidget = _timeWithDelay(
|
||||||
),
|
context,
|
||||||
if (leg.network.isNotEmpty)
|
leg.beginTime,
|
||||||
Text(
|
leg.beginDelayMinutes,
|
||||||
leg.network,
|
includeDate: widget.showDate,
|
||||||
style: textTheme.labelSmall,
|
);
|
||||||
),
|
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) {
|
||||||
|
final timeStyle = Theme.of(context).textTheme.labelSmall;
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
routeText,
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Wrap(
|
||||||
|
spacing: 6,
|
||||||
|
runSpacing: 4,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
children: [
|
||||||
|
_timeWithDelay(
|
||||||
|
context,
|
||||||
|
leg.beginTime,
|
||||||
|
leg.beginDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
style: timeStyle,
|
||||||
|
),
|
||||||
|
if (endTimeWidget != null) ...[
|
||||||
|
const Text('·'),
|
||||||
|
_timeWithDelay(
|
||||||
|
context,
|
||||||
|
leg.endTime!,
|
||||||
|
leg.endDelayMinutes,
|
||||||
|
includeDate: widget.showDate,
|
||||||
|
style: timeStyle,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Wrap(
|
||||||
|
spacing: 6,
|
||||||
|
runSpacing: 4,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
children: [
|
||||||
|
beginTimeWidget,
|
||||||
|
const Text('·'),
|
||||||
|
routeText,
|
||||||
|
if (endTimeWidget != null) ...[
|
||||||
|
const Text('·'),
|
||||||
|
endTimeWidget,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
trailing: Row(
|
subtitle: LayoutBuilder(
|
||||||
|
builder: (context, constraints) {
|
||||||
|
final isWide = constraints.maxWidth > 520;
|
||||||
|
final tractionWrap = !_expanded && leg.locos.isNotEmpty
|
||||||
|
? Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 4,
|
||||||
|
children: leg.locos.map((loco) {
|
||||||
|
final iconColor = loco.powering
|
||||||
|
? Theme.of(context).colorScheme.primary
|
||||||
|
: Theme.of(context).hintColor;
|
||||||
|
final label = '${loco.locoClass} ${loco.number}'.trim();
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(Icons.train, size: 14, color: iconColor),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
label.isEmpty ? 'Loco ${loco.id}' : label,
|
||||||
|
style: textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
final children = <Widget>[];
|
||||||
|
if (isWide) {
|
||||||
|
if (tractionWrap != null) {
|
||||||
|
children.add(tractionWrap);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (tractionWrap != null) {
|
||||||
|
children.add(tractionWrap);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (leg.headcode.isNotEmpty) {
|
||||||
|
children.add(
|
||||||
|
Text(
|
||||||
|
'Headcode: ${leg.headcode}',
|
||||||
|
style: textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (leg.network.isNotEmpty) {
|
||||||
|
children.add(
|
||||||
|
Text(
|
||||||
|
leg.network,
|
||||||
|
style: textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: children,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
trailing: Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
Column(
|
Column(
|
||||||
@@ -48,7 +182,7 @@ class LegCard extends StatelessWidget {
|
|||||||
crossAxisAlignment: CrossAxisAlignment.end,
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
'${leg.mileage.toStringAsFixed(1)} mi',
|
distanceUnits.format(leg.mileage, decimals: 1),
|
||||||
style: textTheme.labelLarge?.copyWith(
|
style: textTheme.labelLarge?.copyWith(
|
||||||
fontWeight: FontWeight.w700,
|
fontWeight: FontWeight.w700,
|
||||||
),
|
),
|
||||||
@@ -64,7 +198,18 @@ class LegCard extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (showEditButton) ...[
|
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),
|
const SizedBox(width: 8),
|
||||||
IconButton(
|
IconButton(
|
||||||
tooltip: 'Edit entry',
|
tooltip: 'Edit entry',
|
||||||
@@ -74,42 +219,129 @@ class LegCard extends StatelessWidget {
|
|||||||
constraints: const BoxConstraints(minWidth: 32, minHeight: 32),
|
constraints: const BoxConstraints(minWidth: 32, minHeight: 32),
|
||||||
onPressed: () => context.push('/legs/edit/${leg.id}'),
|
onPressed: () => context.push('/legs/edit/${leg.id}'),
|
||||||
),
|
),
|
||||||
|
if (_expanded) ...[
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
IconButton(
|
||||||
|
tooltip: 'Delete entry',
|
||||||
|
icon: const Icon(Icons.delete_outline),
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
visualDensity: VisualDensity.compact,
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
constraints: const BoxConstraints(minWidth: 32, minHeight: 32),
|
||||||
|
onPressed: () => _confirmDelete(context, leg.id),
|
||||||
|
),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.fromLTRB(16, 0, 16, 12),
|
padding: const EdgeInsets.fromLTRB(16, 0, 16, 12),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
if (leg.notes.isNotEmpty) ...[
|
if (leg.notes.isNotEmpty) ...[
|
||||||
Text('Notes', style: textTheme.titleSmall),
|
Text('Notes', style: textTheme.titleSmall),
|
||||||
const SizedBox(height: 4),
|
const SizedBox(height: 4),
|
||||||
Text(leg.notes),
|
Text(leg.notes),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
|
],
|
||||||
|
if (leg.locos.isNotEmpty) ...[
|
||||||
|
Text('Locos', style: textTheme.titleSmall),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 8,
|
||||||
|
children: _buildLocoChips(context, leg),
|
||||||
|
),
|
||||||
|
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),
|
||||||
|
_buildRouteList(routeSegments),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
if (leg.locos.isNotEmpty) ...[
|
),
|
||||||
Text('Locos', style: textTheme.titleSmall),
|
|
||||||
const SizedBox(height: 6),
|
|
||||||
Wrap(
|
|
||||||
spacing: 8,
|
|
||||||
runSpacing: 8,
|
|
||||||
children: _buildLocoChips(context, leg),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 12),
|
|
||||||
],
|
|
||||||
if (routeSegments.isNotEmpty) ...[
|
|
||||||
Text('Route', style: textTheme.titleSmall),
|
|
||||||
const SizedBox(height: 6),
|
|
||||||
_buildRouteList(routeSegments),
|
|
||||||
],
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _confirmDelete(BuildContext context, int legId) async {
|
||||||
|
final confirmed = await showDialog<bool>(
|
||||||
|
context: context,
|
||||||
|
builder: (ctx) => AlertDialog(
|
||||||
|
title: const Text('Delete entry?'),
|
||||||
|
content: const Text('Are you sure you want to delete this entry?'),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(ctx).pop(false),
|
||||||
|
child: const Text('Cancel'),
|
||||||
|
),
|
||||||
|
FilledButton(
|
||||||
|
onPressed: () => Navigator.of(ctx).pop(true),
|
||||||
|
child: const Text('Delete'),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
if (confirmed != true) return;
|
||||||
|
|
||||||
|
if (!context.mounted) return;
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
final messenger = ScaffoldMessenger.of(context);
|
||||||
|
try {
|
||||||
|
await data.api.delete('/legs/delete?leg_id=$legId');
|
||||||
|
await data.refreshLegs();
|
||||||
|
messenger.showSnackBar(const SnackBar(content: Text('Entry deleted')));
|
||||||
|
} catch (e) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to delete entry: $e')),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _timeWithDelay(
|
||||||
|
BuildContext context,
|
||||||
|
DateTime time,
|
||||||
|
int? delay, {
|
||||||
|
bool includeDate = true,
|
||||||
|
TextStyle? style,
|
||||||
|
}) {
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
|
final colorScheme = Theme.of(context).colorScheme;
|
||||||
|
final delayMinutes = delay ?? 0;
|
||||||
|
final delayText =
|
||||||
|
delayMinutes == 0 ? null : '${delayMinutes > 0 ? '+' : ''}$delayMinutes';
|
||||||
|
final delayColor = delayMinutes == 0
|
||||||
|
? null
|
||||||
|
: (delayMinutes < 0 ? Colors.green : colorScheme.error);
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
_formatDateTime(time, includeDate: includeDate),
|
||||||
|
style: style,
|
||||||
|
),
|
||||||
|
if (delayText != null) ...[
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
'$delayText m',
|
||||||
|
style:
|
||||||
|
(style ?? textTheme.labelSmall)?.copyWith(color: delayColor),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
String _formatDate(DateTime? date) {
|
String _formatDate(DateTime? date) {
|
||||||
@@ -117,26 +349,94 @@ class LegCard extends StatelessWidget {
|
|||||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||||
}
|
}
|
||||||
|
|
||||||
String _formatDateTime(DateTime date) {
|
String _formatTime(DateTime date) {
|
||||||
|
return '${date.hour.toString().padLeft(2, '0')}:${date.minute.toString().padLeft(2, '0')}';
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatDateTime(DateTime date, {bool includeDate = true}) {
|
||||||
|
final timeStr = _formatTime(date);
|
||||||
|
if (!includeDate) return timeStr;
|
||||||
final dateStr = _formatDate(date);
|
final dateStr = _formatDate(date);
|
||||||
final timeStr =
|
|
||||||
'${date.hour.toString().padLeft(2, '0')}:${date.minute.toString().padLeft(2, '0')}';
|
|
||||||
return '$dateStr · $timeStr';
|
return '$dateStr · $timeStr';
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Widget> _buildLocoChips(BuildContext context, Leg leg) {
|
List<Widget> _buildLocoChips(BuildContext context, Leg leg) {
|
||||||
final theme = Theme.of(context);
|
final theme = Theme.of(context);
|
||||||
|
final textTheme = theme.textTheme;
|
||||||
return leg.locos
|
return leg.locos
|
||||||
.map(
|
.map(
|
||||||
(loco) => Chip(
|
(loco) {
|
||||||
label: Text('${loco.locoClass} ${loco.number}'),
|
final powering = loco.powering == true;
|
||||||
avatar: const Icon(Icons.directions_railway, size: 16),
|
final iconColor =
|
||||||
backgroundColor: theme.colorScheme.surfaceContainerHighest,
|
powering ? theme.colorScheme.primary : theme.disabledColor;
|
||||||
),
|
final labelStyle = powering
|
||||||
|
? null
|
||||||
|
: textTheme.bodyMedium?.copyWith(color: theme.disabledColor);
|
||||||
|
final background = powering
|
||||||
|
? theme.colorScheme.surfaceContainerHighest
|
||||||
|
: theme.colorScheme.surfaceContainerLow;
|
||||||
|
return Chip(
|
||||||
|
label: Text(
|
||||||
|
'${loco.locoClass} ${loco.number}',
|
||||||
|
style: labelStyle,
|
||||||
|
),
|
||||||
|
avatar: Icon(
|
||||||
|
Icons.directions_railway,
|
||||||
|
size: 16,
|
||||||
|
color: iconColor,
|
||||||
|
),
|
||||||
|
backgroundColor: background,
|
||||||
|
);
|
||||||
|
},
|
||||||
)
|
)
|
||||||
.toList();
|
.toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool _hasTrainDetails(Leg leg) {
|
||||||
|
return leg.headcode.isNotEmpty ||
|
||||||
|
leg.origin.isNotEmpty ||
|
||||||
|
leg.destination.isNotEmpty ||
|
||||||
|
leg.originTime != null ||
|
||||||
|
leg.destinationTime != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildTrainDetails(Leg leg, TextTheme textTheme) {
|
||||||
|
final widgets = <Widget>[];
|
||||||
|
if (leg.headcode.isNotEmpty) {
|
||||||
|
widgets.add(
|
||||||
|
Text(
|
||||||
|
'Headcode: ${leg.headcode}',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
final originLine = _locationLine(
|
||||||
|
'Origin',
|
||||||
|
leg.origin,
|
||||||
|
leg.originTime,
|
||||||
|
);
|
||||||
|
if (originLine != null) {
|
||||||
|
widgets.add(Text(originLine, style: textTheme.bodyMedium));
|
||||||
|
}
|
||||||
|
final destinationLine = _locationLine(
|
||||||
|
'Destination',
|
||||||
|
leg.destination,
|
||||||
|
leg.destinationTime,
|
||||||
|
);
|
||||||
|
if (destinationLine != null) {
|
||||||
|
widgets.add(Text(destinationLine, style: textTheme.bodyMedium));
|
||||||
|
}
|
||||||
|
return widgets;
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _locationLine(String label, String location, DateTime? time) {
|
||||||
|
final parts = <String>[];
|
||||||
|
if (location.trim().isNotEmpty) parts.add(location.trim());
|
||||||
|
if (time != null) parts.add(_formatDateTime(time));
|
||||||
|
if (parts.isEmpty) return null;
|
||||||
|
return '$label: ${parts.join(' · ')}';
|
||||||
|
}
|
||||||
|
|
||||||
Widget _buildRouteList(List<String> segments) {
|
Widget _buildRouteList(List<String> segments) {
|
||||||
return Column(
|
return Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
@@ -157,39 +457,7 @@ class LegCard extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
List<String> _parseRouteSegments(String route) {
|
List<String> _parseRouteSegments(List<String> route) {
|
||||||
final trimmed = route.trim();
|
return route.map((e) => e.toString()).where((e) => e.trim().isNotEmpty).toList();
|
||||||
if (trimmed.isEmpty) return [];
|
|
||||||
try {
|
|
||||||
final decoded = jsonDecode(trimmed);
|
|
||||||
if (decoded is List) {
|
|
||||||
return decoded.map((e) => e.toString()).toList();
|
|
||||||
}
|
|
||||||
} catch (_) {}
|
|
||||||
if (trimmed.startsWith('[') && trimmed.endsWith(']')) {
|
|
||||||
try {
|
|
||||||
final replaced = trimmed.replaceAll("'", '"');
|
|
||||||
final decoded = jsonDecode(replaced);
|
|
||||||
if (decoded is List) {
|
|
||||||
return decoded.map((e) => e.toString()).toList();
|
|
||||||
}
|
|
||||||
} catch (_) {}
|
|
||||||
}
|
|
||||||
if (trimmed.contains('->')) {
|
|
||||||
return trimmed
|
|
||||||
.split('->')
|
|
||||||
.map((e) => e.trim())
|
|
||||||
.where((e) => e.isNotEmpty)
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
if (trimmed.contains(',')) {
|
|
||||||
return trimmed
|
|
||||||
.split(',')
|
|
||||||
.map((e) => e.trim())
|
|
||||||
.where((e) => e.isNotEmpty)
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
return [trimmed];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:mileograph_flutter/services/authservice.dart';
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class LoginScreen extends StatefulWidget {
|
class LoginScreen extends StatefulWidget {
|
||||||
@@ -16,7 +17,9 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) => _checkExistingSession());
|
WidgetsBinding.instance.addPostFrameCallback(
|
||||||
|
(_) => _checkExistingSession(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _checkExistingSession() async {
|
Future<void> _checkExistingSession() async {
|
||||||
@@ -26,7 +29,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
if (!valid) return;
|
if (!valid) return;
|
||||||
await auth.tryRestoreSession();
|
await auth.tryRestoreSession();
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
context.go('/');
|
context.go('/dashboard');
|
||||||
} finally {
|
} finally {
|
||||||
if (mounted) setState(() => _checkingSession = false);
|
if (mounted) setState(() => _checkingSession = false);
|
||||||
}
|
}
|
||||||
@@ -70,17 +73,39 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (_checkingSession)
|
|
||||||
const Padding(
|
|
||||||
padding: EdgeInsets.only(top: 12),
|
|
||||||
child: SizedBox(
|
|
||||||
height: 24,
|
|
||||||
width: 24,
|
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 50),
|
const SizedBox(height: 50),
|
||||||
const LoginPanel(),
|
const LoginPanel(),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
IconButton(
|
||||||
|
icon: const Icon(Icons.settings, color: Colors.grey),
|
||||||
|
tooltip: '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,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -173,14 +198,15 @@ class _LoginPanelContentState extends State<LoginPanelContent> {
|
|||||||
setState(() {
|
setState(() {
|
||||||
_loggingIn = false;
|
_loggingIn = false;
|
||||||
});
|
});
|
||||||
|
context.go('/dashboard');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
setState(() {
|
setState(() {
|
||||||
_loggingIn = false;
|
_loggingIn = false;
|
||||||
});
|
});
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(
|
||||||
SnackBar(content: Text('Login failed: $e')),
|
context,
|
||||||
);
|
).showSnackBar(SnackBar(content: Text('Login failed: $e')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -268,6 +294,7 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
|||||||
final _passwordController = TextEditingController();
|
final _passwordController = TextEditingController();
|
||||||
final _inviteController = TextEditingController();
|
final _inviteController = TextEditingController();
|
||||||
bool _registering = false;
|
bool _registering = false;
|
||||||
|
String? _usernameError;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
@@ -280,10 +307,21 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _register() async {
|
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);
|
setState(() => _registering = true);
|
||||||
try {
|
try {
|
||||||
await widget.authService.register(
|
await widget.authService.register(
|
||||||
username: _usernameController.text.trim(),
|
username: username,
|
||||||
email: _emailController.text.trim(),
|
email: _emailController.text.trim(),
|
||||||
fullName: _displayNameController.text.trim(),
|
fullName: _displayNameController.text.trim(),
|
||||||
password: _passwordController.text,
|
password: _passwordController.text,
|
||||||
@@ -291,14 +329,16 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
|||||||
);
|
);
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
const SnackBar(content: Text('Registration successful. Please log in.')),
|
const SnackBar(
|
||||||
|
content: Text('Registration successful. Please log in.'),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
widget.onBack();
|
widget.onBack();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
ScaffoldMessenger.of(
|
||||||
SnackBar(content: Text('Registration failed: $e')),
|
context,
|
||||||
);
|
).showSnackBar(SnackBar(content: Text('Registration failed: $e')));
|
||||||
} finally {
|
} finally {
|
||||||
if (mounted) setState(() => _registering = false);
|
if (mounted) setState(() => _registering = false);
|
||||||
}
|
}
|
||||||
@@ -335,7 +375,22 @@ class _RegisterPanelContentState extends State<RegisterPanelContent> {
|
|||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: "Username",
|
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),
|
const SizedBox(height: 8),
|
||||||
TextField(
|
TextField(
|
||||||
controller: _displayNameController,
|
controller: _displayNameController,
|
||||||
|
|||||||
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -39,9 +39,9 @@ class CalculatorDetailsPage extends StatelessWidget {
|
|||||||
child: RouteDetailsView(
|
child: RouteDetailsView(
|
||||||
route: parsed.calculatedRoute,
|
route: parsed.calculatedRoute,
|
||||||
costs: parsed.costs,
|
costs: parsed.costs,
|
||||||
|
routingPoints: parsed.inputRoute.toSet(),
|
||||||
onBack: () => context.pop(),
|
onBack: () => context.pop(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
|
import 'package:intl/intl.dart';
|
||||||
|
import 'package:mileograph_flutter/components/dashboard/latest_loco_changes_panel.dart';
|
||||||
import 'package:mileograph_flutter/components/dashboard/leaderboard_panel.dart';
|
import 'package:mileograph_flutter/components/dashboard/leaderboard_panel.dart';
|
||||||
import 'package:mileograph_flutter/components/dashboard/top_traction_panel.dart';
|
import 'package:mileograph_flutter/components/dashboard/top_traction_panel.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.dart';
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
import 'package:mileograph_flutter/services/authservice.dart';
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.dart';
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class Dashboard extends StatefulWidget {
|
class Dashboard extends StatefulWidget {
|
||||||
@@ -21,9 +24,10 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
final auth = context.watch<AuthService>();
|
final auth = context.watch<AuthService>();
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
final stats = data.homepageStats;
|
final stats = data.homepageStats;
|
||||||
|
|
||||||
final isInitialLoading = data.isHomepageLoading || stats == null;
|
final isInitialLoading = data.isHomepageLoading && stats == null;
|
||||||
|
|
||||||
return RefreshIndicator(
|
return RefreshIndicator(
|
||||||
onRefresh: () async {
|
onRefresh: () async {
|
||||||
@@ -32,45 +36,27 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
data.fetchOnThisDay(),
|
data.fetchOnThisDay(),
|
||||||
data.fetchTripDetails(),
|
data.fetchTripDetails(),
|
||||||
data.fetchHadTraction(),
|
data.fetchHadTraction(),
|
||||||
|
data.fetchLatestLocoChanges(),
|
||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
child: LayoutBuilder(
|
child: LayoutBuilder(
|
||||||
builder: (context, constraints) {
|
builder: (context, constraints) {
|
||||||
final isWide = constraints.maxWidth > 1100;
|
const spacing = 16.0;
|
||||||
final metricChips = _buildMetricChips(
|
final maxWidth = constraints.maxWidth;
|
||||||
context,
|
|
||||||
totalMileage: stats?.totalMileage ?? 0,
|
|
||||||
currentYearMileage: data.getMileageForCurrentYear(),
|
|
||||||
trips: data.trips.length,
|
|
||||||
);
|
|
||||||
return Stack(
|
return Stack(
|
||||||
children: [
|
children: [
|
||||||
ListView(
|
ListView(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
children: [
|
children: [
|
||||||
_buildHeader(context, auth, stats, data.isHomepageLoading),
|
_buildHero(context, auth, data, stats, distanceUnits),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: spacing),
|
||||||
Wrap(spacing: 12, runSpacing: 12, children: metricChips),
|
_buildTiles(
|
||||||
const SizedBox(height: 16),
|
context,
|
||||||
isWide
|
data,
|
||||||
? Row(
|
distanceUnits,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
maxWidth,
|
||||||
children: [
|
spacing,
|
||||||
Expanded(child: _buildMainColumn(context, data)),
|
),
|
||||||
const SizedBox(width: 16),
|
|
||||||
SizedBox(
|
|
||||||
width: 360,
|
|
||||||
child: _buildSidebar(context, data),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
: Column(
|
|
||||||
children: [
|
|
||||||
_buildMainColumn(context, data),
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
_buildSidebar(context, data),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (isInitialLoading)
|
if (isInitialLoading)
|
||||||
@@ -98,138 +84,391 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildHeader(
|
Widget _buildHero(
|
||||||
BuildContext context,
|
BuildContext context,
|
||||||
AuthService auth,
|
AuthService auth,
|
||||||
|
DataService data,
|
||||||
HomepageStats? stats,
|
HomepageStats? stats,
|
||||||
bool loading,
|
DistanceUnitService distanceUnits,
|
||||||
) {
|
) {
|
||||||
|
final colorScheme = Theme.of(context).colorScheme;
|
||||||
final greetingName =
|
final greetingName =
|
||||||
stats?.user?.fullName ?? auth.fullName ?? auth.username ?? 'there';
|
stats?.user?.fullName ?? auth.fullName ?? auth.username ?? 'there';
|
||||||
return Row(
|
final totalMileage = stats?.totalMileage ?? 0;
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
final currentYearMileage = data.getMileageForCurrentYear();
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
final legCount = stats?.legCount ?? data.trips.length;
|
||||||
children: [
|
final progress = totalMileage == 0
|
||||||
Column(
|
? 0.0
|
||||||
|
: (currentYearMileage / totalMileage).clamp(0, 1).toDouble();
|
||||||
|
|
||||||
|
return Card(
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
|
elevation: 2,
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
gradient: LinearGradient(
|
||||||
|
colors: [
|
||||||
|
colorScheme.primaryContainer,
|
||||||
|
colorScheme.secondaryContainer,
|
||||||
|
],
|
||||||
|
begin: Alignment.topLeft,
|
||||||
|
end: Alignment.bottomRight,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
padding: const EdgeInsets.all(18),
|
||||||
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text('Dashboard', style: Theme.of(context).textTheme.labelMedium),
|
_heroHeading(context, greetingName, colorScheme),
|
||||||
const SizedBox(height: 2),
|
const SizedBox(height: 18),
|
||||||
|
Wrap(
|
||||||
|
spacing: 12,
|
||||||
|
runSpacing: 12,
|
||||||
|
children: [
|
||||||
|
_metricTile(
|
||||||
|
context,
|
||||||
|
label: 'Total mileage',
|
||||||
|
value: distanceUnits.format(totalMileage, decimals: 1),
|
||||||
|
icon: Icons.route,
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
_metricTile(
|
||||||
|
context,
|
||||||
|
label: 'This year',
|
||||||
|
value: distanceUnits.format(currentYearMileage, decimals: 1),
|
||||||
|
icon: Icons.calendar_today,
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
_metricTile(
|
||||||
|
context,
|
||||||
|
label: 'Entries logged',
|
||||||
|
value: legCount.toString(),
|
||||||
|
icon: Icons.format_list_bulleted,
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
child: LinearProgressIndicator(
|
||||||
|
value: progress.isNaN ? 0 : progress,
|
||||||
|
minHeight: 10,
|
||||||
|
backgroundColor: colorScheme.onPrimaryContainer.withValues(
|
||||||
|
alpha: 0.2,
|
||||||
|
),
|
||||||
|
valueColor: AlwaysStoppedAnimation<Color>(
|
||||||
|
colorScheme.onPrimaryContainer,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 6),
|
||||||
Text(
|
Text(
|
||||||
'Welcome back, $greetingName',
|
totalMileage == 0
|
||||||
style: Theme.of(context).textTheme.headlineSmall,
|
? 'Log a new entry to start your timeline.'
|
||||||
|
: 'Year-to-date is ${(progress * 100).toStringAsFixed(0)}% of all mileage.',
|
||||||
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
|
color: colorScheme.onPrimaryContainer.withValues(alpha: 0.8),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (loading)
|
),
|
||||||
const Padding(
|
|
||||||
padding: EdgeInsets.only(right: 8.0),
|
|
||||||
child: SizedBox(
|
|
||||||
height: 24,
|
|
||||||
width: 24,
|
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Widget> _buildMetricChips(
|
Widget _metricTile(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
required double totalMileage,
|
required String label,
|
||||||
required double currentYearMileage,
|
required String value,
|
||||||
required int trips,
|
required IconData icon,
|
||||||
|
required Color color,
|
||||||
}) {
|
}) {
|
||||||
final textTheme = Theme.of(context).textTheme;
|
final bg = Colors.white.withValues(alpha: 0.14);
|
||||||
Widget metricCard(String label, String value) {
|
return Container(
|
||||||
return Card(
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 10),
|
||||||
elevation: 1,
|
decoration: BoxDecoration(
|
||||||
child: Padding(
|
color: bg,
|
||||||
padding: const EdgeInsets.symmetric(vertical: 12, horizontal: 14),
|
borderRadius: BorderRadius.circular(12),
|
||||||
child: Column(
|
border: Border.all(color: Colors.white.withValues(alpha: 0.18)),
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(icon, color: color),
|
||||||
|
const SizedBox(width: 10),
|
||||||
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
label.toUpperCase(),
|
label,
|
||||||
style: textTheme.labelSmall?.copyWith(
|
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
||||||
letterSpacing: 0.7,
|
color: color.withValues(alpha: 0.85),
|
||||||
color: textTheme.bodySmall?.color?.withValues(alpha: 0.7),
|
letterSpacing: 0.4,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 4),
|
|
||||||
Text(
|
Text(
|
||||||
value,
|
value,
|
||||||
style: textTheme.titleMedium?.copyWith(
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
fontWeight: FontWeight.w700,
|
fontWeight: FontWeight.w800,
|
||||||
|
color: color,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildTiles(
|
||||||
|
BuildContext context,
|
||||||
|
DataService data,
|
||||||
|
DistanceUnitService distanceUnits,
|
||||||
|
double maxWidth,
|
||||||
|
double spacing,
|
||||||
|
) {
|
||||||
|
final isWide = maxWidth >= 1200;
|
||||||
|
|
||||||
|
if (isWide) {
|
||||||
|
return Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
flex: 2,
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
_buildOnThisDayCard(context, data, distanceUnits),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
_buildTripsCard(context, data, distanceUnits),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
const LatestLocoChangesPanel(expanded: true),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 16),
|
||||||
|
Expanded(
|
||||||
|
flex: 1,
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: const [
|
||||||
|
TopTractionPanel(),
|
||||||
|
SizedBox(height: 16),
|
||||||
|
LeaderboardPanel(),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
|
||||||
metricCard('Total mileage', '${totalMileage.toStringAsFixed(1)} mi'),
|
|
||||||
metricCard('This year', '${currentYearMileage.toStringAsFixed(1)} mi'),
|
|
||||||
metricCard('Trips logged', trips.toString()),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildMainColumn(BuildContext context, DataService data) {
|
|
||||||
return Column(
|
return Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
_buildCard(
|
_buildOnThisDayCard(context, data, distanceUnits),
|
||||||
context,
|
const SizedBox(height: 16),
|
||||||
title: 'On this day',
|
const TopTractionPanel(),
|
||||||
action:
|
const SizedBox(height: 16),
|
||||||
data.onThisDay
|
const LeaderboardPanel(),
|
||||||
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
const SizedBox(height: 16),
|
||||||
.length >
|
_buildTripsCard(context, data, distanceUnits),
|
||||||
5
|
const SizedBox(height: 16),
|
||||||
? TextButton(
|
const LatestLocoChangesPanel(),
|
||||||
onPressed: () => setState(() {
|
],
|
||||||
_showAllOnThisDay = !_showAllOnThisDay;
|
);
|
||||||
}),
|
}
|
||||||
child: Text(_showAllOnThisDay ? 'Show less' : 'Show more'),
|
|
||||||
)
|
Widget _heroHeading(
|
||||||
: null,
|
BuildContext context,
|
||||||
trailing: data.isOnThisDayLoading
|
String greetingName,
|
||||||
? const SizedBox(
|
ColorScheme colorScheme,
|
||||||
height: 18,
|
) {
|
||||||
width: 18,
|
return Column(
|
||||||
child: CircularProgressIndicator(strokeWidth: 2),
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
)
|
children: [
|
||||||
: null,
|
Text(
|
||||||
child: _buildLegList(
|
'Dashboard',
|
||||||
context,
|
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||||
data.onThisDay,
|
color: colorScheme.onPrimaryContainer,
|
||||||
showAll: _showAllOnThisDay,
|
letterSpacing: 0.4,
|
||||||
emptyMessage: 'No historical moves for today yet.',
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Text(
|
||||||
|
'Welcome back, $greetingName',
|
||||||
|
style: Theme.of(context).textTheme.headlineSmall?.copyWith(
|
||||||
|
color: colorScheme.onPrimaryContainer,
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
|
||||||
_buildQuickCalcCard(context),
|
|
||||||
const SizedBox(height: 12),
|
|
||||||
_buildTripsCard(context, data),
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildSidebar(BuildContext context, DataService data) {
|
Widget _buildOnThisDayCard(
|
||||||
return Column(
|
BuildContext context, DataService data, DistanceUnitService distanceUnits) {
|
||||||
|
final filtered = data.onThisDay
|
||||||
|
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
||||||
|
.toList();
|
||||||
|
final textTheme = Theme.of(context).textTheme;
|
||||||
|
final showMore = filtered.length > 5;
|
||||||
|
final visible = _showAllOnThisDay ? filtered : filtered.take(6).toList();
|
||||||
|
return _panel(
|
||||||
|
context,
|
||||||
|
icon: Icons.history_toggle_off,
|
||||||
|
title: 'On this day',
|
||||||
|
trailing: data.isOnThisDayLoading
|
||||||
|
? const SizedBox(
|
||||||
|
height: 18,
|
||||||
|
width: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: null,
|
||||||
|
action: showMore
|
||||||
|
? TextButton(
|
||||||
|
onPressed: () =>
|
||||||
|
setState(() => _showAllOnThisDay = !_showAllOnThisDay),
|
||||||
|
child: Text(_showAllOnThisDay ? 'Show less' : 'Show more'),
|
||||||
|
)
|
||||||
|
: null,
|
||||||
|
child: filtered.isEmpty
|
||||||
|
? Text(
|
||||||
|
'No historical moves for today yet.',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
)
|
||||||
|
: Column(
|
||||||
|
children: [
|
||||||
|
for (int idx = 0; idx < visible.length; idx++) ...[
|
||||||
|
_otdRow(context, visible[idx], textTheme, distanceUnits),
|
||||||
|
if (idx != visible.length - 1) const Divider(height: 12),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _otdRow(BuildContext context, Leg leg, TextTheme textTheme,
|
||||||
|
DistanceUnitService distanceUnits) {
|
||||||
|
final traction = leg.locos;
|
||||||
|
return Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
TopTractionPanel(),
|
Container(
|
||||||
const SizedBox(height: 12),
|
width: 64,
|
||||||
LeaderboardPanel(),
|
height: 56,
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
),
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
leg.beginTime.year.toString(),
|
||||||
|
style: textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 2),
|
||||||
|
Text(_formatTime(leg.beginTime), style: textTheme.labelSmall),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
'${leg.start} → ${leg.end}',
|
||||||
|
style: textTheme.titleSmall?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
maxLines: 2,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
if (leg.headcode.isNotEmpty) ...[
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
leg.headcode,
|
||||||
|
style: textTheme.labelSmall?.copyWith(
|
||||||
|
color: textTheme.bodySmall?.color?.withValues(
|
||||||
|
alpha: 0.7,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
const SizedBox(width: 6),
|
||||||
|
Expanded(
|
||||||
|
child: traction.isEmpty
|
||||||
|
? Text(
|
||||||
|
'No traction recorded',
|
||||||
|
style: textTheme.labelSmall?.copyWith(
|
||||||
|
color: textTheme.bodySmall?.color?.withValues(
|
||||||
|
alpha: 0.7,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 4,
|
||||||
|
children: traction.map((loco) {
|
||||||
|
final iconColor = loco.powering
|
||||||
|
? Theme.of(context).colorScheme.primary
|
||||||
|
: Theme.of(context).hintColor;
|
||||||
|
final label = '${loco.locoClass} ${loco.number}';
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(Icons.train, size: 14, color: iconColor),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
label,
|
||||||
|
style: textTheme.labelSmall?.copyWith(
|
||||||
|
color: textTheme.bodySmall?.color
|
||||||
|
?.withValues(alpha: 0.85),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
distanceUnits.format(leg.mileage, decimals: 1),
|
||||||
|
style: textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildCard(
|
Widget _panel(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
|
required IconData icon,
|
||||||
required String title,
|
required String title,
|
||||||
required Widget child,
|
required Widget child,
|
||||||
Widget? trailing,
|
Widget? trailing,
|
||||||
@@ -238,29 +477,29 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
return Card(
|
return Card(
|
||||||
clipBehavior: Clip.antiAlias,
|
clipBehavior: Clip.antiAlias,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Icon(icon, size: 20),
|
||||||
title,
|
const SizedBox(width: 8),
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
Expanded(
|
||||||
fontWeight: FontWeight.w700,
|
child: Text(
|
||||||
|
title,
|
||||||
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w800,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Row(
|
if (action != null)
|
||||||
mainAxisSize: MainAxisSize.min,
|
Padding(
|
||||||
children: [
|
padding: const EdgeInsets.only(right: 8.0),
|
||||||
if (action != null) action,
|
child: action,
|
||||||
if (trailing != null) ...[
|
),
|
||||||
const SizedBox(width: 8),
|
if (trailing != null) trailing,
|
||||||
trailing,
|
|
||||||
],
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
@@ -271,75 +510,19 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildLegList(
|
Widget _buildTripsCard(
|
||||||
BuildContext context,
|
BuildContext context, DataService data, DistanceUnitService distanceUnits) {
|
||||||
List<Leg> legs, {
|
|
||||||
required String emptyMessage,
|
|
||||||
bool showAll = false,
|
|
||||||
}) {
|
|
||||||
final filtered = legs
|
|
||||||
.where((leg) => leg.beginTime.year != DateTime.now().year)
|
|
||||||
.toList();
|
|
||||||
if (filtered.isEmpty) {
|
|
||||||
return Text(emptyMessage, style: Theme.of(context).textTheme.bodyMedium);
|
|
||||||
}
|
|
||||||
final toShow = showAll ? filtered : filtered.take(5).toList();
|
|
||||||
return Column(
|
|
||||||
children: toShow.map((leg) {
|
|
||||||
return ListTile(
|
|
||||||
dense: true,
|
|
||||||
contentPadding: EdgeInsets.zero,
|
|
||||||
leading: CircleAvatar(
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.primaryContainer,
|
|
||||||
child: const Icon(Icons.train),
|
|
||||||
),
|
|
||||||
title: Text('${leg.start} → ${leg.end}'),
|
|
||||||
subtitle: Text(_formatDate(leg.beginTime)),
|
|
||||||
trailing: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
Text('${leg.mileage.toStringAsFixed(1)} mi'),
|
|
||||||
if (leg.headcode.isNotEmpty)
|
|
||||||
Text(
|
|
||||||
leg.headcode,
|
|
||||||
style: Theme.of(context).textTheme.labelSmall?.copyWith(
|
|
||||||
color: Theme.of(context).hintColor,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}).toList(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildQuickCalcCard(BuildContext context) {
|
|
||||||
return _buildCard(
|
|
||||||
context,
|
|
||||||
title: 'Quick mileage calculator',
|
|
||||||
action: TextButton.icon(
|
|
||||||
onPressed: () => context.push('/calculator'),
|
|
||||||
icon: const Icon(Icons.open_in_new),
|
|
||||||
label: const Text('Open calculator'),
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
'Jump into the route calculator to quickly total a journey before saving it.',
|
|
||||||
style: Theme.of(context).textTheme.bodyMedium,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildTripsCard(BuildContext context, DataService data) {
|
|
||||||
final tripsUnsorted = data.trips;
|
final tripsUnsorted = data.trips;
|
||||||
List trips = [];
|
List<TripSummary> trips = [];
|
||||||
if (tripsUnsorted.isNotEmpty) {
|
if (tripsUnsorted.isNotEmpty) {
|
||||||
trips = [...tripsUnsorted]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
trips = [...tripsUnsorted]..sort(TripSummary.compareByDateDesc);
|
||||||
}
|
}
|
||||||
return _buildCard(
|
return _panel(
|
||||||
context,
|
context,
|
||||||
|
icon: Icons.bookmark,
|
||||||
title: 'Trips',
|
title: 'Trips',
|
||||||
action: TextButton(
|
action: TextButton(
|
||||||
onPressed: () => context.push('/trips'),
|
onPressed: () => context.push('/logbook/trips'),
|
||||||
child: const Text('View all'),
|
child: const Text('View all'),
|
||||||
),
|
),
|
||||||
child: trips.isEmpty
|
child: trips.isEmpty
|
||||||
@@ -348,20 +531,46 @@ class _DashboardState extends State<Dashboard> {
|
|||||||
style: Theme.of(context).textTheme.bodyMedium,
|
style: Theme.of(context).textTheme.bodyMedium,
|
||||||
)
|
)
|
||||||
: Column(
|
: Column(
|
||||||
children: trips.take(5).map((trip) {
|
children: trips.take(6).map((trip) {
|
||||||
return ListTile(
|
return Padding(
|
||||||
contentPadding: EdgeInsets.zero,
|
padding: const EdgeInsets.symmetric(vertical: 6.0),
|
||||||
title: Text(trip.tripName),
|
child: Row(
|
||||||
subtitle: Text('${trip.tripMileage.toStringAsFixed(1)} mi'),
|
children: [
|
||||||
trailing: const Icon(Icons.chevron_right),
|
Container(
|
||||||
|
width: 42,
|
||||||
|
height: 42,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.primaryContainer,
|
||||||
|
borderRadius: BorderRadius.circular(12),
|
||||||
|
),
|
||||||
|
child: const Icon(Icons.book, size: 18),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 10),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
trip.tripName,
|
||||||
|
style: Theme.of(context).textTheme.titleSmall
|
||||||
|
?.copyWith(fontWeight: FontWeight.w700),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
distanceUnits.format(trip.tripMileage, decimals: 1),
|
||||||
|
style: Theme.of(context).textTheme.labelMedium,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}).toList(),
|
}).toList(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
String _formatDate(DateTime? dt) {
|
String _formatTime(DateTime date) {
|
||||||
if (dt == null) return '';
|
return DateFormat('HH:mm').format(date);
|
||||||
return '${dt.year.toString().padLeft(4, '0')}-${dt.month.toString().padLeft(2, '0')}-${dt.day.toString().padLeft(2, '0')}';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:mileograph_flutter/components/legs/leg_card.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/data_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/distance_unit_service.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class LegsPage extends StatefulWidget {
|
class LegsPage extends StatefulWidget {
|
||||||
@@ -89,6 +91,7 @@ class _LegsPageState extends State<LegsPage> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
final legs = data.legs;
|
final legs = data.legs;
|
||||||
final pageMileage = _pageMileage(legs);
|
final pageMileage = _pageMileage(legs);
|
||||||
|
|
||||||
@@ -120,7 +123,7 @@ class _LegsPageState extends State<LegsPage> {
|
|||||||
children: [
|
children: [
|
||||||
Text('Page mileage',
|
Text('Page mileage',
|
||||||
style: Theme.of(context).textTheme.labelSmall),
|
style: Theme.of(context).textTheme.labelSmall),
|
||||||
Text('${pageMileage.toStringAsFixed(1)} mi',
|
Text(distanceUnits.format(pageMileage, decimals: 1),
|
||||||
style: Theme.of(context)
|
style: Theme.of(context)
|
||||||
.textTheme
|
.textTheme
|
||||||
.titleMedium
|
.titleMedium
|
||||||
@@ -211,7 +214,7 @@ class _LegsPageState extends State<LegsPage> {
|
|||||||
else
|
else
|
||||||
Column(
|
Column(
|
||||||
children: [
|
children: [
|
||||||
...legs.map((leg) => LegCard(leg: leg)),
|
..._buildLegsWithDividers(context, legs, distanceUnits),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
if (data.legsHasMore || data.isLegsLoading)
|
if (data.legsHasMore || data.isLegsLoading)
|
||||||
Align(
|
Align(
|
||||||
@@ -238,6 +241,60 @@ class _LegsPageState extends State<LegsPage> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
List<Widget> _buildLegsWithDividers(
|
||||||
|
BuildContext context,
|
||||||
|
List<Leg> legs,
|
||||||
|
DistanceUnitService distanceUnits,
|
||||||
|
) {
|
||||||
|
final widgets = <Widget>[];
|
||||||
|
String? currentDate;
|
||||||
|
double dayMileage = 0;
|
||||||
|
final dayLegs = <Leg>[];
|
||||||
|
|
||||||
|
void flushDay() {
|
||||||
|
final date = currentDate;
|
||||||
|
if (date == null) return;
|
||||||
|
widgets.add(
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
date,
|
||||||
|
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(distanceUnits.format(dayMileage, decimals: 1),
|
||||||
|
style: Theme.of(context).textTheme.labelMedium),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
widgets.add(const Divider());
|
||||||
|
widgets.addAll(
|
||||||
|
dayLegs.map((leg) => LegCard(leg: leg, showDate: false)),
|
||||||
|
);
|
||||||
|
dayLegs.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
for (final leg in legs) {
|
||||||
|
final dateStr = _formatDate(leg.beginTime) ?? '';
|
||||||
|
if (currentDate != null && dateStr != currentDate) {
|
||||||
|
flushDay();
|
||||||
|
dayMileage = 0;
|
||||||
|
}
|
||||||
|
currentDate = dateStr;
|
||||||
|
dayLegs.add(leg);
|
||||||
|
dayMileage += leg.mileage;
|
||||||
|
}
|
||||||
|
|
||||||
|
flushDay();
|
||||||
|
return widgets;
|
||||||
|
}
|
||||||
|
|
||||||
String? _formatDate(DateTime? date) {
|
String? _formatDate(DateTime? date) {
|
||||||
if (date == null) return null;
|
if (date == null) return null;
|
||||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||||
|
|||||||
@@ -36,6 +36,21 @@ class _LocoTimelinePageState extends State<LocoTimelinePage> {
|
|||||||
WidgetsBinding.instance.addPostFrameCallback((_) => _load());
|
WidgetsBinding.instance.addPostFrameCallback((_) => _load());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dynamic _normalizeFieldValue(_FieldEntry field) {
|
||||||
|
final name = field.field.name.toLowerCase();
|
||||||
|
final val = field.value;
|
||||||
|
if (name == 'max_speed') {
|
||||||
|
final numVal = val is num ? val.toDouble() : double.tryParse('$val');
|
||||||
|
if (numVal == null) return val;
|
||||||
|
final unit = (field.unit ?? 'kph').toLowerCase();
|
||||||
|
if (unit == 'mph') {
|
||||||
|
return numVal * 1.60934;
|
||||||
|
}
|
||||||
|
return numVal;
|
||||||
|
}
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose() {
|
void dispose() {
|
||||||
_disposeDrafts(_draftEvents);
|
_disposeDrafts(_draftEvents);
|
||||||
@@ -57,7 +72,7 @@ class _LocoTimelinePageState extends State<LocoTimelinePage> {
|
|||||||
String? _eventDateForEntry(LocoAttrVersion entry) {
|
String? _eventDateForEntry(LocoAttrVersion entry) {
|
||||||
final masked = entry.maskedValidFrom?.trim();
|
final masked = entry.maskedValidFrom?.trim();
|
||||||
if (masked != null && masked.isNotEmpty) return masked;
|
if (masked != null && masked.isNotEmpty) return masked;
|
||||||
final from = entry.validFrom ?? entry.txnFrom;
|
final from = entry.validFrom;
|
||||||
if (from == null) return null;
|
if (from == null) return null;
|
||||||
return DateFormat('yyyy-MM-dd').format(from);
|
return DateFormat('yyyy-MM-dd').format(from);
|
||||||
}
|
}
|
||||||
@@ -115,7 +130,8 @@ class _LocoTimelinePageState extends State<LocoTimelinePage> {
|
|||||||
draft.details = '';
|
draft.details = '';
|
||||||
draft.fields.add(
|
draft.fields.add(
|
||||||
_FieldEntry(field: field)
|
_FieldEntry(field: field)
|
||||||
..value = _valueForEntry(entry),
|
..value = _valueForEntry(entry)
|
||||||
|
..unit = _guessUnit(field, entry.valueLabel),
|
||||||
);
|
);
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
@@ -123,6 +139,16 @@ class _LocoTimelinePageState extends State<LocoTimelinePage> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String? _guessUnit(EventField field, String valueLabel) {
|
||||||
|
final name = field.name.toLowerCase();
|
||||||
|
if (name == 'max_speed') {
|
||||||
|
final val = valueLabel.toLowerCase();
|
||||||
|
if (val.contains('mph')) return 'mph';
|
||||||
|
return 'kph';
|
||||||
|
}
|
||||||
|
return _defaultUnitForField(field);
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> _deleteEntry(LocoAttrVersion entry) async {
|
Future<void> _deleteEntry(LocoAttrVersion entry) async {
|
||||||
if (_isDeleting) return;
|
if (_isDeleting) return;
|
||||||
final blockId = entry.versionId;
|
final blockId = entry.versionId;
|
||||||
@@ -241,7 +267,7 @@ class _LocoTimelinePageState extends State<LocoTimelinePage> {
|
|||||||
invalid.add('Field ${field.field.display} is empty');
|
invalid.add('Field ${field.field.display} is empty');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
values[field.field.name] = val;
|
values[field.field.name] = _normalizeFieldValue(field);
|
||||||
}
|
}
|
||||||
if (invalid.isNotEmpty) continue;
|
if (invalid.isNotEmpty) continue;
|
||||||
if (values.isEmpty) {
|
if (values.isEmpty) {
|
||||||
|
|||||||
@@ -184,7 +184,9 @@ class _FieldList extends StatelessWidget {
|
|||||||
value: null,
|
value: null,
|
||||||
onChanged: (field) {
|
onChanged: (field) {
|
||||||
if (field == null) return;
|
if (field == null) return;
|
||||||
draft.fields.add(_FieldEntry(field: field));
|
draft.fields.add(
|
||||||
|
_FieldEntry(field: field)..unit = _defaultUnitForField(field),
|
||||||
|
);
|
||||||
onChange();
|
onChange();
|
||||||
},
|
},
|
||||||
items: availableFields
|
items: availableFields
|
||||||
@@ -224,10 +226,10 @@ class _FieldList extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
const SizedBox(height: 4),
|
const SizedBox(height: 4),
|
||||||
_FieldInput(
|
_FieldInput(
|
||||||
field: field.field,
|
entry: field,
|
||||||
value: field.value,
|
onChanged: (val, {String? unit}) {
|
||||||
onChanged: (val) {
|
|
||||||
field.value = val;
|
field.value = val;
|
||||||
|
if (unit != null) field.unit = unit;
|
||||||
onChange();
|
onChange();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
@@ -253,17 +255,18 @@ class _FieldList extends StatelessWidget {
|
|||||||
|
|
||||||
class _FieldInput extends StatelessWidget {
|
class _FieldInput extends StatelessWidget {
|
||||||
const _FieldInput({
|
const _FieldInput({
|
||||||
required this.field,
|
required this.entry,
|
||||||
required this.value,
|
|
||||||
required this.onChanged,
|
required this.onChanged,
|
||||||
});
|
});
|
||||||
|
|
||||||
final EventField field;
|
final _FieldEntry entry;
|
||||||
final dynamic value;
|
final void Function(dynamic value, {String? unit}) onChanged;
|
||||||
final ValueChanged<dynamic> onChanged;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final field = entry.field;
|
||||||
|
final value = entry.value;
|
||||||
|
|
||||||
if (field.enumValues != null && field.enumValues!.isNotEmpty) {
|
if (field.enumValues != null && field.enumValues!.isNotEmpty) {
|
||||||
final options = field.enumValues!;
|
final options = field.enumValues!;
|
||||||
return DropdownButtonFormField<String>(
|
return DropdownButtonFormField<String>(
|
||||||
@@ -293,6 +296,118 @@ class _FieldInput extends StatelessWidget {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final name = field.name.toLowerCase();
|
||||||
|
if (name == 'max_speed') {
|
||||||
|
final unit = entry.unit ?? 'kph';
|
||||||
|
return Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: TextFormField(
|
||||||
|
initialValue: value?.toString(),
|
||||||
|
onChanged: (val) {
|
||||||
|
final parsed = double.tryParse(val);
|
||||||
|
onChanged(parsed, unit: unit);
|
||||||
|
},
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
hintText: 'Enter value',
|
||||||
|
suffixText: 'kph/mph',
|
||||||
|
),
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
SizedBox(
|
||||||
|
width: 88,
|
||||||
|
child: DropdownButtonFormField<String>(
|
||||||
|
value: unit,
|
||||||
|
items: const [
|
||||||
|
DropdownMenuItem(value: 'kph', child: Text('kph')),
|
||||||
|
DropdownMenuItem(value: 'mph', child: Text('mph')),
|
||||||
|
],
|
||||||
|
onChanged: (val) {
|
||||||
|
if (val == null) return;
|
||||||
|
onChanged(value, unit: val);
|
||||||
|
},
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
labelText: 'Unit',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ({
|
||||||
|
'height',
|
||||||
|
'length',
|
||||||
|
'width',
|
||||||
|
'track_gauge',
|
||||||
|
}.contains(name)) {
|
||||||
|
return TextFormField(
|
||||||
|
initialValue: value?.toString(),
|
||||||
|
onChanged: (val) {
|
||||||
|
final parsed = double.tryParse(val);
|
||||||
|
onChanged(parsed ?? val);
|
||||||
|
},
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
hintText: 'Enter value',
|
||||||
|
suffixText: 'mm',
|
||||||
|
),
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (name == 'weight') {
|
||||||
|
return TextFormField(
|
||||||
|
initialValue: value?.toString(),
|
||||||
|
onChanged: (val) {
|
||||||
|
final parsed = double.tryParse(val);
|
||||||
|
onChanged(parsed ?? val);
|
||||||
|
},
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
hintText: 'Enter value',
|
||||||
|
suffixText: 'tonnes',
|
||||||
|
),
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (name == 'power') {
|
||||||
|
return TextFormField(
|
||||||
|
initialValue: value?.toString(),
|
||||||
|
onChanged: (val) {
|
||||||
|
final parsed = double.tryParse(val);
|
||||||
|
onChanged(parsed ?? val);
|
||||||
|
},
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
hintText: 'Enter value',
|
||||||
|
suffixText: 'kW',
|
||||||
|
),
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (name == 'tractive_effort') {
|
||||||
|
return TextFormField(
|
||||||
|
initialValue: value?.toString(),
|
||||||
|
onChanged: (val) {
|
||||||
|
final parsed = double.tryParse(val);
|
||||||
|
onChanged(parsed ?? val);
|
||||||
|
},
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
hintText: 'Enter value',
|
||||||
|
suffixText: 'kN',
|
||||||
|
),
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
final isNumber = type == 'int' || type == 'integer';
|
final isNumber = type == 'int' || type == 'integer';
|
||||||
return TextFormField(
|
return TextFormField(
|
||||||
initialValue: value?.toString(),
|
initialValue: value?.toString(),
|
||||||
@@ -326,6 +441,13 @@ class _EventDraft {
|
|||||||
class _FieldEntry {
|
class _FieldEntry {
|
||||||
final EventField field;
|
final EventField field;
|
||||||
dynamic value;
|
dynamic value;
|
||||||
|
String? unit;
|
||||||
|
|
||||||
_FieldEntry({required this.field});
|
_FieldEntry({required this.field});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String? _defaultUnitForField(EventField field) {
|
||||||
|
final name = field.name.toLowerCase();
|
||||||
|
if (name == 'max_speed') return 'kph';
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|||||||
@@ -443,53 +443,57 @@ class _ValueBlockMenu extends StatelessWidget {
|
|||||||
return _ValueBlockView(block: block);
|
return _ValueBlockView(block: block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> showContextMenuAt(Offset globalPosition) async {
|
||||||
|
final overlay = Overlay.of(context);
|
||||||
|
final renderBox = overlay.context.findRenderObject() as RenderBox?;
|
||||||
|
if (renderBox == null) return;
|
||||||
|
// Translate from global screen coordinates into the overlay's local space
|
||||||
|
// so the menu appears where the gesture happened.
|
||||||
|
final localPosition = renderBox.globalToLocal(globalPosition);
|
||||||
|
final position = RelativeRect.fromRect(
|
||||||
|
Rect.fromLTWH(localPosition.dx, localPosition.dy, 1, 1),
|
||||||
|
Offset.zero & renderBox.size,
|
||||||
|
);
|
||||||
|
|
||||||
|
final action = await showMenu<_TimelineBlockAction>(
|
||||||
|
context: context,
|
||||||
|
position: position,
|
||||||
|
items: [
|
||||||
|
if (onEditEntry != null)
|
||||||
|
const PopupMenuItem(
|
||||||
|
value: _TimelineBlockAction.edit,
|
||||||
|
child: Text('Edit'),
|
||||||
|
),
|
||||||
|
if (onDeleteEntry != null)
|
||||||
|
const PopupMenuItem(
|
||||||
|
value: _TimelineBlockAction.delete,
|
||||||
|
child: Text('Delete'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
|
||||||
|
final entry = block.entry;
|
||||||
|
if (action == null || entry == null) return;
|
||||||
|
switch (action) {
|
||||||
|
case _TimelineBlockAction.edit:
|
||||||
|
onEditEntry?.call(entry);
|
||||||
|
break;
|
||||||
|
case _TimelineBlockAction.delete:
|
||||||
|
onDeleteEntry?.call(entry);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
behavior: HitTestBehavior.opaque,
|
behavior: HitTestBehavior.opaque,
|
||||||
onLongPressStart: (details) async {
|
onLongPressStart: (details) async {
|
||||||
final overlay = Overlay.of(context);
|
|
||||||
final renderBox = overlay.context.findRenderObject() as RenderBox?;
|
|
||||||
if (renderBox == null) return;
|
|
||||||
if (defaultTargetPlatform == TargetPlatform.android) {
|
if (defaultTargetPlatform == TargetPlatform.android) {
|
||||||
HapticFeedback.lightImpact();
|
HapticFeedback.lightImpact();
|
||||||
}
|
}
|
||||||
final anchor = details.globalPosition + const Offset(0, -8);
|
await showContextMenuAt(details.globalPosition);
|
||||||
final position = RelativeRect.fromRect(
|
},
|
||||||
Rect.fromLTWH(
|
onSecondaryTapDown: (details) async {
|
||||||
anchor.dx,
|
await showContextMenuAt(details.globalPosition);
|
||||||
anchor.dy,
|
|
||||||
1,
|
|
||||||
1,
|
|
||||||
),
|
|
||||||
Offset.zero & renderBox.size,
|
|
||||||
);
|
|
||||||
|
|
||||||
final action = await showMenu<_TimelineBlockAction>(
|
|
||||||
context: context,
|
|
||||||
position: position,
|
|
||||||
items: [
|
|
||||||
if (onEditEntry != null)
|
|
||||||
const PopupMenuItem(
|
|
||||||
value: _TimelineBlockAction.edit,
|
|
||||||
child: Text('Edit'),
|
|
||||||
),
|
|
||||||
if (onDeleteEntry != null)
|
|
||||||
const PopupMenuItem(
|
|
||||||
value: _TimelineBlockAction.delete,
|
|
||||||
child: Text('Delete'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
|
|
||||||
final entry = block.entry;
|
|
||||||
if (action == null || entry == null) return;
|
|
||||||
switch (action) {
|
|
||||||
case _TimelineBlockAction.edit:
|
|
||||||
onEditEntry?.call(entry);
|
|
||||||
break;
|
|
||||||
case _TimelineBlockAction.delete:
|
|
||||||
onDeleteEntry?.call(entry);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
child: _ValueBlockView(block: block),
|
child: _ValueBlockView(block: block),
|
||||||
);
|
);
|
||||||
@@ -573,7 +577,7 @@ class _TimelineModel {
|
|||||||
_ValueSegment(
|
_ValueSegment(
|
||||||
start: start,
|
start: start,
|
||||||
end: end,
|
end: end,
|
||||||
value: entry.valueLabel,
|
value: _formatValueWithUnits(entry),
|
||||||
entry: entry,
|
entry: entry,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -676,6 +680,53 @@ class _TimelineModel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String _formatValueWithUnits(LocoAttrVersion entry) {
|
||||||
|
final raw = entry.valueLabel;
|
||||||
|
final code = entry.attrCode.toLowerCase();
|
||||||
|
final lowerRaw = raw.toLowerCase();
|
||||||
|
// Avoid double-appending if units already present.
|
||||||
|
final hasUnits = lowerRaw.contains('mm') ||
|
||||||
|
lowerRaw.contains('tonne') ||
|
||||||
|
lowerRaw.contains('kph') ||
|
||||||
|
lowerRaw.contains('mph');
|
||||||
|
|
||||||
|
double? asNumber = double.tryParse(raw);
|
||||||
|
String formatNumber(double value) {
|
||||||
|
if (value % 1 == 0) return value.toStringAsFixed(0);
|
||||||
|
return value.toStringAsFixed(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (code) {
|
||||||
|
case 'height':
|
||||||
|
case 'length':
|
||||||
|
case 'width':
|
||||||
|
case 'track_gauge':
|
||||||
|
if (hasUnits) return raw;
|
||||||
|
return asNumber != null ? '${formatNumber(asNumber)} mm' : '$raw mm';
|
||||||
|
case 'weight':
|
||||||
|
if (hasUnits) return raw;
|
||||||
|
return asNumber != null ? '${formatNumber(asNumber)} tonnes' : '$raw tonnes';
|
||||||
|
case 'power':
|
||||||
|
if (hasUnits) return raw;
|
||||||
|
return asNumber != null ? '${formatNumber(asNumber)} kW' : '$raw kW';
|
||||||
|
case 'tractive_effort':
|
||||||
|
if (hasUnits) return raw;
|
||||||
|
return asNumber != null ? '${formatNumber(asNumber)} kN' : '$raw kN';
|
||||||
|
case 'max_speed':
|
||||||
|
if (hasUnits) return raw;
|
||||||
|
if (asNumber != null) {
|
||||||
|
// Stored as kph.
|
||||||
|
final formatted = asNumber % 1 == 0
|
||||||
|
? asNumber.toStringAsFixed(0)
|
||||||
|
: asNumber.toStringAsFixed(1);
|
||||||
|
return '$formatted kph';
|
||||||
|
}
|
||||||
|
return '$raw kph';
|
||||||
|
default:
|
||||||
|
return raw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class _AxisSegment {
|
class _AxisSegment {
|
||||||
final DateTime start;
|
final DateTime start;
|
||||||
final DateTime end;
|
final DateTime end;
|
||||||
@@ -738,7 +789,15 @@ class _RowCell {
|
|||||||
color: Colors.transparent,
|
color: Colors.transparent,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
final displayStart = _formatDate(seg.start) ?? '';
|
final entry = seg.entry;
|
||||||
|
String displayStart = '';
|
||||||
|
if (entry != null) {
|
||||||
|
if ((entry.maskedValidFrom ?? '').trim().isNotEmpty) {
|
||||||
|
displayStart = entry.maskedValidFrom!.trim();
|
||||||
|
} else if (entry.validFrom != null) {
|
||||||
|
displayStart = _formatDate(entry.validFrom) ?? '';
|
||||||
|
}
|
||||||
|
}
|
||||||
return _RowCell(
|
return _RowCell(
|
||||||
value: seg.value,
|
value: seg.value,
|
||||||
rangeLabel: displayStart,
|
rangeLabel: displayStart,
|
||||||
|
|||||||
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'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,12 +4,15 @@ import 'dart:convert';
|
|||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:mileograph_flutter/components/calculator/calculator.dart';
|
import 'package:mileograph_flutter/components/calculator/calculator.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/traction.dart';
|
import 'package:mileograph_flutter/components/pages/traction.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.dart';
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
import 'package:mileograph_flutter/services/api_service.dart';
|
import 'package:mileograph_flutter/services/api_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/authservice.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.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:mileograph_flutter/services/navigation_guard.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
Future<bool> _handleExitIntent() async {
|
Future<bool> _handleExitIntent() async {
|
||||||
if (!mounted) return false;
|
if (!mounted) return false;
|
||||||
if (_isEditing) return true;
|
if (_isEditing) return true;
|
||||||
|
if (_activeLegShare != null) return true;
|
||||||
if (_formIsEmpty()) return true;
|
if (_formIsEmpty()) return true;
|
||||||
if (_activeDraftId != null && !_draftChangedFromBaseline()) {
|
if (_activeDraftId != null && !_draftChangedFromBaseline()) {
|
||||||
return true;
|
return true;
|
||||||
@@ -13,6 +14,9 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
if (choice == _ExitChoice.save) {
|
if (choice == _ExitChoice.save) {
|
||||||
await _saveDraftEntry(draftId: _activeDraftId);
|
await _saveDraftEntry(draftId: _activeDraftId);
|
||||||
} else if (choice == _ExitChoice.discard) {
|
} else if (choice == _ExitChoice.discard) {
|
||||||
|
// Delay reset to avoid setState during the dialog/build phase.
|
||||||
|
await Future<void>.delayed(Duration.zero);
|
||||||
|
if (!mounted) return false;
|
||||||
await _resetFormState(clearDraft: true);
|
await _resetFormState(clearDraft: true);
|
||||||
_activeDraftId = null;
|
_activeDraftId = null;
|
||||||
}
|
}
|
||||||
@@ -29,12 +33,21 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool _formIsEmpty() {
|
bool _formIsEmpty() {
|
||||||
|
final beginDelayVal = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelayVal = _parseDelayMinutes(_endDelayController.text);
|
||||||
return _startController.text.trim().isEmpty &&
|
return _startController.text.trim().isEmpty &&
|
||||||
_endController.text.trim().isEmpty &&
|
_endController.text.trim().isEmpty &&
|
||||||
_headcodeController.text.trim().isEmpty &&
|
_headcodeController.text.trim().isEmpty &&
|
||||||
_notesController.text.trim().isEmpty &&
|
_notesController.text.trim().isEmpty &&
|
||||||
_networkController.text.trim().isEmpty &&
|
_networkController.text.trim().isEmpty &&
|
||||||
_mileageController.text.trim().isEmpty &&
|
_mileageController.text.trim().isEmpty &&
|
||||||
|
_originController.text.trim().isEmpty &&
|
||||||
|
_destinationController.text.trim().isEmpty &&
|
||||||
|
beginDelayVal == 0 &&
|
||||||
|
endDelayVal == 0 &&
|
||||||
|
!_hasOriginTime &&
|
||||||
|
!_hasDestinationTime &&
|
||||||
|
!_hasEndTime &&
|
||||||
_routeResult == null &&
|
_routeResult == null &&
|
||||||
_tractionItems.length <= 1;
|
_tractionItems.length <= 1;
|
||||||
}
|
}
|
||||||
@@ -70,6 +83,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _openDrafts() async {
|
Future<void> _openDrafts() async {
|
||||||
|
if (_activeLegShare != null) return;
|
||||||
final selected = await Navigator.of(context).push<_StoredDraft>(
|
final selected = await Navigator.of(context).push<_StoredDraft>(
|
||||||
MaterialPageRoute(
|
MaterialPageRoute(
|
||||||
builder: (_) => _DraftListPage(
|
builder: (_) => _DraftListPage(
|
||||||
@@ -84,8 +98,37 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> _saveDraftManually() async {
|
||||||
|
if (_activeLegShare != null) return;
|
||||||
|
if (_savingDraft) return;
|
||||||
|
if (_formIsEmpty()) {
|
||||||
|
ScaffoldMessenger.maybeOf(context)?.showSnackBar(
|
||||||
|
const SnackBar(content: Text('Nothing to save yet.')),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final hadDraft = _activeDraftId != null;
|
||||||
|
_setState(() => _savingDraft = true);
|
||||||
|
try {
|
||||||
|
await _saveDraftEntry(draftId: _activeDraftId);
|
||||||
|
if (!mounted) return;
|
||||||
|
ScaffoldMessenger.maybeOf(context)?.showSnackBar(
|
||||||
|
SnackBar(content: Text(hadDraft ? 'Draft updated' : 'Draft saved')),
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
if (!mounted) return;
|
||||||
|
ScaffoldMessenger.maybeOf(context)?.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to save draft: $e')),
|
||||||
|
);
|
||||||
|
} finally {
|
||||||
|
if (mounted) _setState(() => _savingDraft = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> _saveDraft() async {
|
Future<void> _saveDraft() async {
|
||||||
if (_restoringDraft || !_draftPersistenceEnabled) return;
|
if (_restoringDraft || !_draftPersistenceEnabled || _activeLegShare != null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
final prefs = await SharedPreferences.getInstance();
|
final prefs = await SharedPreferences.getInstance();
|
||||||
final draft = {
|
final draft = {
|
||||||
"date": _selectedDate.toIso8601String(),
|
"date": _selectedDate.toIso8601String(),
|
||||||
@@ -96,6 +139,30 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
"notes": _notesController.text,
|
"notes": _notesController.text,
|
||||||
"mileage": _mileageController.text,
|
"mileage": _mileageController.text,
|
||||||
"network": _networkController.text,
|
"network": _networkController.text,
|
||||||
|
"origin": _originController.text,
|
||||||
|
"destination": _destinationController.text,
|
||||||
|
"hasEndTime": _hasEndTime,
|
||||||
|
"hasOriginTime": _hasOriginTime,
|
||||||
|
"hasDestinationTime": _hasDestinationTime,
|
||||||
|
"endDate": _selectedEndDate.toIso8601String(),
|
||||||
|
"endTime": {
|
||||||
|
"hour": _selectedEndTime.hour,
|
||||||
|
"minute": _selectedEndTime.minute,
|
||||||
|
},
|
||||||
|
"originDate": _selectedOriginDate.toIso8601String(),
|
||||||
|
"originTime": {
|
||||||
|
"hour": _selectedOriginTime.hour,
|
||||||
|
"minute": _selectedOriginTime.minute,
|
||||||
|
},
|
||||||
|
"destinationDate": _selectedDestinationDate.toIso8601String(),
|
||||||
|
"destinationTime": {
|
||||||
|
"hour": _selectedDestinationTime.hour,
|
||||||
|
"minute": _selectedDestinationTime.minute,
|
||||||
|
},
|
||||||
|
"matchOriginToEntry": _matchOriginToEntry,
|
||||||
|
"matchDestinationToEntry": _matchDestinationToEntry,
|
||||||
|
"beginDelay": _parseDelayMinutes(_beginDelayController.text),
|
||||||
|
"endDelay": _parseDelayMinutes(_endDelayController.text),
|
||||||
"useManualMileage": _useManualMileage,
|
"useManualMileage": _useManualMileage,
|
||||||
"selectedTripId": _selectedTripId,
|
"selectedTripId": _selectedTripId,
|
||||||
"routeResult": _routeResult == null
|
"routeResult": _routeResult == null
|
||||||
@@ -173,7 +240,14 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
required String id,
|
required String id,
|
||||||
bool includeTimestamp = true,
|
bool includeTimestamp = true,
|
||||||
}) {
|
}) {
|
||||||
|
final units = _distanceUnits(context);
|
||||||
final routeStations = _routeResult?.calculatedRoute ?? [];
|
final routeStations = _routeResult?.calculatedRoute ?? [];
|
||||||
|
final endTime = _legEndDateTime;
|
||||||
|
final originTime = _originDateTime;
|
||||||
|
final destinationTime = _destinationDateTime;
|
||||||
|
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelay =
|
||||||
|
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||||
final startVal = _useManualMileage
|
final startVal = _useManualMileage
|
||||||
? _startController.text.trim()
|
? _startController.text.trim()
|
||||||
: (routeStations.isNotEmpty ? routeStations.first : '');
|
: (routeStations.isNotEmpty ? routeStations.first : '');
|
||||||
@@ -181,30 +255,36 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
? _endController.text.trim()
|
? _endController.text.trim()
|
||||||
: (routeStations.isNotEmpty ? routeStations.last : '');
|
: (routeStations.isNotEmpty ? routeStations.last : '');
|
||||||
final mileageVal = _useManualMileage
|
final mileageVal = _useManualMileage
|
||||||
? double.tryParse(_mileageController.text.trim()) ?? 0
|
? (units.milesFromInput(_mileageController.text.trim()) ?? 0)
|
||||||
: (_routeResult?.distance ?? 0);
|
: (_routeResult?.distance ?? 0);
|
||||||
final tractionPayload = _buildTractionPayload();
|
final tractionPayload = _buildTractionPayload();
|
||||||
|
final commonPayload = {
|
||||||
|
"leg_trip": _selectedTripId,
|
||||||
|
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||||
|
if (endTime != null) "leg_end_time": endTime.toIso8601String(),
|
||||||
|
if (originTime != null) "leg_origin_time": originTime.toIso8601String(),
|
||||||
|
if (destinationTime != null)
|
||||||
|
"leg_destination_time": destinationTime.toIso8601String(),
|
||||||
|
"leg_notes": _notesController.text.trim(),
|
||||||
|
"leg_headcode": _headcodeController.text.trim(),
|
||||||
|
"leg_network": _networkController.text.trim(),
|
||||||
|
"leg_origin": _originController.text.trim(),
|
||||||
|
"leg_destination": _destinationController.text.trim(),
|
||||||
|
"leg_begin_delay": beginDelay,
|
||||||
|
if (_hasEndTime) "leg_end_delay": endDelay,
|
||||||
|
"locos": tractionPayload,
|
||||||
|
};
|
||||||
final payload = _useManualMileage
|
final payload = _useManualMileage
|
||||||
? {
|
? {
|
||||||
"leg_trip": _selectedTripId,
|
...commonPayload,
|
||||||
"leg_start": startVal,
|
"leg_start": startVal,
|
||||||
"leg_end": endVal,
|
"leg_end": endVal,
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"leg_distance": mileageVal,
|
"leg_distance": mileageVal,
|
||||||
"isKilometers": false,
|
"isKilometers": false,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
"leg_trip": _selectedTripId,
|
...commonPayload,
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_route": routeStations,
|
"leg_route": routeStations,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
"leg_mileage": _routeResult?.distance ?? mileageVal,
|
"leg_mileage": _routeResult?.distance ?? mileageVal,
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
@@ -212,6 +292,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
if (includeTimestamp) "saved_at": DateTime.now().toIso8601String(),
|
if (includeTimestamp) "saved_at": DateTime.now().toIso8601String(),
|
||||||
"mode": _useManualMileage ? 'manual' : 'auto',
|
"mode": _useManualMileage ? 'manual' : 'auto',
|
||||||
"payload": payload,
|
"payload": payload,
|
||||||
|
"mileageText": _mileageController.text.trim(),
|
||||||
"routeResult": _routeResult == null
|
"routeResult": _routeResult == null
|
||||||
? null
|
? null
|
||||||
: {
|
: {
|
||||||
@@ -238,8 +319,32 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
final beginTime = beginStr == null
|
final beginTime = beginStr == null
|
||||||
? DateTime.now()
|
? DateTime.now()
|
||||||
: DateTime.tryParse(beginStr) ?? DateTime.now();
|
: DateTime.tryParse(beginStr) ?? DateTime.now();
|
||||||
|
final originTimeStr = payload['leg_origin_time'] as String?;
|
||||||
|
final destinationTimeStr = payload['leg_destination_time'] as String?;
|
||||||
|
final originTime =
|
||||||
|
originTimeStr == null ? null : DateTime.tryParse(originTimeStr);
|
||||||
|
final destinationTime = destinationTimeStr == null
|
||||||
|
? null
|
||||||
|
: DateTime.tryParse(destinationTimeStr);
|
||||||
|
final endStr = payload['leg_end_time'] as String?;
|
||||||
|
final endTime =
|
||||||
|
endStr == null ? null : DateTime.tryParse(endStr);
|
||||||
|
final beginDelay =
|
||||||
|
_parseDelayMinutes('${payload['leg_begin_delay'] ?? ''}');
|
||||||
|
final endDelay =
|
||||||
|
_parseDelayMinutes('${payload['leg_end_delay'] ?? ''}');
|
||||||
|
final hasEndTime = endTime != null || endDelay != 0;
|
||||||
|
final matchOrigin = data['matchOriginToEntry'] == true;
|
||||||
|
final matchDestination = data['matchDestinationToEntry'] == true;
|
||||||
|
final hasOriginTime =
|
||||||
|
originTime != null || data['hasOriginTime'] == true;
|
||||||
|
final hasDestinationTime =
|
||||||
|
destinationTime != null || data['hasDestinationTime'] == true;
|
||||||
|
final origin = payload['leg_origin'] as String? ?? '';
|
||||||
|
final destination = payload['leg_destination'] as String? ?? '';
|
||||||
final tripRaw = payload['leg_trip'];
|
final tripRaw = payload['leg_trip'];
|
||||||
final tripId = tripRaw is num ? tripRaw.toInt() : null;
|
final tripId = tripRaw is num ? tripRaw.toInt() : null;
|
||||||
|
final units = _distanceUnits(context);
|
||||||
|
|
||||||
List<String> routeStations = [];
|
List<String> routeStations = [];
|
||||||
RouteResult? restoredRouteResult;
|
RouteResult? restoredRouteResult;
|
||||||
@@ -285,6 +390,21 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
_useManualMileage = useManual;
|
_useManualMileage = useManual;
|
||||||
_selectedDate = beginTime;
|
_selectedDate = beginTime;
|
||||||
_selectedTime = TimeOfDay.fromDateTime(beginTime);
|
_selectedTime = TimeOfDay.fromDateTime(beginTime);
|
||||||
|
_selectedEndDate = endTime ?? beginTime;
|
||||||
|
_selectedEndTime = TimeOfDay.fromDateTime(endTime ?? beginTime);
|
||||||
|
_hasEndTime = hasEndTime;
|
||||||
|
_matchOriginToEntry = matchOrigin;
|
||||||
|
_matchDestinationToEntry = matchDestination;
|
||||||
|
_selectedOriginDate = originTime ?? beginTime;
|
||||||
|
_selectedOriginTime =
|
||||||
|
TimeOfDay.fromDateTime(originTime ?? beginTime);
|
||||||
|
_selectedDestinationDate =
|
||||||
|
destinationTime ?? endTime ?? beginTime;
|
||||||
|
_selectedDestinationTime = TimeOfDay.fromDateTime(
|
||||||
|
destinationTime ?? endTime ?? beginTime,
|
||||||
|
);
|
||||||
|
_hasOriginTime = hasOriginTime;
|
||||||
|
_hasDestinationTime = hasDestinationTime;
|
||||||
_selectedTripId = tripId == null || tripId == 0 ? null : tripId;
|
_selectedTripId = tripId == null || tripId == 0 ? null : tripId;
|
||||||
_routeResult = restoredRouteResult;
|
_routeResult = restoredRouteResult;
|
||||||
_headcodeController.text = (payload['leg_headcode'] as String? ?? '')
|
_headcodeController.text = (payload['leg_headcode'] as String? ?? '')
|
||||||
@@ -292,6 +412,10 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
_networkController.text = (payload['leg_network'] as String? ?? '')
|
_networkController.text = (payload['leg_network'] as String? ?? '')
|
||||||
.toUpperCase();
|
.toUpperCase();
|
||||||
_notesController.text = payload['leg_notes'] ?? '';
|
_notesController.text = payload['leg_notes'] ?? '';
|
||||||
|
_originController.text = origin;
|
||||||
|
_destinationController.text = destination;
|
||||||
|
_beginDelayController.text = beginDelay.toString();
|
||||||
|
_endDelayController.text = endDelay.toString();
|
||||||
|
|
||||||
if (useManual) {
|
if (useManual) {
|
||||||
_startController.text = payload['leg_start'] ?? '';
|
_startController.text = payload['leg_start'] ?? '';
|
||||||
@@ -299,14 +423,20 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
final miles = (payload['leg_distance'] as num?)?.toDouble();
|
final miles = (payload['leg_distance'] as num?)?.toDouble();
|
||||||
_mileageController.text = miles == null || miles == 0
|
_mileageController.text = miles == null || miles == 0
|
||||||
? ''
|
? ''
|
||||||
: miles.toStringAsFixed(2);
|
: units.format(
|
||||||
|
miles,
|
||||||
|
decimals: 2,
|
||||||
|
includeUnit: false,
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
_startController.text =
|
_startController.text =
|
||||||
routeStations.isNotEmpty ? routeStations.first : '';
|
routeStations.isNotEmpty ? routeStations.first : '';
|
||||||
_endController.text =
|
_endController.text =
|
||||||
routeStations.isNotEmpty ? routeStations.last : '';
|
routeStations.isNotEmpty ? routeStations.last : '';
|
||||||
final dist = _routeResult?.distance ?? 0;
|
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'];
|
final tractionRaw = data['tractionItems'];
|
||||||
@@ -332,6 +462,7 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
includeTimestamp: false,
|
includeTimestamp: false,
|
||||||
);
|
);
|
||||||
_restoringDraft = false;
|
_restoringDraft = false;
|
||||||
|
_scheduleMatchUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _loadDraft() async {
|
Future<void> _loadDraft() async {
|
||||||
|
|||||||
@@ -150,6 +150,7 @@ class _DraftListBodyState extends State<_DraftListBody> {
|
|||||||
final payload = draft.data['payload'];
|
final payload = draft.data['payload'];
|
||||||
if (payload is! Map) return '';
|
if (payload is! Map) return '';
|
||||||
final map = Map<String, dynamic>.from(payload);
|
final map = Map<String, dynamic>.from(payload);
|
||||||
|
final units = context.read<DistanceUnitService>();
|
||||||
final parts = <String>[];
|
final parts = <String>[];
|
||||||
if ((map['leg_trip'] as int? ?? 0) != 0) {
|
if ((map['leg_trip'] as int? ?? 0) != 0) {
|
||||||
parts.add('Trip ${map['leg_trip']}');
|
parts.add('Trip ${map['leg_trip']}');
|
||||||
@@ -164,7 +165,7 @@ class _DraftListBodyState extends State<_DraftListBody> {
|
|||||||
(map['leg_distance'] as num?)?.toDouble() ??
|
(map['leg_distance'] as num?)?.toDouble() ??
|
||||||
(map['leg_mileage'] as num?)?.toDouble();
|
(map['leg_mileage'] as num?)?.toDouble();
|
||||||
if (mileage != null && mileage > 0) {
|
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 &&
|
} else if (map['leg_route'] is List &&
|
||||||
(map['leg_route'] as List).isNotEmpty) {
|
(map['leg_route'] as List).isNotEmpty) {
|
||||||
parts.add('Route ${(map['leg_route'] as List).length} stops');
|
parts.add('Route ${(map['leg_route'] as List).length} stops');
|
||||||
@@ -176,4 +177,3 @@ class _DraftListBodyState extends State<_DraftListBody> {
|
|||||||
return parts.join(' • ');
|
return parts.join(' • ');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
part of 'new_entry.dart';
|
part of 'new_entry.dart';
|
||||||
|
|
||||||
class _CalculatorPickerPage extends StatelessWidget {
|
class _CalculatorPickerPage extends StatelessWidget {
|
||||||
const _CalculatorPickerPage({required this.onResult});
|
const _CalculatorPickerPage({
|
||||||
|
required this.onResult,
|
||||||
|
this.initialStations,
|
||||||
|
});
|
||||||
final ValueChanged<RouteResult> onResult;
|
final ValueChanged<RouteResult> onResult;
|
||||||
|
final List<String>? initialStations;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@@ -14,8 +18,10 @@ class _CalculatorPickerPage extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
title: const Text('Mileage calculator'),
|
title: const Text('Mileage calculator'),
|
||||||
),
|
),
|
||||||
body: RouteCalculator(onApplyRoute: onResult),
|
body: RouteCalculator(
|
||||||
|
onApplyRoute: onResult,
|
||||||
|
initialStations: initialStations,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,11 +4,12 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
Future<bool> _validateRequiredFields() async {
|
Future<bool> _validateRequiredFields() async {
|
||||||
final missing = <String>[];
|
final missing = <String>[];
|
||||||
|
|
||||||
|
final units = _distanceUnits(context);
|
||||||
if (_useManualMileage) {
|
if (_useManualMileage) {
|
||||||
if (_startController.text.trim().isEmpty) missing.add('From');
|
if (_startController.text.trim().isEmpty) missing.add('From');
|
||||||
if (_endController.text.trim().isEmpty) missing.add('To');
|
if (_endController.text.trim().isEmpty) missing.add('To');
|
||||||
final mileageText = _mileageController.text.trim();
|
final mileageText = _mileageController.text.trim();
|
||||||
if (double.tryParse(mileageText) == null) {
|
if (mileageText.isEmpty || units.milesFromInput(mileageText) == null) {
|
||||||
missing.add('Mileage');
|
missing.add('Mileage');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -27,7 +28,8 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
final fieldList = missing.join(', ');
|
final fieldList = missing.join(', ');
|
||||||
await showDialog<void>(
|
await showDialog<void>(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (_) => AlertDialog(
|
useRootNavigator: false,
|
||||||
|
builder: (dialogCtx) => AlertDialog(
|
||||||
title: const Text('Required field missing'),
|
title: const Text('Required field missing'),
|
||||||
content: Text(
|
content: Text(
|
||||||
missing.length == 1
|
missing.length == 1
|
||||||
@@ -36,7 +38,7 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () => Navigator.of(context).pop(),
|
onPressed: () => Navigator.of(dialogCtx).pop(),
|
||||||
child: const Text('OK'),
|
child: const Text('OK'),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@@ -46,8 +48,11 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _submit() async {
|
Future<void> _submit() async {
|
||||||
if (!_formKey.currentState!.validate()) return;
|
final form = _formKey.currentState;
|
||||||
|
if (form == null) return;
|
||||||
|
if (!form.validate()) return;
|
||||||
if (!await _validateRequiredFields()) return;
|
if (!await _validateRequiredFields()) return;
|
||||||
|
if (!mounted) return;
|
||||||
final routeStations = _routeResult?.calculatedRoute ?? [];
|
final routeStations = _routeResult?.calculatedRoute ?? [];
|
||||||
final startVal = _useManualMileage
|
final startVal = _useManualMileage
|
||||||
? _startController.text.trim()
|
? _startController.text.trim()
|
||||||
@@ -55,10 +60,17 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
final endVal = _useManualMileage
|
final endVal = _useManualMileage
|
||||||
? _endController.text.trim()
|
? _endController.text.trim()
|
||||||
: (routeStations.isNotEmpty ? routeStations.last : '');
|
: (routeStations.isNotEmpty ? routeStations.last : '');
|
||||||
|
final units = _distanceUnits(context);
|
||||||
final mileageVal = _useManualMileage
|
final mileageVal = _useManualMileage
|
||||||
? double.tryParse(_mileageController.text.trim()) ?? 0
|
? (units.milesFromInput(_mileageController.text.trim()) ?? 0)
|
||||||
: (_routeResult?.distance ?? 0);
|
: (_routeResult?.distance ?? 0);
|
||||||
final tractionPayload = _buildTractionPayload();
|
final tractionPayload = _buildTractionPayload();
|
||||||
|
final endTime = _legEndDateTime;
|
||||||
|
final originTime = _originDateTime;
|
||||||
|
final destinationTime = _destinationDateTime;
|
||||||
|
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelay =
|
||||||
|
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||||
final snapshot = _buildSubmissionSnapshot(
|
final snapshot = _buildSubmissionSnapshot(
|
||||||
routeStations: routeStations,
|
routeStations: routeStations,
|
||||||
startVal: startVal,
|
startVal: startVal,
|
||||||
@@ -79,19 +91,33 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
final isEditingExisting = _isEditing && widget.editLegId != null;
|
final isEditingExisting = _isEditing && widget.editLegId != null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
final commonPayload = {
|
||||||
|
if (isEditingExisting) "leg_id": widget.editLegId,
|
||||||
|
"leg_trip": _selectedTripId,
|
||||||
|
"leg_begin_time": _legDateTime.toIso8601String(),
|
||||||
|
if (endTime != null) "leg_end_time": endTime.toIso8601String(),
|
||||||
|
if (originTime != null)
|
||||||
|
"leg_origin_time": originTime.toIso8601String(),
|
||||||
|
if (destinationTime != null)
|
||||||
|
"leg_destination_time": destinationTime.toIso8601String(),
|
||||||
|
"leg_notes": _notesController.text.trim(),
|
||||||
|
"leg_headcode": _headcodeController.text.trim(),
|
||||||
|
"leg_network": _networkController.text.trim(),
|
||||||
|
"leg_origin": _originController.text.trim(),
|
||||||
|
"leg_destination": _destinationController.text.trim(),
|
||||||
|
"leg_begin_delay": beginDelay,
|
||||||
|
if (_hasEndTime) "leg_end_delay": endDelay,
|
||||||
|
"locos": tractionPayload,
|
||||||
|
if (_activeLegShare != null) "leg_share_id": _activeLegShare!.id,
|
||||||
|
"share_user_ids": _shareUserIds.toList(),
|
||||||
|
};
|
||||||
if (_useManualMileage) {
|
if (_useManualMileage) {
|
||||||
final body = {
|
final body = {
|
||||||
if (isEditingExisting) "leg_id": widget.editLegId,
|
...commonPayload,
|
||||||
"leg_trip": _selectedTripId,
|
|
||||||
"leg_start": startVal,
|
"leg_start": startVal,
|
||||||
"leg_end": endVal,
|
"leg_end": endVal,
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"leg_distance": mileageVal,
|
"leg_distance": mileageVal,
|
||||||
"isKilometers": false,
|
"isKilometers": false,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
};
|
};
|
||||||
if (isEditingExisting) {
|
if (isEditingExisting) {
|
||||||
await api.put('/update', body);
|
await api.put('/update', body);
|
||||||
@@ -100,14 +126,8 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
final body = {
|
final body = {
|
||||||
if (isEditingExisting) "leg_id": widget.editLegId,
|
...commonPayload,
|
||||||
"leg_trip": _selectedTripId,
|
|
||||||
"leg_begin_time": _legDateTime.toIso8601String(),
|
|
||||||
"leg_route": routeStations,
|
"leg_route": routeStations,
|
||||||
"leg_notes": _notesController.text.trim(),
|
|
||||||
"leg_headcode": _headcodeController.text.trim(),
|
|
||||||
"leg_network": _networkController.text.trim(),
|
|
||||||
"locos": tractionPayload,
|
|
||||||
};
|
};
|
||||||
if (isEditingExisting) {
|
if (isEditingExisting) {
|
||||||
await api.put('/update', body);
|
await api.put('/update', body);
|
||||||
@@ -117,6 +137,10 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
dataService.refreshLegs();
|
dataService.refreshLegs();
|
||||||
|
await dataService.fetchNotifications();
|
||||||
|
if (_shareNotificationId != null) {
|
||||||
|
await dataService.dismissNotifications([_shareNotificationId!]);
|
||||||
|
}
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
messenger?.showSnackBar(
|
messenger?.showSnackBar(
|
||||||
SnackBar(
|
SnackBar(
|
||||||
@@ -125,7 +149,9 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
);
|
);
|
||||||
_lastSubmittedSnapshot = snapshot;
|
_lastSubmittedSnapshot = snapshot;
|
||||||
_activeDraftId = null;
|
_activeDraftId = null;
|
||||||
} catch (e) {
|
} catch (e, st) {
|
||||||
|
debugPrint('Leg submit/update failed: $e');
|
||||||
|
debugPrintStack(stackTrace: st);
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
messenger?.showSnackBar(
|
messenger?.showSnackBar(
|
||||||
SnackBar(content: Text('Failed to submit: $e')),
|
SnackBar(content: Text('Failed to submit: $e')),
|
||||||
@@ -142,18 +168,33 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
required double mileageVal,
|
required double mileageVal,
|
||||||
required List<Map<String, dynamic>> tractionPayload,
|
required List<Map<String, dynamic>> tractionPayload,
|
||||||
}) {
|
}) {
|
||||||
|
final beginDelay = _parseDelayMinutes(_beginDelayController.text);
|
||||||
|
final endDelay =
|
||||||
|
_hasEndTime ? _parseDelayMinutes(_endDelayController.text) : 0;
|
||||||
return {
|
return {
|
||||||
"legId": widget.editLegId,
|
"legId": widget.editLegId,
|
||||||
"useManualMileage": _useManualMileage,
|
"useManualMileage": _useManualMileage,
|
||||||
"tripId": _selectedTripId,
|
"tripId": _selectedTripId,
|
||||||
"legDateTime": _legDateTime.toIso8601String(),
|
"legDateTime": _legDateTime.toIso8601String(),
|
||||||
|
"legEndTime": _legEndDateTime?.toIso8601String(),
|
||||||
|
"hasEndTime": _hasEndTime,
|
||||||
|
"legOriginTime": _originDateTime?.toIso8601String(),
|
||||||
|
"hasOriginTime": _hasOriginTime,
|
||||||
|
"legDestinationTime": _destinationDateTime?.toIso8601String(),
|
||||||
|
"hasDestinationTime": _hasDestinationTime,
|
||||||
"start": startVal,
|
"start": startVal,
|
||||||
"end": endVal,
|
"end": endVal,
|
||||||
|
"origin": _originController.text.trim(),
|
||||||
|
"destination": _destinationController.text.trim(),
|
||||||
"routeStations": routeStations,
|
"routeStations": routeStations,
|
||||||
"mileage": mileageVal,
|
"mileage": mileageVal,
|
||||||
"network": _networkController.text.trim(),
|
"network": _networkController.text.trim(),
|
||||||
"notes": _notesController.text.trim(),
|
"notes": _notesController.text.trim(),
|
||||||
"headcode": _headcodeController.text.trim(),
|
"headcode": _headcodeController.text.trim(),
|
||||||
|
"beginDelay": beginDelay,
|
||||||
|
"endDelay": endDelay,
|
||||||
|
"legShareId": _activeLegShare?.id,
|
||||||
|
"shareUserIds": _shareUserIds.toList(),
|
||||||
"locos": tractionPayload,
|
"locos": tractionPayload,
|
||||||
"routeResult": _routeResult == null
|
"routeResult": _routeResult == null
|
||||||
? null
|
? null
|
||||||
@@ -189,6 +230,7 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _resetFormState({bool clearDraft = false}) async {
|
Future<void> _resetFormState({bool clearDraft = false}) async {
|
||||||
|
final hadShare = _activeLegShare != null || widget.legShare != null;
|
||||||
_formKey.currentState?.reset();
|
_formKey.currentState?.reset();
|
||||||
_startController.clear();
|
_startController.clear();
|
||||||
_endController.clear();
|
_endController.clear();
|
||||||
@@ -196,19 +238,46 @@ extension _NewEntrySubmitLogic on _NewEntryPageState {
|
|||||||
_notesController.clear();
|
_notesController.clear();
|
||||||
_mileageController.clear();
|
_mileageController.clear();
|
||||||
_networkController.clear();
|
_networkController.clear();
|
||||||
|
_originController.clear();
|
||||||
|
_destinationController.clear();
|
||||||
|
_beginDelayController.text = '0';
|
||||||
|
_endDelayController.text = '0';
|
||||||
final now = DateTime.now();
|
final now = DateTime.now();
|
||||||
_setState(() {
|
_setState(() {
|
||||||
_selectedDate = now;
|
_selectedDate = now;
|
||||||
_selectedTime = TimeOfDay.fromDateTime(now);
|
_selectedTime = TimeOfDay.fromDateTime(now);
|
||||||
|
_selectedEndDate = now;
|
||||||
|
_selectedEndTime = TimeOfDay.fromDateTime(now);
|
||||||
|
_selectedOriginDate = now;
|
||||||
|
_selectedOriginTime = TimeOfDay.fromDateTime(now);
|
||||||
|
_selectedDestinationDate = now;
|
||||||
|
_selectedDestinationTime = TimeOfDay.fromDateTime(now);
|
||||||
_useManualMileage = false;
|
_useManualMileage = false;
|
||||||
|
_hasEndTime = false;
|
||||||
|
_hasOriginTime = false;
|
||||||
|
_hasDestinationTime = false;
|
||||||
|
_matchOriginToEntry = false;
|
||||||
|
_matchDestinationToEntry = false;
|
||||||
|
_matchUpdateScheduled = false;
|
||||||
_routeResult = null;
|
_routeResult = null;
|
||||||
|
_activeLegShare = null;
|
||||||
|
_sharedFromUser = null;
|
||||||
|
_shareNotificationId = null;
|
||||||
|
_shareUserIds.clear();
|
||||||
|
_shareUsers.clear();
|
||||||
_tractionItems
|
_tractionItems
|
||||||
..clear()
|
..clear()
|
||||||
..add(_TractionItem.marker());
|
..add(_TractionItem.marker());
|
||||||
_selectedTripId = null;
|
_selectedTripId = null;
|
||||||
_submitting = false;
|
_submitting = false;
|
||||||
_activeDraftId = null;
|
_activeDraftId = null;
|
||||||
|
_savingDraft = false;
|
||||||
|
_loadedDraftSnapshot = null;
|
||||||
});
|
});
|
||||||
|
if (hadShare && mounted) {
|
||||||
|
// Clear any share params from the URL when resetting.
|
||||||
|
GoRouter.of(context).go('/add');
|
||||||
|
}
|
||||||
if (clearDraft) {
|
if (clearDraft) {
|
||||||
await _clearDraft();
|
await _clearDraft();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -73,6 +73,8 @@ extension _NewEntryTractionLogic on _NewEntryPageState {
|
|||||||
for (var i = 0; i < _tractionItems.length; i++) {
|
for (var i = 0; i < _tractionItems.length; i++) {
|
||||||
final item = _tractionItems[i];
|
final item = _tractionItems[i];
|
||||||
if (item.isMarker || item.loco == null) continue;
|
if (item.isMarker || item.loco == null) continue;
|
||||||
|
final locoId = item.loco!.id;
|
||||||
|
if (locoId == 0) continue;
|
||||||
int allocPos;
|
int allocPos;
|
||||||
if (i > markerIndex) {
|
if (i > markerIndex) {
|
||||||
allocPos = -(i - markerIndex);
|
allocPos = -(i - markerIndex);
|
||||||
@@ -80,8 +82,7 @@ extension _NewEntryTractionLogic on _NewEntryPageState {
|
|||||||
allocPos = (markerIndex - 1) - i;
|
allocPos = (markerIndex - 1) - i;
|
||||||
}
|
}
|
||||||
payload.add({
|
payload.add({
|
||||||
"loco_type": item.loco!.type,
|
"loco_id": locoId,
|
||||||
"loco_number": item.loco!.number,
|
|
||||||
"alloc_pos": allocPos,
|
"alloc_pos": allocPos,
|
||||||
"alloc_powering": item.powering ? 1 : 0,
|
"alloc_powering": item.powering ? 1 : 0,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -84,6 +84,13 @@ class _NewTractionPageState extends State<NewTractionPage> {
|
|||||||
'traction_motors': TextEditingController(),
|
'traction_motors': TextEditingController(),
|
||||||
'build_date': TextEditingController(),
|
'build_date': TextEditingController(),
|
||||||
};
|
};
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
if (!mounted) return;
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
if (data.locoClasses.isEmpty) {
|
||||||
|
data.fetchClassList();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -254,6 +261,10 @@ class _NewTractionPageState extends State<NewTractionPage> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final isActive = _statusIsActive;
|
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 size = MediaQuery.of(context).size;
|
||||||
final isNarrow = size.width < 720;
|
final isNarrow = size.width < 720;
|
||||||
final fieldWidth = isNarrow ? double.infinity : 340.0;
|
final fieldWidth = isNarrow ? double.infinity : 340.0;
|
||||||
@@ -269,6 +280,89 @@ class _NewTractionPageState extends State<NewTractionPage> {
|
|||||||
double? widthOverride,
|
double? widthOverride,
|
||||||
String? Function(String?)? validator,
|
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(
|
return SizedBox(
|
||||||
width: widthOverride ?? fieldWidth,
|
width: widthOverride ?? fieldWidth,
|
||||||
child: TextFormField(
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
386
lib/components/pages/settings.dart
Normal file
@@ -0,0 +1,386 @@
|
|||||||
|
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';
|
||||||
|
|
||||||
|
class SettingsPage extends StatefulWidget {
|
||||||
|
const SettingsPage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<SettingsPage> createState() => _SettingsPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SettingsPageState extends State<SettingsPage> {
|
||||||
|
late final TextEditingController _endpointController;
|
||||||
|
bool _saving = false;
|
||||||
|
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();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<String?> _probeVersion(String url) async {
|
||||||
|
try {
|
||||||
|
var uri = Uri.parse(url.trim());
|
||||||
|
if (uri.scheme.isEmpty) {
|
||||||
|
uri = Uri.parse('https://$url');
|
||||||
|
}
|
||||||
|
// Probe the provided API endpoint as-is.
|
||||||
|
final target = uri;
|
||||||
|
final res = await http.get(target).timeout(const Duration(seconds: 10));
|
||||||
|
debugPrint(
|
||||||
|
'Endpoint probe ${target.toString()} -> ${res.statusCode} ${res.body}',
|
||||||
|
);
|
||||||
|
if (res.statusCode < 200 || res.statusCode >= 300) return null;
|
||||||
|
final body = res.body.trim();
|
||||||
|
debugPrint('Endpoint probe body: $body');
|
||||||
|
// Try JSON first
|
||||||
|
String? version;
|
||||||
|
try {
|
||||||
|
final parsed = jsonDecode(body);
|
||||||
|
debugPrint('Endpoint probe parsed: $parsed');
|
||||||
|
if (parsed is Map && parsed['version'] is String) {
|
||||||
|
version = parsed['version'] as String;
|
||||||
|
} else if (parsed is String) {
|
||||||
|
final candidate = parsed.trim().replaceAll('"', '');
|
||||||
|
if (RegExp(r'^\d+\.\d+\.\d+$').hasMatch(candidate)) {
|
||||||
|
version = candidate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (_) {
|
||||||
|
// fall back to raw body parsing
|
||||||
|
}
|
||||||
|
version ??= body.split(RegExp(r'\s+')).firstWhere(
|
||||||
|
(part) => RegExp(r'^\d+\.\d+\.\d+$').hasMatch(part),
|
||||||
|
orElse: () => '',
|
||||||
|
);
|
||||||
|
if (version.isEmpty) return null;
|
||||||
|
final isValid = RegExp(r'^\d+\.\d+\.\d+$').hasMatch(version);
|
||||||
|
return isValid ? version : null;
|
||||||
|
} catch (_) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _save() async {
|
||||||
|
final endpointService = context.read<EndpointService>();
|
||||||
|
final dataService = context.read<DataService>();
|
||||||
|
final messenger = ScaffoldMessenger.of(context);
|
||||||
|
final value = _endpointController.text.trim();
|
||||||
|
if (value.isEmpty) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
const SnackBar(content: Text('Please enter an endpoint URL.')),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setState(() => _saving = true);
|
||||||
|
try {
|
||||||
|
final version = await _probeVersion(value);
|
||||||
|
if (version == null) {
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
const SnackBar(
|
||||||
|
content: Text('Endpoint test failed: no valid version returned.'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await endpointService.setBaseUrl(value);
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(content: Text('Endpoint set to "$value" ($version)')),
|
||||||
|
);
|
||||||
|
await Future.wait([
|
||||||
|
dataService.fetchHomepageStats(),
|
||||||
|
dataService.fetchOnThisDay(),
|
||||||
|
dataService.fetchTrips(),
|
||||||
|
dataService.fetchHadTraction(),
|
||||||
|
dataService.fetchLatestLocoChanges(),
|
||||||
|
dataService.fetchLegs(),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
if (mounted) {
|
||||||
|
messenger.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to save endpoint: $e')),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
if (mounted) {
|
||||||
|
setState(() => _saving = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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>();
|
||||||
|
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()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('Settings'),
|
||||||
|
leading: IconButton(
|
||||||
|
icon: const Icon(Icons.arrow_back),
|
||||||
|
onPressed: () {
|
||||||
|
final navigator = Navigator.of(context);
|
||||||
|
if (navigator.canPop()) {
|
||||||
|
navigator.pop();
|
||||||
|
} else {
|
||||||
|
context.go('/');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
body: 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(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Text(
|
||||||
|
'Set the base URL for the Mileograph API. Leave blank to use the default.',
|
||||||
|
style: Theme.of(context).textTheme.bodySmall,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
TextField(
|
||||||
|
controller: _endpointController,
|
||||||
|
decoration: const InputDecoration(
|
||||||
|
labelText: 'Endpoint URL',
|
||||||
|
hintText: 'https://mileograph.co.uk/api/v1',
|
||||||
|
border: OutlineInputBorder(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
FilledButton.icon(
|
||||||
|
onPressed: _saving ? null : _save,
|
||||||
|
icon: _saving
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.save),
|
||||||
|
label: const Text('Save endpoint'),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
TextButton(
|
||||||
|
onPressed: _saving
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
_endpointController.text =
|
||||||
|
EndpointService.defaultBaseUrl;
|
||||||
|
},
|
||||||
|
child: const Text('Reset to default'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Text(
|
||||||
|
'Current: ${endpointService.baseUrl}',
|
||||||
|
style: Theme.of(context).textTheme.labelSmall,
|
||||||
|
),
|
||||||
|
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(),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
@@ -5,6 +6,7 @@ import 'package:go_router/go_router.dart';
|
|||||||
import 'package:mileograph_flutter/components/traction/traction_card.dart';
|
import 'package:mileograph_flutter/components/traction/traction_card.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.dart';
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.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:provider/provider.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,16 @@ extension _TractionPersistence on _TractionPageState {
|
|||||||
enumValues[entry.key.toString()] = entry.value?.toString();
|
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) {
|
for (final entry in dynamicValues.entries) {
|
||||||
_dynamicControllers.putIfAbsent(
|
_dynamicControllers.putIfAbsent(
|
||||||
@@ -76,6 +86,8 @@ extension _TractionPersistence on _TractionPageState {
|
|||||||
'showAdvancedFilters': _showAdvancedFilters,
|
'showAdvancedFilters': _showAdvancedFilters,
|
||||||
'dynamic': _dynamicControllers.map((k, v) => MapEntry(k, v.text)),
|
'dynamic': _dynamicControllers.map((k, v) => MapEntry(k, v.text)),
|
||||||
'enum': _enumSelections,
|
'enum': _enumSelections,
|
||||||
|
'lastOffset': _lastTractionOffset,
|
||||||
|
'querySignature': _lastQuerySignature,
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.dart';
|
import 'package:mileograph_flutter/objects/objects.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.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:provider/provider.dart';
|
||||||
|
|
||||||
class TripsPage extends StatefulWidget {
|
class TripsPage extends StatefulWidget {
|
||||||
@@ -12,6 +13,7 @@ class TripsPage extends StatefulWidget {
|
|||||||
|
|
||||||
class _TripsPageState extends State<TripsPage> {
|
class _TripsPageState extends State<TripsPage> {
|
||||||
bool _initialised = false;
|
bool _initialised = false;
|
||||||
|
final Map<int, Future<List<TripLocoStat>>> _tripLocoStatsFutures = {};
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void didChangeDependencies() {
|
void didChangeDependencies() {
|
||||||
@@ -23,15 +25,87 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _refreshTrips() async {
|
Future<void> _refreshTrips() async {
|
||||||
await context.read<DataService>().fetchTripDetails();
|
_tripLocoStatsFutures.clear();
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
await data.fetchTripDetails();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _renameTrip(TripDetail trip, String newName) async {
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
final api = data.api;
|
||||||
|
final messenger = ScaffoldMessenger.maybeOf(context);
|
||||||
|
try {
|
||||||
|
await api.post('/trips/rename', {
|
||||||
|
"trip_id": trip.id,
|
||||||
|
"trip_name": newName,
|
||||||
|
});
|
||||||
|
await data.fetchTripDetails();
|
||||||
|
} catch (e) {
|
||||||
|
messenger?.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to rename trip: $e')),
|
||||||
|
);
|
||||||
|
rethrow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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>(
|
||||||
|
context: context,
|
||||||
|
builder: (dialogCtx) => AlertDialog(
|
||||||
|
title: const Text('Rename trip'),
|
||||||
|
content: TextField(
|
||||||
|
controller: controller,
|
||||||
|
decoration: const InputDecoration(labelText: 'Trip name'),
|
||||||
|
autofocus: true,
|
||||||
|
),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.of(dialogCtx).pop(),
|
||||||
|
child: const Text('Cancel'),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () =>
|
||||||
|
Navigator.of(dialogCtx).pop(controller.text.trim()),
|
||||||
|
child: const Text('Save'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
controller.dispose();
|
||||||
|
return newName;
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final data = context.watch<DataService>();
|
final data = context.watch<DataService>();
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
final tripDetails = data.tripDetails;
|
final tripDetails = data.tripDetails;
|
||||||
final tripSummaries = data.trips;
|
final tripSummaries = data.tripList;
|
||||||
final isMobile = MediaQuery.of(context).size.width < 700;
|
final summaryById = {
|
||||||
|
for (final summary in tripSummaries) summary.tripId: summary,
|
||||||
|
};
|
||||||
final showLoading = data.isTripDetailsLoading && tripDetails.isEmpty;
|
final showLoading = data.isTripDetailsLoading && tripDetails.isEmpty;
|
||||||
|
|
||||||
return RefreshIndicator(
|
return RefreshIndicator(
|
||||||
@@ -116,168 +190,360 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
return Card(
|
return Card(
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
title: Text(trip.tripName),
|
title: Text(trip.tripName),
|
||||||
subtitle: Text('${trip.tripMileage.toStringAsFixed(1)} mi'),
|
subtitle:
|
||||||
|
Text(distanceUnits.format(trip.tripMileage, decimals: 1)),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
final trip = tripDetails[index - 1];
|
final trip = tripDetails[index - 1];
|
||||||
return _buildTripCard(context, trip, isMobile);
|
final summary = summaryById[trip.id];
|
||||||
|
return _buildTripCard(context, trip, summary);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildTripCard(BuildContext context, TripDetail trip, bool isMobile) {
|
Widget _buildTripCard(
|
||||||
|
BuildContext context,
|
||||||
|
TripDetail trip,
|
||||||
|
TripSummary? summary,
|
||||||
|
) {
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
final legs = trip.legs;
|
final legs = trip.legs;
|
||||||
|
final legCount =
|
||||||
|
trip.legCount > 0 ? trip.legCount : summary?.legCount ?? legs.length;
|
||||||
|
final dateRange = _formatDateRange(legs);
|
||||||
|
final endpoints = _formatEndpoints(legs);
|
||||||
|
final stats = _cachedTripStats(trip, summary);
|
||||||
|
final winnerCount = stats.where((e) => e.won).length;
|
||||||
|
|
||||||
return Card(
|
return Card(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(12.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Column(
|
Expanded(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
child: Column(
|
||||||
children: [
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
Text(
|
children: [
|
||||||
trip.name,
|
Text(
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
'Trip #${trip.id}',
|
||||||
fontWeight: FontWeight.w700,
|
style: Theme.of(context).textTheme.labelMedium,
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(height: 4),
|
||||||
Text(
|
Text(
|
||||||
'${trip.mileage.toStringAsFixed(1)} mi · ${trip.legCount} legs',
|
trip.name,
|
||||||
style: Theme.of(context).textTheme.bodyMedium,
|
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||||
),
|
fontWeight: FontWeight.w700,
|
||||||
],
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
Row(
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
children: [
|
children: [
|
||||||
IconButton(
|
Text(
|
||||||
icon: const Icon(Icons.train),
|
distanceUnits.format(trip.mileage, decimals: 1),
|
||||||
tooltip: 'Traction',
|
style:
|
||||||
onPressed: () => _showTripWinners(context, trip),
|
Theme.of(context).textTheme.headlineSmall?.copyWith(
|
||||||
),
|
fontWeight: FontWeight.w800,
|
||||||
IconButton(
|
),
|
||||||
icon: const Icon(Icons.open_in_new),
|
|
||||||
tooltip: 'Details',
|
|
||||||
onPressed: () => _showTripDetail(context, trip),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 12),
|
||||||
if (legs.isNotEmpty)
|
Wrap(
|
||||||
Column(
|
spacing: 8,
|
||||||
children: legs.take(isMobile ? 2 : 3).map((leg) {
|
runSpacing: 8,
|
||||||
return ListTile(
|
children: [
|
||||||
dense: isMobile,
|
_buildMetaChip(context, Icons.timeline, '$legCount legs'),
|
||||||
contentPadding: EdgeInsets.zero,
|
if (dateRange != null)
|
||||||
leading: const Icon(Icons.train),
|
_buildMetaChip(context, Icons.calendar_month, dateRange),
|
||||||
title: Text('${leg.start} → ${leg.end}'),
|
if (endpoints != null)
|
||||||
subtitle: Text(
|
_buildMetaChip(context, Icons.route, endpoints),
|
||||||
_formatDate(leg.beginTime),
|
if (stats.isNotEmpty) ...[
|
||||||
maxLines: 1,
|
_buildMetaChip(context, Icons.train, '${stats.length} had'),
|
||||||
overflow: TextOverflow.ellipsis,
|
_buildMetaChip(
|
||||||
),
|
context,
|
||||||
trailing: Text(
|
Icons.emoji_events_outlined,
|
||||||
leg.mileage?.toStringAsFixed(1) ?? '-',
|
'$winnerCount winners',
|
||||||
style: Theme.of(context).textTheme.labelLarge?.copyWith(
|
),
|
||||||
fontWeight: FontWeight.bold,
|
] else
|
||||||
),
|
_buildMetaChip(context, Icons.train, 'No traction yet'),
|
||||||
),
|
],
|
||||||
);
|
),
|
||||||
}).toList(),
|
const SizedBox(height: 12),
|
||||||
),
|
Align(
|
||||||
if (legs.length > 3)
|
alignment: Alignment.centerRight,
|
||||||
Padding(
|
child: Wrap(
|
||||||
padding: const EdgeInsets.only(top: 6.0),
|
spacing: 8,
|
||||||
child: Text(
|
runSpacing: 8,
|
||||||
'+${legs.length - 3} more legs',
|
alignment: WrapAlignment.end,
|
||||||
style: Theme.of(context).textTheme.bodySmall,
|
children: [
|
||||||
),
|
OutlinedButton.icon(
|
||||||
|
icon: const Icon(Icons.train),
|
||||||
|
label: const Text('Locos'),
|
||||||
|
onPressed: () => _showTripWinners(context, trip, summary),
|
||||||
|
),
|
||||||
|
FilledButton.icon(
|
||||||
|
icon: const Icon(Icons.open_in_new),
|
||||||
|
label: const Text('Details'),
|
||||||
|
onPressed: () => _showTripDetail(context, trip),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _buildMetaChip(BuildContext context, IconData icon, String label) {
|
||||||
|
return Chip(
|
||||||
|
avatar: Icon(icon, size: 16),
|
||||||
|
label: Text(label),
|
||||||
|
visualDensity: const VisualDensity(horizontal: -2, vertical: -2),
|
||||||
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _formatDateRange(List<TripLeg> legs) {
|
||||||
|
final beginTimes =
|
||||||
|
legs.map((e) => e.beginTime).whereType<DateTime>().toList();
|
||||||
|
if (beginTimes.isEmpty) return null;
|
||||||
|
final start = beginTimes.first;
|
||||||
|
final end = beginTimes.last;
|
||||||
|
final startStr = _formatFriendlyDate(start);
|
||||||
|
final endStr = _formatFriendlyDate(end);
|
||||||
|
if (startStr == endStr) return startStr;
|
||||||
|
return '$startStr - $endStr';
|
||||||
|
}
|
||||||
|
|
||||||
|
String _formatFriendlyDate(DateTime date) {
|
||||||
|
const months = [
|
||||||
|
'Jan',
|
||||||
|
'Feb',
|
||||||
|
'Mar',
|
||||||
|
'Apr',
|
||||||
|
'May',
|
||||||
|
'Jun',
|
||||||
|
'Jul',
|
||||||
|
'Aug',
|
||||||
|
'Sep',
|
||||||
|
'Oct',
|
||||||
|
'Nov',
|
||||||
|
'Dec',
|
||||||
|
];
|
||||||
|
final day = date.day.toString().padLeft(2, '0');
|
||||||
|
final monthIndex = (date.month - 1).clamp(0, months.length - 1).toInt();
|
||||||
|
final month = months[monthIndex];
|
||||||
|
return '$day $month ${date.year}';
|
||||||
|
}
|
||||||
|
|
||||||
|
String? _formatEndpoints(List<TripLeg> legs) {
|
||||||
|
if (legs.isEmpty) return null;
|
||||||
|
final start = legs.first.start;
|
||||||
|
final end = legs.last.end;
|
||||||
|
if (start.isEmpty && end.isEmpty) return null;
|
||||||
|
final startLabel = start.isNotEmpty ? start : '—';
|
||||||
|
final endLabel = end.isNotEmpty ? end : '—';
|
||||||
|
return '$startLabel → $endLabel';
|
||||||
|
}
|
||||||
|
|
||||||
String _formatDate(DateTime? date) {
|
String _formatDate(DateTime? date) {
|
||||||
if (date == null) return '';
|
if (date == null) return '';
|
||||||
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
return '${date.year.toString().padLeft(4, '0')}-${date.month.toString().padLeft(2, '0')}-${date.day.toString().padLeft(2, '0')}';
|
||||||
}
|
}
|
||||||
|
|
||||||
void _showTripDetail(BuildContext context, TripDetail trip) {
|
void _showTripDetail(BuildContext context, TripDetail trip) {
|
||||||
|
final distanceUnits = context.read<DistanceUnitService>();
|
||||||
showModalBottomSheet(
|
showModalBottomSheet(
|
||||||
context: context,
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
builder: (_) {
|
builder: (_) {
|
||||||
return SafeArea(
|
bool renaming = false;
|
||||||
child: Padding(
|
bool deleting = false;
|
||||||
padding: const EdgeInsets.all(16.0),
|
String tripName = trip.name;
|
||||||
child: Column(
|
return StatefulBuilder(
|
||||||
mainAxisSize: MainAxisSize.min,
|
builder: (sheetCtx, setSheetState) {
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
Future<void> handleRename() async {
|
||||||
children: [
|
final newName =
|
||||||
Row(
|
await _promptTripName(sheetCtx, tripName) ?? tripName;
|
||||||
children: [
|
if (newName.isEmpty || newName == tripName) return;
|
||||||
IconButton(
|
setSheetState(() => renaming = true);
|
||||||
icon: const Icon(Icons.arrow_back),
|
try {
|
||||||
onPressed: () => Navigator.of(context).pop(),
|
await _renameTrip(trip, newName);
|
||||||
|
tripName = newName;
|
||||||
|
setSheetState(() {});
|
||||||
|
} finally {
|
||||||
|
if (mounted) setSheetState(() => renaming = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> handleDelete() async {
|
||||||
|
if (deleting || trip.legs.isNotEmpty) return;
|
||||||
|
final data = context.read<DataService>();
|
||||||
|
final api = data.api;
|
||||||
|
final messenger = ScaffoldMessenger.maybeOf(sheetCtx);
|
||||||
|
final navigator = Navigator.of(sheetCtx);
|
||||||
|
|
||||||
|
final ok = await showDialog<bool>(
|
||||||
|
context: sheetCtx,
|
||||||
|
builder: (ctx) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: const Text('Delete trip?'),
|
||||||
|
content: Text(
|
||||||
|
'This will delete "${trip.name}". This cannot be undone.',
|
||||||
),
|
),
|
||||||
Text(
|
actions: [
|
||||||
trip.name,
|
TextButton(
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
onPressed: () => Navigator.of(ctx).pop(false),
|
||||||
fontWeight: FontWeight.bold,
|
child: const Text('Cancel'),
|
||||||
|
),
|
||||||
|
FilledButton(
|
||||||
|
onPressed: () => Navigator.of(ctx).pop(true),
|
||||||
|
child: const Text('Delete'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
if (ok != true || !mounted) return;
|
||||||
|
|
||||||
|
setSheetState(() => deleting = true);
|
||||||
|
try {
|
||||||
|
await api.delete('/trips/delete/${trip.id}');
|
||||||
|
await Future.wait([
|
||||||
|
data.fetchTripDetails(),
|
||||||
|
data.fetchTrips(),
|
||||||
|
]);
|
||||||
|
_tripLocoStatsFutures.remove(trip.id);
|
||||||
|
if (!mounted) return;
|
||||||
|
messenger?.showSnackBar(
|
||||||
|
SnackBar(content: Text('Deleted "${trip.name}"')),
|
||||||
|
);
|
||||||
|
navigator.pop();
|
||||||
|
} catch (e) {
|
||||||
|
if (!mounted) return;
|
||||||
|
messenger?.showSnackBar(
|
||||||
|
SnackBar(content: Text('Failed to delete trip: $e')),
|
||||||
|
);
|
||||||
|
} finally {
|
||||||
|
if (mounted) setSheetState(() => deleting = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return SafeArea(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
IconButton(
|
||||||
|
icon: const Icon(Icons.arrow_back),
|
||||||
|
onPressed: () => Navigator.of(sheetCtx).pop(),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
tripName,
|
||||||
|
style: Theme.of(context).textTheme.titleMedium
|
||||||
|
?.copyWith(fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
icon: renaming
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child:
|
||||||
|
CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.edit),
|
||||||
|
tooltip: 'Rename trip',
|
||||||
|
onPressed: renaming ? null : handleRename,
|
||||||
|
),
|
||||||
|
if (trip.legs.isEmpty) ...[
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
IconButton(
|
||||||
|
icon: deleting
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.delete_outline),
|
||||||
|
tooltip: 'Delete trip',
|
||||||
|
onPressed: deleting ? null : handleDelete,
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Text(
|
||||||
|
distanceUnits.format(trip.mileage, decimals: 1),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
SizedBox(
|
||||||
|
height: MediaQuery.of(context).size.height * 0.6,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: trip.legs.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
final leg = trip.legs[index];
|
||||||
|
return ListTile(
|
||||||
|
leading: const Icon(Icons.train),
|
||||||
|
title: Text('${leg.start} → ${leg.end}'),
|
||||||
|
subtitle: Text(_formatDate(leg.beginTime)),
|
||||||
|
trailing: Text(
|
||||||
|
leg.mileage == null
|
||||||
|
? '-'
|
||||||
|
: distanceUnits.format(
|
||||||
|
leg.mileage!,
|
||||||
|
decimals: 1,
|
||||||
|
),
|
||||||
|
style: Theme.of(context).textTheme.labelLarge
|
||||||
|
?.copyWith(fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const Spacer(),
|
|
||||||
Text('${trip.mileage.toStringAsFixed(1)} mi'),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
),
|
||||||
SizedBox(
|
);
|
||||||
height: MediaQuery.of(context).size.height * 0.6,
|
},
|
||||||
child: ListView.builder(
|
|
||||||
itemCount: trip.legs.length,
|
|
||||||
itemBuilder: (context, index) {
|
|
||||||
final leg = trip.legs[index];
|
|
||||||
return ListTile(
|
|
||||||
leading: const Icon(Icons.train),
|
|
||||||
title: Text('${leg.start} → ${leg.end}'),
|
|
||||||
subtitle: Text(_formatDate(leg.beginTime)),
|
|
||||||
trailing: Text(
|
|
||||||
leg.mileage?.toStringAsFixed(1) ?? '-',
|
|
||||||
style: Theme.of(context).textTheme.labelLarge
|
|
||||||
?.copyWith(fontWeight: FontWeight.bold),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _showTripWinners(BuildContext context, TripDetail trip) {
|
void _showTripWinners(
|
||||||
|
BuildContext context,
|
||||||
|
TripDetail trip,
|
||||||
|
TripSummary? summary,
|
||||||
|
) {
|
||||||
|
final distanceUnits = context.read<DistanceUnitService>();
|
||||||
showModalBottomSheet(
|
showModalBottomSheet(
|
||||||
context: context,
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
builder: (_) {
|
builder: (_) {
|
||||||
final data = context.read<DataService>();
|
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
child: FutureBuilder<List<TripLocoStat>>(
|
child: FutureBuilder<List<TripLocoStat>>(
|
||||||
future: data.fetchTripLocoStats(trip.id),
|
future: _loadTripStats(trip, summary),
|
||||||
|
initialData: _cachedTripStats(trip, summary),
|
||||||
builder: (ctx, snapshot) {
|
builder: (ctx, snapshot) {
|
||||||
final items = snapshot.data ?? [];
|
final items = snapshot.data ?? [];
|
||||||
final loading =
|
final loading =
|
||||||
@@ -302,7 +568,9 @@ class _TripsPageState extends State<TripsPage> {
|
|||||||
?.copyWith(fontWeight: FontWeight.bold),
|
?.copyWith(fontWeight: FontWeight.bold),
|
||||||
),
|
),
|
||||||
const Spacer(),
|
const Spacer(),
|
||||||
Text('${trip.mileage.toStringAsFixed(1)} mi'),
|
Text(
|
||||||
|
distanceUnits.format(trip.mileage, decimals: 1),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:mileograph_flutter/objects/objects.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 {
|
class TractionCard extends StatelessWidget {
|
||||||
const TractionCard({
|
const TractionCard({
|
||||||
@@ -28,6 +31,7 @@ class TractionCard extends StatelessWidget {
|
|||||||
final domain = loco.domain ?? '';
|
final domain = loco.domain ?? '';
|
||||||
final hasMileageOrTrips = _hasMileageOrTrips(loco);
|
final hasMileageOrTrips = _hasMileageOrTrips(loco);
|
||||||
final statusColors = _statusChipColors(context, status);
|
final statusColors = _statusChipColors(context, status);
|
||||||
|
final distanceUnits = context.watch<DistanceUnitService>();
|
||||||
|
|
||||||
return Card(
|
return Card(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
@@ -82,39 +86,68 @@ class TractionCard extends StatelessWidget {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
Row(
|
LayoutBuilder(
|
||||||
children: [
|
builder: (context, constraints) {
|
||||||
TextButton.icon(
|
final isNarrow = constraints.maxWidth < 520;
|
||||||
onPressed: onShowInfo,
|
final buttons = [
|
||||||
icon: const Icon(Icons.info_outline),
|
|
||||||
label: const Text('Details'),
|
|
||||||
),
|
|
||||||
const SizedBox(width: 8),
|
|
||||||
TextButton.icon(
|
|
||||||
onPressed: onOpenTimeline,
|
|
||||||
icon: const Icon(Icons.timeline),
|
|
||||||
label: const Text('Timeline'),
|
|
||||||
),
|
|
||||||
if (hasMileageOrTrips && onOpenLegs != null) ...[
|
|
||||||
const SizedBox(width: 8),
|
|
||||||
TextButton.icon(
|
TextButton.icon(
|
||||||
onPressed: onOpenLegs,
|
onPressed: onShowInfo,
|
||||||
icon: const Icon(Icons.view_list),
|
icon: const Icon(Icons.info_outline),
|
||||||
label: const Text('Legs'),
|
label: const Text('Details'),
|
||||||
),
|
),
|
||||||
],
|
|
||||||
const Spacer(),
|
|
||||||
if (selectionMode && onToggleSelect != null)
|
|
||||||
TextButton.icon(
|
TextButton.icon(
|
||||||
onPressed: onToggleSelect,
|
onPressed: onOpenTimeline,
|
||||||
icon: Icon(
|
icon: const Icon(Icons.timeline),
|
||||||
isSelected
|
label: const Text('Timeline'),
|
||||||
? Icons.remove_circle_outline
|
),
|
||||||
: Icons.add_circle_outline,
|
if (hasMileageOrTrips && onOpenLegs != null)
|
||||||
|
TextButton.icon(
|
||||||
|
onPressed: onOpenLegs,
|
||||||
|
icon: const Icon(Icons.view_list),
|
||||||
|
label: const Text('Legs'),
|
||||||
),
|
),
|
||||||
label: Text(isSelected ? 'Remove' : 'Add to entry'),
|
];
|
||||||
),
|
|
||||||
],
|
final addButton = selectionMode && onToggleSelect != null
|
||||||
|
? TextButton.icon(
|
||||||
|
onPressed: onToggleSelect,
|
||||||
|
icon: Icon(
|
||||||
|
isSelected
|
||||||
|
? Icons.remove_circle_outline
|
||||||
|
: Icons.add_circle_outline,
|
||||||
|
),
|
||||||
|
label: Text(isSelected ? 'Remove' : 'Add to entry'),
|
||||||
|
)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
if (isNarrow) {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 4,
|
||||||
|
children: buttons,
|
||||||
|
),
|
||||||
|
if (addButton != null) ...[
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
addButton,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Row(
|
||||||
|
children: [
|
||||||
|
...buttons.expand((btn) sync* {
|
||||||
|
yield btn;
|
||||||
|
yield const SizedBox(width: 8);
|
||||||
|
}).take(buttons.length * 2 - 1),
|
||||||
|
const Spacer(),
|
||||||
|
if (addButton != null) addButton,
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
Wrap(
|
Wrap(
|
||||||
spacing: 8,
|
spacing: 8,
|
||||||
@@ -122,8 +155,11 @@ class TractionCard extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
_statPill(
|
_statPill(
|
||||||
context,
|
context,
|
||||||
label: 'Miles',
|
label: 'Distance',
|
||||||
value: _formatNumber(loco.mileage),
|
value: distanceUnits.format(
|
||||||
|
loco.mileage ?? 0,
|
||||||
|
decimals: 1,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
_statPill(
|
_statPill(
|
||||||
context,
|
context,
|
||||||
@@ -174,6 +210,12 @@ Future<void> showTractionDetails(
|
|||||||
LocoSummary loco,
|
LocoSummary loco,
|
||||||
) async {
|
) async {
|
||||||
final hasMileageOrTrips = _hasMileageOrTrips(loco);
|
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(
|
await showModalBottomSheet(
|
||||||
context: context,
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
@@ -246,7 +288,10 @@ Future<void> showTractionDetails(
|
|||||||
_detailRow(
|
_detailRow(
|
||||||
context,
|
context,
|
||||||
'Mileage',
|
'Mileage',
|
||||||
_formatNumber(loco.mileage ?? 0),
|
distanceUnits.format(
|
||||||
|
loco.mileage ?? 0,
|
||||||
|
decimals: 1,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
_detailRow(
|
_detailRow(
|
||||||
context,
|
context,
|
||||||
@@ -256,6 +301,63 @@ Future<void> showTractionDetails(
|
|||||||
_detailRow(context, 'EVN', loco.evn ?? ''),
|
_detailRow(context, 'EVN', loco.evn ?? ''),
|
||||||
if (loco.notes != null && loco.notes!.isNotEmpty)
|
if (loco.notes != null && loco.notes!.isNotEmpty)
|
||||||
_detailRow(context, 'Notes', loco.notes!),
|
_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(),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -268,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) {
|
Widget _detailRow(BuildContext context, String label, String value) {
|
||||||
if (value.isEmpty) return const SizedBox.shrink();
|
if (value.isEmpty) return const SizedBox.shrink();
|
||||||
return Padding(
|
return Padding(
|
||||||
@@ -339,8 +540,3 @@ bool _hasMileageOrTrips(LocoSummary loco) {
|
|||||||
final trips = loco.trips ?? loco.journeys ?? 0;
|
final trips = loco.trips ?? loco.journeys ?? 0;
|
||||||
return mileage > 0 || trips > 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,17 +5,24 @@ typedef TokenProvider = String? Function();
|
|||||||
typedef UnauthorizedHandler = Future<void> Function();
|
typedef UnauthorizedHandler = Future<void> Function();
|
||||||
|
|
||||||
class ApiService {
|
class ApiService {
|
||||||
final String baseUrl;
|
String _baseUrl;
|
||||||
final http.Client _client;
|
final http.Client _client;
|
||||||
final Duration timeout;
|
final Duration timeout;
|
||||||
TokenProvider? _getToken;
|
TokenProvider? _getToken;
|
||||||
UnauthorizedHandler? _onUnauthorized;
|
UnauthorizedHandler? _onUnauthorized;
|
||||||
|
|
||||||
ApiService({
|
ApiService({
|
||||||
required this.baseUrl,
|
required String baseUrl,
|
||||||
http.Client? client,
|
http.Client? client,
|
||||||
this.timeout = const Duration(seconds: 30),
|
this.timeout = const Duration(seconds: 30),
|
||||||
}) : _client = client ?? http.Client();
|
}) : _baseUrl = baseUrl,
|
||||||
|
_client = client ?? http.Client();
|
||||||
|
|
||||||
|
String get baseUrl => _baseUrl;
|
||||||
|
|
||||||
|
void setBaseUrl(String url) {
|
||||||
|
_baseUrl = url;
|
||||||
|
}
|
||||||
|
|
||||||
void setTokenProvider(TokenProvider provider) {
|
void setTokenProvider(TokenProvider provider) {
|
||||||
_getToken = provider;
|
_getToken = provider;
|
||||||
@@ -121,7 +128,12 @@ class ApiService {
|
|||||||
await _onUnauthorized!();
|
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) {
|
dynamic _decodeBody(http.Response res) {
|
||||||
@@ -142,4 +154,41 @@ class ApiService {
|
|||||||
return res.body;
|
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 userId => _user?.userId;
|
||||||
String? get username => _user?.username;
|
String? get username => _user?.username;
|
||||||
String? get fullName => _user?.fullName;
|
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({
|
void setLoginData({
|
||||||
required String userId,
|
required String userId,
|
||||||
@@ -28,6 +31,8 @@ class AuthService extends ChangeNotifier {
|
|||||||
required String fullName,
|
required String fullName,
|
||||||
required String accessToken,
|
required String accessToken,
|
||||||
required String email,
|
required String email,
|
||||||
|
bool isElevated = false,
|
||||||
|
bool isDisabled = false,
|
||||||
}) {
|
}) {
|
||||||
_user = AuthenticatedUserData(
|
_user = AuthenticatedUserData(
|
||||||
userId: userId,
|
userId: userId,
|
||||||
@@ -35,6 +40,8 @@ class AuthService extends ChangeNotifier {
|
|||||||
fullName: fullName,
|
fullName: fullName,
|
||||||
accessToken: accessToken,
|
accessToken: accessToken,
|
||||||
email: email,
|
email: email,
|
||||||
|
isElevated: isElevated,
|
||||||
|
disabled: isDisabled,
|
||||||
);
|
);
|
||||||
_persistToken(accessToken);
|
_persistToken(accessToken);
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
@@ -70,6 +77,8 @@ class AuthService extends ChangeNotifier {
|
|||||||
fullName: userResponse['full_name'],
|
fullName: userResponse['full_name'],
|
||||||
accessToken: accessToken,
|
accessToken: accessToken,
|
||||||
email: userResponse['email'],
|
email: userResponse['email'],
|
||||||
|
isElevated: _parseIsElevated(userResponse),
|
||||||
|
isDisabled: _parseIsDisabled(userResponse),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,6 +104,8 @@ class AuthService extends ChangeNotifier {
|
|||||||
fullName: userResponse['full_name'],
|
fullName: userResponse['full_name'],
|
||||||
accessToken: token,
|
accessToken: token,
|
||||||
email: userResponse['email'],
|
email: userResponse['email'],
|
||||||
|
isElevated: _parseIsElevated(userResponse),
|
||||||
|
isDisabled: _parseIsDisabled(userResponse),
|
||||||
);
|
);
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
await _clearToken();
|
await _clearToken();
|
||||||
@@ -157,4 +168,60 @@ class AuthService extends ChangeNotifier {
|
|||||||
void logout() {
|
void logout() {
|
||||||
handleTokenExpired(); // reuse
|
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_core.dart';
|
||||||
part 'data_service_traction.dart';
|
part 'data_service_traction.dart';
|
||||||
part 'data_service_trips.dart';
|
part 'data_service_trips.dart';
|
||||||
|
part 'data_service_notifications.dart';
|
||||||
|
part 'data_service_badges.dart';
|
||||||
|
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});
|
DataService({required this.api});
|
||||||
|
|
||||||
|
String? _currentUserId;
|
||||||
|
|
||||||
_LegFetchOptions _lastLegsFetch = const _LegFetchOptions();
|
_LegFetchOptions _lastLegsFetch = const _LegFetchOptions();
|
||||||
|
|
||||||
// Homepage Data
|
// Homepage Data
|
||||||
HomepageStats? _homepageStats;
|
HomepageStats? _homepageStats;
|
||||||
HomepageStats? get homepageStats => _homepageStats;
|
HomepageStats? get homepageStats => _homepageStats;
|
||||||
|
StatsAbout? _aboutStats;
|
||||||
|
StatsAbout? get aboutStats => _aboutStats;
|
||||||
|
bool _isAboutStatsLoading = false;
|
||||||
|
bool get isAboutStatsLoading => _isAboutStatsLoading;
|
||||||
|
|
||||||
// Legs Data
|
// Legs Data
|
||||||
List<Leg> _legs = [];
|
List<Leg> _legs = [];
|
||||||
@@ -44,6 +50,13 @@ class DataService extends ChangeNotifier {
|
|||||||
bool get isTractionLoading => _isTractionLoading;
|
bool get isTractionLoading => _isTractionLoading;
|
||||||
bool _tractionHasMore = false;
|
bool _tractionHasMore = false;
|
||||||
bool get tractionHasMore => _tractionHasMore;
|
bool get tractionHasMore => _tractionHasMore;
|
||||||
|
List<LocoChange> _latestLocoChanges = [];
|
||||||
|
List<LocoChange> get latestLocoChanges => _latestLocoChanges;
|
||||||
|
bool _isLatestLocoChangesLoading = false;
|
||||||
|
bool get isLatestLocoChangesLoading => _isLatestLocoChangesLoading;
|
||||||
|
bool _latestLocoChangesHasMore = false;
|
||||||
|
bool get latestLocoChangesHasMore => _latestLocoChangesHasMore;
|
||||||
|
int _latestLocoChangesFetched = 0;
|
||||||
final Map<int, List<LocoAttrVersion>> _locoTimelines = {};
|
final Map<int, List<LocoAttrVersion>> _locoTimelines = {};
|
||||||
final Map<int, bool> _isLocoTimelineLoading = {};
|
final Map<int, bool> _isLocoTimelineLoading = {};
|
||||||
List<LocoAttrVersion> timelineForLoco(int locoId) =>
|
List<LocoAttrVersion> timelineForLoco(int locoId) =>
|
||||||
@@ -51,6 +64,18 @@ class DataService extends ChangeNotifier {
|
|||||||
bool isLocoTimelineLoading(int locoId) =>
|
bool isLocoTimelineLoading(int locoId) =>
|
||||||
_isLocoTimelineLoading[locoId] ?? false;
|
_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
|
// Trips
|
||||||
List<TripSummary> _trips = [];
|
List<TripSummary> _trips = [];
|
||||||
List<TripSummary> get trips => _trips;
|
List<TripSummary> get trips => _trips;
|
||||||
@@ -68,9 +93,14 @@ class DataService extends ChangeNotifier {
|
|||||||
bool get isEventFieldsLoading => _isEventFieldsLoading;
|
bool get isEventFieldsLoading => _isEventFieldsLoading;
|
||||||
|
|
||||||
// Station Data
|
// Station Data
|
||||||
List<Station>? _cachedStations;
|
final Map<String, List<Station>> _stationCache = {};
|
||||||
DateTime? _stationsFetchedAt;
|
final Map<String, Future<List<Station>>?> _stationInFlightByKey = {};
|
||||||
Future<List<Station>>? _stationsInFlight;
|
List<String> _stationNetworks = [];
|
||||||
|
Map<String, List<String>> _stationCountryNetworks = {};
|
||||||
|
DateTime? _stationFiltersFetchedAt;
|
||||||
|
List<String> get stationNetworks => _stationNetworks;
|
||||||
|
Map<String, List<String>> get stationCountryNetworks =>
|
||||||
|
_stationCountryNetworks;
|
||||||
|
|
||||||
List<String> stations = [""];
|
List<String> stations = [""];
|
||||||
|
|
||||||
@@ -79,6 +109,36 @@ class DataService extends ChangeNotifier {
|
|||||||
bool _isOnThisDayLoading = false;
|
bool _isOnThisDayLoading = false;
|
||||||
bool get isOnThisDayLoading => _isOnThisDayLoading;
|
bool get isOnThisDayLoading => _isOnThisDayLoading;
|
||||||
|
|
||||||
|
// Notifications
|
||||||
|
List<UserNotification> _notifications = [];
|
||||||
|
List<UserNotification> get notifications => _notifications;
|
||||||
|
bool _isNotificationsLoading = false;
|
||||||
|
bool get isNotificationsLoading => _isNotificationsLoading;
|
||||||
|
|
||||||
|
// Badges
|
||||||
|
List<BadgeAward> _badgeAwards = [];
|
||||||
|
List<BadgeAward> get badgeAwards => _badgeAwards;
|
||||||
|
bool _isBadgeAwardsLoading = false;
|
||||||
|
bool get isBadgeAwardsLoading => _isBadgeAwardsLoading;
|
||||||
|
bool _badgeAwardsHasMore = false;
|
||||||
|
bool get badgeAwardsHasMore => _badgeAwardsHasMore;
|
||||||
|
List<ClassClearanceProgress> _classClearanceProgress = [];
|
||||||
|
List<ClassClearanceProgress> get classClearanceProgress =>
|
||||||
|
_classClearanceProgress;
|
||||||
|
bool _isClassClearanceProgressLoading = false;
|
||||||
|
bool get isClassClearanceProgressLoading =>
|
||||||
|
_isClassClearanceProgressLoading;
|
||||||
|
bool _classClearanceHasMore = false;
|
||||||
|
bool get classClearanceHasMore => _classClearanceHasMore;
|
||||||
|
List<LocoClearanceProgress> _locoClearanceProgress = [];
|
||||||
|
List<LocoClearanceProgress> get locoClearanceProgress =>
|
||||||
|
_locoClearanceProgress;
|
||||||
|
bool _isLocoClearanceProgressLoading = false;
|
||||||
|
bool get isLocoClearanceProgressLoading =>
|
||||||
|
_isLocoClearanceProgressLoading;
|
||||||
|
bool _locoClearanceHasMore = false;
|
||||||
|
bool get locoClearanceHasMore => _locoClearanceHasMore;
|
||||||
|
|
||||||
static const List<EventField> _fallbackEventFields = [
|
static const List<EventField> _fallbackEventFields = [
|
||||||
EventField(name: 'operator', display: 'Operator'),
|
EventField(name: 'operator', display: 'Operator'),
|
||||||
EventField(name: 'status', display: 'Status'),
|
EventField(name: 'status', display: 'Status'),
|
||||||
@@ -103,7 +163,8 @@ class DataService extends ChangeNotifier {
|
|||||||
try {
|
try {
|
||||||
final json = await api.get('/stats/homepage');
|
final json = await api.get('/stats/homepage');
|
||||||
_homepageStats = HomepageStats.fromJson(json);
|
_homepageStats = HomepageStats.fromJson(json);
|
||||||
_trips = _homepageStats?.trips ?? [];
|
_trips = [...(_homepageStats?.trips ?? const [])]
|
||||||
|
..sort(TripSummary.compareByDateDesc);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch homepage stats: $e');
|
debugPrint('Failed to fetch homepage stats: $e');
|
||||||
_homepageStats = null;
|
_homepageStats = null;
|
||||||
@@ -148,7 +209,8 @@ class DataService extends ChangeNotifier {
|
|||||||
if (json is List) {
|
if (json is List) {
|
||||||
final newLegs = json.map((e) => Leg.fromJson(e)).toList();
|
final newLegs = json.map((e) => Leg.fromJson(e)).toList();
|
||||||
_legs = append ? [..._legs, ...newLegs] : newLegs;
|
_legs = append ? [..._legs, ...newLegs] : newLegs;
|
||||||
_legsHasMore = newLegs.length >= limit;
|
// Keep "load more" available as long as the server returns items; hide only on empty.
|
||||||
|
_legsHasMore = newLegs.isNotEmpty;
|
||||||
} else {
|
} else {
|
||||||
throw Exception('Unexpected legs response: $json');
|
throw Exception('Unexpected legs response: $json');
|
||||||
}
|
}
|
||||||
@@ -180,7 +242,7 @@ class DataService extends ChangeNotifier {
|
|||||||
final params =
|
final params =
|
||||||
includeNonPowering ? '?include_non_powering=true' : '';
|
includeNonPowering ? '?include_non_powering=true' : '';
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/legs/$locoId$params');
|
final json = await api.get('/legs/by-loco/$locoId$params');
|
||||||
dynamic list = json;
|
dynamic list = json;
|
||||||
if (json is Map) {
|
if (json is Map) {
|
||||||
for (final key in ['legs', 'data', 'results']) {
|
for (final key in ['legs', 'data', 'results']) {
|
||||||
@@ -209,22 +271,46 @@ class DataService extends ChangeNotifier {
|
|||||||
final target = date ?? DateTime.now();
|
final target = date ?? DateTime.now();
|
||||||
final formatted =
|
final formatted =
|
||||||
"${target.year.toString().padLeft(4, '0')}-${target.month.toString().padLeft(2, '0')}-${target.day.toString().padLeft(2, '0')}";
|
"${target.year.toString().padLeft(4, '0')}-${target.month.toString().padLeft(2, '0')}-${target.day.toString().padLeft(2, '0')}";
|
||||||
|
final endpoint = '/legs/on-this-day?date=$formatted';
|
||||||
|
dynamic json;
|
||||||
|
Object? lastError;
|
||||||
|
for (int attempt = 0; attempt < 2; attempt++) {
|
||||||
|
try {
|
||||||
|
json = await api.get(endpoint);
|
||||||
|
lastError = null;
|
||||||
|
break;
|
||||||
|
} catch (e) {
|
||||||
|
lastError = e;
|
||||||
|
if (!_looksLikeOnThisDayRoutingConflict(e)) break;
|
||||||
|
await Future<void>.delayed(const Duration(milliseconds: 250));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/legs/on-this-day?date=$formatted');
|
|
||||||
if (json is List) {
|
if (json is List) {
|
||||||
_onThisDay = json.map((e) => Leg.fromJson(e)).toList();
|
_onThisDay = json.map((e) => Leg.fromJson(e)).toList();
|
||||||
} else {
|
} else {
|
||||||
_onThisDay = [];
|
_onThisDay = [];
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch on-this-day legs: $e');
|
lastError ??= e;
|
||||||
_onThisDay = [];
|
_onThisDay = [];
|
||||||
} finally {
|
} finally {
|
||||||
|
if (lastError != null) {
|
||||||
|
debugPrint('Failed to fetch on-this-day legs ($endpoint): $lastError');
|
||||||
|
}
|
||||||
_isOnThisDayLoading = false;
|
_isOnThisDayLoading = false;
|
||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool _looksLikeOnThisDayRoutingConflict(Object error) {
|
||||||
|
final msg = error.toString();
|
||||||
|
return msg.contains('API error 422') &&
|
||||||
|
msg.contains('[path, loco_id]') &&
|
||||||
|
msg.contains('input: on-this-day');
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> fetchEventFields({bool force = false}) async {
|
Future<void> fetchEventFields({bool force = false}) async {
|
||||||
if (_eventFields.isNotEmpty && !force) return;
|
if (_eventFields.isNotEmpty && !force) return;
|
||||||
_isEventFieldsLoading = true;
|
_isEventFieldsLoading = true;
|
||||||
@@ -308,6 +394,8 @@ class DataService extends ChangeNotifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void clear() {
|
void clear() {
|
||||||
|
_currentUserId = null;
|
||||||
|
_lastLegsFetch = const _LegFetchOptions();
|
||||||
_homepageStats = null;
|
_homepageStats = null;
|
||||||
_legs = [];
|
_legs = [];
|
||||||
_onThisDay = [];
|
_onThisDay = [];
|
||||||
@@ -316,9 +404,46 @@ class DataService extends ChangeNotifier {
|
|||||||
_eventFields = [];
|
_eventFields = [];
|
||||||
_locoTimelines.clear();
|
_locoTimelines.clear();
|
||||||
_isLocoTimelineLoading.clear();
|
_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();
|
_notifyAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void handleAuthChanged(String? userId) {
|
||||||
|
if (_currentUserId == userId) return;
|
||||||
|
_currentUserId = userId;
|
||||||
|
clear();
|
||||||
|
_currentUserId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
double getMileageForCurrentYear() {
|
double getMileageForCurrentYear() {
|
||||||
final currentYear = DateTime.now().year;
|
final currentYear = DateTime.now().year;
|
||||||
return getMileageForYear(currentYear) ?? 0;
|
return getMileageForYear(currentYear) ?? 0;
|
||||||
@@ -334,37 +459,75 @@ class DataService extends ChangeNotifier {
|
|||||||
0;
|
0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<Station>> fetchStations() async {
|
Future<void> fetchStationFilters() async {
|
||||||
final now = DateTime.now();
|
final now = DateTime.now();
|
||||||
|
if (_stationFiltersFetchedAt != null &&
|
||||||
// If cache exists and is less than 30 minutes old, return it
|
now.difference(_stationFiltersFetchedAt!) < const Duration(minutes: 30) &&
|
||||||
if (_cachedStations != null &&
|
_stationNetworks.isNotEmpty) {
|
||||||
_stationsFetchedAt != null &&
|
return;
|
||||||
now.difference(_stationsFetchedAt!) < Duration(minutes: 30)) {
|
|
||||||
return _cachedStations!;
|
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
final response = await api.get('/stations/filter');
|
||||||
|
if (response is List && response.isNotEmpty && response.first is Map) {
|
||||||
|
final map = Map<String, dynamic>.from(response.first as Map);
|
||||||
|
final networks = (map['networks'] as List? ?? const [])
|
||||||
|
.whereType<String>()
|
||||||
|
.toList();
|
||||||
|
final countryNetworksRaw =
|
||||||
|
map['country_networks'] as Map? ?? const <String, dynamic>{};
|
||||||
|
final countryNetworks = <String, List<String>>{};
|
||||||
|
countryNetworksRaw.forEach((key, value) {
|
||||||
|
if (value is List) {
|
||||||
|
countryNetworks[key] = value.whereType<String>().toList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
_stationNetworks = networks;
|
||||||
|
_stationCountryNetworks = countryNetworks;
|
||||||
|
_stationFiltersFetchedAt = now;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch station filters: $e');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (_stationsInFlight != null) return _stationsInFlight!;
|
String _stationKey(List<String> countries, List<String> networks) {
|
||||||
|
final c = countries..sort();
|
||||||
|
final n = networks..sort();
|
||||||
|
return 'c:${c.join('|')};n:${n.join('|')}';
|
||||||
|
}
|
||||||
|
|
||||||
_stationsInFlight = () async {
|
Future<List<Station>> fetchStations({
|
||||||
|
List<String> countries = const [],
|
||||||
|
List<String> networks = const [],
|
||||||
|
}) async {
|
||||||
|
final key = _stationKey(List.from(countries), List.from(networks));
|
||||||
|
|
||||||
|
if (_stationCache.containsKey(key)) return _stationCache[key]!;
|
||||||
|
final inflight = _stationInFlightByKey[key];
|
||||||
|
if (inflight != null) return inflight;
|
||||||
|
|
||||||
|
final future = () async {
|
||||||
try {
|
try {
|
||||||
final response = await api.get('/location');
|
final response = await api.post('/location', {
|
||||||
|
'countries_filter': countries,
|
||||||
|
'network_filter': networks,
|
||||||
|
});
|
||||||
if (response is! List) return const <Station>[];
|
if (response is! List) return const <Station>[];
|
||||||
final parsed = response
|
final parsed = response
|
||||||
.whereType<Map>()
|
.whereType<Map>()
|
||||||
.map((e) => Station.fromJson(Map<String, dynamic>.from(e)))
|
.map((e) => Station.fromJson(Map<String, dynamic>.from(e)))
|
||||||
.toList();
|
.toList();
|
||||||
_cachedStations = parsed;
|
_stationCache[key] = parsed;
|
||||||
_stationsFetchedAt = now;
|
|
||||||
return parsed;
|
return parsed;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch stations: $e');
|
debugPrint('Failed to fetch stations: $e');
|
||||||
return const <Station>[];
|
return const <Station>[];
|
||||||
} finally {
|
} finally {
|
||||||
_stationsInFlight = null;
|
_stationInFlightByKey.remove(key);
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
|
|
||||||
return _stationsInFlight!;
|
_stationInFlightByKey[key] = future;
|
||||||
|
return future;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
28
lib/services/data_service/data_service_stats.dart
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,7 +13,7 @@ extension DataServiceTraction on DataService {
|
|||||||
Future<void> fetchTraction({
|
Future<void> fetchTraction({
|
||||||
bool hadOnly = false,
|
bool hadOnly = false,
|
||||||
int offset = 0,
|
int offset = 0,
|
||||||
int limit = 50,
|
int limit = 100,
|
||||||
String? locoClass,
|
String? locoClass,
|
||||||
String? locoNumber,
|
String? locoNumber,
|
||||||
bool mileageFirst = true,
|
bool mileageFirst = true,
|
||||||
@@ -114,5 +114,69 @@ extension DataServiceTraction on DataService {
|
|||||||
}
|
}
|
||||||
return _locoClasses;
|
return _locoClasses;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
Future<void> fetchLatestLocoChanges({
|
||||||
|
int limit = 100,
|
||||||
|
int offset = 0,
|
||||||
|
bool append = false,
|
||||||
|
}) async {
|
||||||
|
_isLatestLocoChangesLoading = true;
|
||||||
|
_notifyAsync();
|
||||||
|
try {
|
||||||
|
final json =
|
||||||
|
await api.get('/loco/changes/latest?limit=$limit&offset=$offset');
|
||||||
|
dynamic results = json;
|
||||||
|
if (json is Map && json['data'] is List) {
|
||||||
|
results = json['data'];
|
||||||
|
}
|
||||||
|
if (results is List) {
|
||||||
|
final parsed = <LocoChange>[];
|
||||||
|
for (final item in results) {
|
||||||
|
if (item is Map<String, dynamic>) {
|
||||||
|
parsed.add(LocoChange.fromJson(item));
|
||||||
|
} else if (item is Map) {
|
||||||
|
parsed.add(
|
||||||
|
LocoChange.fromJson(
|
||||||
|
item.map((key, value) => MapEntry(key.toString(), value)),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (append) {
|
||||||
|
_latestLocoChanges = [..._latestLocoChanges, ...parsed];
|
||||||
|
} else {
|
||||||
|
_latestLocoChanges = parsed;
|
||||||
|
}
|
||||||
|
final fetchedCount = parsed.length;
|
||||||
|
_latestLocoChangesFetched = append
|
||||||
|
? offset + fetchedCount
|
||||||
|
: fetchedCount;
|
||||||
|
_latestLocoChangesHasMore = _latestLocoChangesFetched < 5000;
|
||||||
|
} else {
|
||||||
|
throw Exception('Unexpected latest loco changes response: $json');
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch latest loco changes: $e');
|
||||||
|
_latestLocoChanges = [];
|
||||||
|
_latestLocoChangesHasMore = false;
|
||||||
|
_latestLocoChangesFetched = 0;
|
||||||
|
} finally {
|
||||||
|
_isLatestLocoChangesLoading = false;
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Map<String, dynamic>?> fetchClassStats(String locoClass) async {
|
||||||
|
try {
|
||||||
|
final path = Uri.encodeComponent(locoClass);
|
||||||
|
final json = await api.get('/loco/class/stats/$path/user');
|
||||||
|
if (json is Map) {
|
||||||
|
return Map<String, dynamic>.from(json);
|
||||||
|
}
|
||||||
|
debugPrint('Unexpected class stats response for $locoClass: $json');
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch class stats for $locoClass: $e');
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -4,16 +4,27 @@ extension DataServiceTrips on DataService {
|
|||||||
Future<void> fetchTripDetails() async {
|
Future<void> fetchTripDetails() async {
|
||||||
_isTripDetailsLoading = true;
|
_isTripDetailsLoading = true;
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/trips/legs-and-stats');
|
final json = await api.get('/trips/info');
|
||||||
if (json is List) {
|
final tripDetails = _parseTripInfoList(json);
|
||||||
final tripMap = json.map((e) => TripDetail.fromJson(e)).toList();
|
_tripDetails = [...tripDetails]..sort(TripDetail.compareByDateDesc);
|
||||||
_tripDetails = [...tripMap]..sort((a, b) => b.id.compareTo(a.id));
|
_tripList = tripDetails
|
||||||
} else {
|
.map(
|
||||||
_tripDetails = [];
|
(detail) => TripSummary(
|
||||||
}
|
tripId: detail.id,
|
||||||
|
tripName: detail.name,
|
||||||
|
tripMileage: detail.mileage,
|
||||||
|
legCount: detail.legCount,
|
||||||
|
locoStats: detail.locoStats,
|
||||||
|
startDate: detail.startDate,
|
||||||
|
endDate: detail.endDate,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList()
|
||||||
|
..sort(TripSummary.compareByDateDesc);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch trip_map: $e');
|
debugPrint('Failed to fetch trip_map: $e');
|
||||||
_tripDetails = [];
|
_tripDetails = [];
|
||||||
|
_tripList = [];
|
||||||
} finally {
|
} finally {
|
||||||
_isTripDetailsLoading = false;
|
_isTripDetailsLoading = false;
|
||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
@@ -23,36 +34,39 @@ extension DataServiceTrips on DataService {
|
|||||||
Future<List<TripLocoStat>> fetchTripLocoStats(int tripId) async {
|
Future<List<TripLocoStat>> fetchTripLocoStats(int tripId) async {
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/trips/stats/$tripId');
|
final json = await api.get('/trips/stats/$tripId');
|
||||||
return _parseTripLocoStats(json);
|
return TripLocoStat.listFromJson(json);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch trip loco stats: $e');
|
debugPrint('Failed to fetch trip loco stats: $e');
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
List<TripLocoStat> _parseTripLocoStats(dynamic json) {
|
|
||||||
List<dynamic>? list;
|
|
||||||
if (json is List) {
|
|
||||||
list = json.expand((e) => e is List ? e : [e]).toList();
|
|
||||||
} else if (json is Map) {
|
|
||||||
for (final key in ['locos', 'stats', 'data', 'trip_locos']) {
|
|
||||||
final candidate = json[key];
|
|
||||||
if (candidate is List) {
|
|
||||||
list = candidate.expand((e) => e is List ? e : [e]).toList();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (list == null) return [];
|
|
||||||
return list
|
|
||||||
.whereType<Map<String, dynamic>>()
|
|
||||||
.map((e) => TripLocoStat.fromJson(e))
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> fetchTrips() async {
|
Future<void> fetchTrips() async {
|
||||||
try {
|
try {
|
||||||
final json = await api.get('/trips/mileage');
|
final json = await api.get('/trips/info');
|
||||||
|
final raw = _extractTrips(json);
|
||||||
|
if (raw != null) {
|
||||||
|
final tripMap = raw
|
||||||
|
.whereType<Map<String, dynamic>>()
|
||||||
|
.map((e) => TripSummary.fromJson(e))
|
||||||
|
.toList();
|
||||||
|
|
||||||
|
_tripList = [...tripMap]..sort(TripSummary.compareByDateDesc);
|
||||||
|
} else {
|
||||||
|
debugPrint('Unexpected trip list response: $json');
|
||||||
|
_tripList = [];
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
debugPrint('Failed to fetch trip list: $e');
|
||||||
|
_tripList = [];
|
||||||
|
} finally {
|
||||||
|
_notifyAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> fetchTripOptions() async {
|
||||||
|
try {
|
||||||
|
final json = await api.get('/trips');
|
||||||
Iterable<dynamic>? raw;
|
Iterable<dynamic>? raw;
|
||||||
if (json is List) {
|
if (json is List) {
|
||||||
raw = json;
|
raw = json;
|
||||||
@@ -71,7 +85,7 @@ extension DataServiceTrips on DataService {
|
|||||||
.map((e) => TripSummary.fromJson(e))
|
.map((e) => TripSummary.fromJson(e))
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
_tripList = [...tripMap]..sort((a, b) => b.tripId.compareTo(a.tripId));
|
_tripList = [...tripMap]..sort(TripSummary.compareByDateDesc);
|
||||||
} else {
|
} else {
|
||||||
debugPrint('Unexpected trip list response: $json');
|
debugPrint('Unexpected trip list response: $json');
|
||||||
_tripList = [];
|
_tripList = [];
|
||||||
@@ -83,5 +97,37 @@ extension DataServiceTrips on DataService {
|
|||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
void upsertTripSummary(TripSummary trip) {
|
||||||
|
final existingIndex = _tripList.indexWhere(
|
||||||
|
(element) => element.tripId == trip.tripId,
|
||||||
|
);
|
||||||
|
if (existingIndex >= 0) {
|
||||||
|
_tripList[existingIndex] = trip;
|
||||||
|
} else {
|
||||||
|
_tripList = [trip, ..._tripList];
|
||||||
|
}
|
||||||
|
_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;
|
||||||
|
}
|
||||||
|
}
|
||||||
36
lib/services/endpoint_service.dart
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import 'package:flutter/foundation.dart';
|
||||||
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
|
class EndpointService extends ChangeNotifier {
|
||||||
|
EndpointService() {
|
||||||
|
_load();
|
||||||
|
}
|
||||||
|
|
||||||
|
static const String defaultBaseUrl = 'https://mileograph.co.uk/api/v1';
|
||||||
|
static const String _prefsKey = 'api_base_url';
|
||||||
|
|
||||||
|
String _baseUrl = defaultBaseUrl;
|
||||||
|
bool _loaded = false;
|
||||||
|
|
||||||
|
String get baseUrl => _baseUrl;
|
||||||
|
bool get isLoaded => _loaded;
|
||||||
|
|
||||||
|
Future<void> _load() async {
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
final saved = prefs.getString(_prefsKey);
|
||||||
|
if (saved != null && saved.trim().isNotEmpty) {
|
||||||
|
_baseUrl = saved;
|
||||||
|
}
|
||||||
|
_loaded = true;
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> setBaseUrl(String url) async {
|
||||||
|
final trimmed = url.trim();
|
||||||
|
if (trimmed.isEmpty) return;
|
||||||
|
_baseUrl = trimmed;
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
await prefs.setString(_prefsKey, _baseUrl);
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,9 +7,10 @@ class NavigationGuard {
|
|||||||
_callback = callback;
|
_callback = callback;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void unregister(NavigationGuardCallback callback) {
|
static void unregister([NavigationGuardCallback? callback]) {
|
||||||
if (_callback == callback) {
|
if (callback == null || identical(_callback, callback)) {
|
||||||
_callback = null;
|
_callback = null;
|
||||||
|
_promptActive = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,94 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:dynamic_color/dynamic_color.dart';
|
import 'package:dynamic_color/dynamic_color.dart';
|
||||||
|
import 'package:flutter/gestures.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:mileograph_flutter/components/login/login.dart';
|
|
||||||
import 'package:mileograph_flutter/components/pages/calculator.dart';
|
import 'package:mileograph_flutter/components/pages/calculator.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/calculator_details.dart';
|
import 'package:mileograph_flutter/components/pages/calculator_details.dart';
|
||||||
|
import 'package:mileograph_flutter/components/login/login.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/dashboard.dart';
|
import 'package:mileograph_flutter/components/pages/dashboard.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/legs.dart';
|
|
||||||
import 'package:mileograph_flutter/components/pages/loco_legs.dart';
|
import 'package:mileograph_flutter/components/pages/loco_legs.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/loco_timeline.dart';
|
import 'package:mileograph_flutter/components/pages/loco_timeline.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/logbook.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/more.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/badges.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/new_entry.dart';
|
import 'package:mileograph_flutter/components/pages/new_entry.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/new_traction.dart';
|
import 'package:mileograph_flutter/components/pages/new_traction.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/profile.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/settings.dart';
|
||||||
|
import 'package:mileograph_flutter/components/pages/stats.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/traction.dart';
|
import 'package:mileograph_flutter/components/pages/traction.dart';
|
||||||
import 'package:mileograph_flutter/components/pages/trips.dart';
|
import 'package:mileograph_flutter/components/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/authservice.dart';
|
||||||
import 'package:mileograph_flutter/services/data_service.dart';
|
import 'package:mileograph_flutter/services/data_service.dart';
|
||||||
import 'package:mileograph_flutter/services/navigation_guard.dart';
|
import 'package:mileograph_flutter/services/navigation_guard.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
final GlobalKey<NavigatorState> _shellNavigatorKey =
|
||||||
|
GlobalKey<NavigatorState>();
|
||||||
|
|
||||||
|
const List<String> _contentPages = [
|
||||||
|
"/dashboard",
|
||||||
|
"/calculator",
|
||||||
|
"/logbook",
|
||||||
|
"/traction",
|
||||||
|
"/add",
|
||||||
|
"/more",
|
||||||
|
];
|
||||||
|
|
||||||
|
const List<String> _defaultTabDestinations = [
|
||||||
|
"/dashboard",
|
||||||
|
"/calculator",
|
||||||
|
"/logbook/entries",
|
||||||
|
"/traction",
|
||||||
|
"/add",
|
||||||
|
"/more",
|
||||||
|
];
|
||||||
|
|
||||||
|
const int _addTabIndex = 4;
|
||||||
|
|
||||||
|
class _NavItem {
|
||||||
|
final String label;
|
||||||
|
final IconData icon;
|
||||||
|
const _NavItem(this.label, this.icon);
|
||||||
|
}
|
||||||
|
|
||||||
|
const List<_NavItem> _navItems = [
|
||||||
|
_NavItem("Home", Icons.home),
|
||||||
|
_NavItem("Calculator", Icons.route),
|
||||||
|
_NavItem("Logbook", Icons.menu_book),
|
||||||
|
_NavItem("Traction", Icons.train),
|
||||||
|
_NavItem("Add", Icons.add),
|
||||||
|
_NavItem("More", Icons.more_horiz),
|
||||||
|
];
|
||||||
|
|
||||||
|
int tabIndexForPath(String path) {
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
class MyApp extends StatefulWidget {
|
class MyApp extends StatefulWidget {
|
||||||
const MyApp({super.key});
|
const MyApp({super.key});
|
||||||
|
|
||||||
@@ -41,34 +113,67 @@ class _MyAppState extends State<MyApp> {
|
|||||||
_routerInitialized = true;
|
_routerInitialized = true;
|
||||||
final auth = context.read<AuthService>();
|
final auth = context.read<AuthService>();
|
||||||
_router = GoRouter(
|
_router = GoRouter(
|
||||||
|
initialLocation: '/dashboard',
|
||||||
refreshListenable: auth,
|
refreshListenable: auth,
|
||||||
redirect: (context, state) {
|
redirect: (context, state) {
|
||||||
final loggedIn = auth.isLoggedIn;
|
final loggedIn = auth.isLoggedIn;
|
||||||
final loggingIn = state.uri.toString() == '/login';
|
final loggingIn = state.uri.toString() == '/login';
|
||||||
|
final atSettings = state.uri.toString() == '/settings';
|
||||||
|
|
||||||
if (!loggedIn && !loggingIn) return '/login';
|
if (!loggedIn && !loggingIn && !atSettings) return '/login';
|
||||||
if (loggedIn && loggingIn) return '/';
|
if (loggedIn && loggingIn) return '/dashboard';
|
||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
routes: [
|
routes: [
|
||||||
|
GoRoute(path: '/', redirect: (context, state) => '/dashboard'),
|
||||||
ShellRoute(
|
ShellRoute(
|
||||||
|
navigatorKey: _shellNavigatorKey,
|
||||||
builder: (context, state, child) => MyHomePage(child: child),
|
builder: (context, state, child) => MyHomePage(child: child),
|
||||||
routes: [
|
routes: [
|
||||||
GoRoute(path: '/', builder: (context, state) => const Dashboard()),
|
GoRoute(
|
||||||
|
path: '/dashboard',
|
||||||
|
builder: (context, state) => const Dashboard(),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/calculator',
|
path: '/calculator',
|
||||||
builder: (context, state) => CalculatorPage(),
|
builder: (context, state) => const CalculatorPage(),
|
||||||
|
routes: [
|
||||||
|
GoRoute(
|
||||||
|
path: 'details',
|
||||||
|
builder: (context, state) =>
|
||||||
|
CalculatorDetailsPage(result: state.extra),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/calculator/details',
|
path: '/logbook',
|
||||||
builder: (context, state) =>
|
redirect: (context, state) => '/logbook/entries',
|
||||||
CalculatorDetailsPage(result: state.extra),
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/logbook/entries',
|
||||||
|
builder: (context, state) => const LogbookPage(),
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/logbook/trips',
|
||||||
|
builder: (context, state) =>
|
||||||
|
const LogbookPage(initialTab: LogbookTab.trips),
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/trips',
|
||||||
|
redirect: (context, state) => '/logbook/trips',
|
||||||
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/legs',
|
||||||
|
redirect: (context, state) => '/logbook/entries',
|
||||||
),
|
),
|
||||||
GoRoute(path: '/legs', builder: (context, state) => LegsPage()),
|
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/traction',
|
path: '/traction',
|
||||||
builder: (context, state) => TractionPage(),
|
builder: (context, state) => TractionPage(),
|
||||||
),
|
),
|
||||||
|
GoRoute(
|
||||||
|
path: '/profile',
|
||||||
|
builder: (context, state) => const ProfilePage(),
|
||||||
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: '/traction/:id/timeline',
|
path: '/traction/:id/timeline',
|
||||||
builder: (_, state) {
|
builder: (_, state) {
|
||||||
@@ -105,8 +210,39 @@ class _MyAppState extends State<MyApp> {
|
|||||||
path: '/traction/new',
|
path: '/traction/new',
|
||||||
builder: (context, state) => const NewTractionPage(),
|
builder: (context, state) => const NewTractionPage(),
|
||||||
),
|
),
|
||||||
GoRoute(path: '/trips', builder: (context, state) => TripsPage()),
|
GoRoute(
|
||||||
GoRoute(path: '/add', builder: (context, state) => NewEntryPage()),
|
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(
|
GoRoute(
|
||||||
path: '/legs/edit/:id',
|
path: '/legs/edit/:id',
|
||||||
builder: (_, state) {
|
builder: (_, state) {
|
||||||
@@ -117,7 +253,14 @@ 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(),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -144,6 +287,14 @@ class _MyAppState extends State<MyApp> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _BackIntent extends Intent {
|
||||||
|
const _BackIntent();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ForwardIntent extends Intent {
|
||||||
|
const _ForwardIntent();
|
||||||
|
}
|
||||||
|
|
||||||
class MyHomePage extends StatefulWidget {
|
class MyHomePage extends StatefulWidget {
|
||||||
final Widget child;
|
final Widget child;
|
||||||
const MyHomePage({super.key, required this.child});
|
const MyHomePage({super.key, required this.child});
|
||||||
@@ -153,38 +304,32 @@ class MyHomePage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _MyHomePageState extends State<MyHomePage> {
|
class _MyHomePageState extends State<MyHomePage> {
|
||||||
final List<String> contentPages = [
|
List<String> get tabDestinations => _defaultTabDestinations;
|
||||||
"/",
|
|
||||||
"/calculator",
|
|
||||||
"/legs",
|
|
||||||
"/traction",
|
|
||||||
"/trips",
|
|
||||||
"/add",
|
|
||||||
];
|
|
||||||
|
|
||||||
int _getIndexFromLocation(String location) {
|
|
||||||
int newIndex = contentPages.indexWhere((path) {
|
|
||||||
if (location == path) return true;
|
|
||||||
if (path == '/') return location == '/';
|
|
||||||
return location.startsWith('$path/');
|
|
||||||
});
|
|
||||||
if (newIndex < 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
return newIndex;
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _onItemTapped(int index, int currentIndex) async {
|
Future<void> _onItemTapped(int index, int currentIndex) async {
|
||||||
if (index < 0 || index >= contentPages.length || index == currentIndex) {
|
if (index < 0 || index >= tabDestinations.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
final currentPath = GoRouterState.of(context).uri.path;
|
||||||
|
final targetPath = tabDestinations[index];
|
||||||
|
final alreadyAtTarget =
|
||||||
|
currentPath == targetPath || currentPath.startsWith('$targetPath/');
|
||||||
|
if (index == currentIndex && alreadyAtTarget) return;
|
||||||
|
|
||||||
await NavigationGuard.attemptNavigation(() async {
|
await NavigationGuard.attemptNavigation(() async {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
context.go(contentPages[index]);
|
_navigateToIndex(index);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final List<String> _history = [];
|
||||||
|
int _historyPosition = -1;
|
||||||
|
final List<String> _forwardHistory = [];
|
||||||
|
bool _suppressRecord = false;
|
||||||
|
|
||||||
bool _fetched = false;
|
bool _fetched = false;
|
||||||
|
bool _railCollapsed = false;
|
||||||
|
Timer? _notificationsTimer;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void didChangeDependencies() {
|
void didChangeDependencies() {
|
||||||
@@ -209,65 +354,652 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
if (data.traction.isEmpty) {
|
if (data.traction.isEmpty) {
|
||||||
data.fetchHadTraction();
|
data.fetchHadTraction();
|
||||||
}
|
}
|
||||||
|
if (data.latestLocoChanges.isEmpty) {
|
||||||
|
data.fetchLatestLocoChanges();
|
||||||
|
}
|
||||||
if (data.onThisDay.isEmpty) {
|
if (data.onThisDay.isEmpty) {
|
||||||
data.fetchOnThisDay();
|
data.fetchOnThisDay();
|
||||||
}
|
}
|
||||||
if (data.tripDetails.isEmpty) {
|
if (data.tripDetails.isEmpty) {
|
||||||
data.fetchTripDetails();
|
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
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final location = GoRouterState.of(context).uri.toString();
|
final uri = GoRouterState.of(context).uri;
|
||||||
final pageIndex = _getIndexFromLocation(location);
|
final pageIndex = tabIndexForPath(uri.path);
|
||||||
|
_syncHistory(uri.path);
|
||||||
|
if (pageIndex != _addTabIndex) {
|
||||||
|
NavigationGuard.unregister();
|
||||||
|
}
|
||||||
final homepageReady = context.select<DataService, bool>(
|
final homepageReady = context.select<DataService, bool>(
|
||||||
(data) => data.homepageStats != null || !data.isHomepageLoading,
|
(data) => data.homepageStats != null || !data.isHomepageLoading,
|
||||||
);
|
);
|
||||||
|
final data = context.watch<DataService>();
|
||||||
final auth = context.read<AuthService>();
|
final auth = context.read<AuthService>();
|
||||||
|
|
||||||
final currentPage = homepageReady
|
final currentPage = homepageReady
|
||||||
? widget.child
|
? widget.child
|
||||||
: const Center(child: CircularProgressIndicator());
|
: const Center(child: CircularProgressIndicator());
|
||||||
|
|
||||||
return Scaffold(
|
final scaffold = LayoutBuilder(
|
||||||
appBar: AppBar(
|
builder: (context, constraints) {
|
||||||
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
final isWide = constraints.maxWidth >= 900;
|
||||||
title: Text.rich(
|
final defaultRailExtended = constraints.maxWidth >= 1400;
|
||||||
TextSpan(
|
final railExtended = defaultRailExtended && !_railCollapsed;
|
||||||
children: const [
|
final showRailToggle = defaultRailExtended;
|
||||||
TextSpan(text: "Mile"),
|
final navRailDestinations = _navItems
|
||||||
TextSpan(text: "O", style: TextStyle(color: Colors.red)),
|
.map(
|
||||||
TextSpan(text: "graph"),
|
(item) => NavigationRailDestination(
|
||||||
|
icon: Icon(item.icon),
|
||||||
|
label: Text(item.label),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList();
|
||||||
|
final navBarDestinations = _navItems
|
||||||
|
.map(
|
||||||
|
(item) => NavigationDestination(
|
||||||
|
icon: Icon(item.icon),
|
||||||
|
label: item.label,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList();
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
||||||
|
title: Text.rich(
|
||||||
|
TextSpan(
|
||||||
|
children: const [
|
||||||
|
TextSpan(text: "Mile"),
|
||||||
|
TextSpan(
|
||||||
|
text: "O",
|
||||||
|
style: TextStyle(color: Colors.red),
|
||||||
|
),
|
||||||
|
TextSpan(text: "graph"),
|
||||||
|
],
|
||||||
|
style: const TextStyle(
|
||||||
|
decoration: TextDecoration.none,
|
||||||
|
color: Colors.white,
|
||||||
|
fontFamily: "Tomatoes",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
actions: [
|
||||||
|
_buildNotificationAction(context, data),
|
||||||
|
IconButton(
|
||||||
|
tooltip: 'Profile',
|
||||||
|
onPressed: () => context.go('/more/profile'),
|
||||||
|
icon: const Icon(Icons.person),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
tooltip: 'Settings',
|
||||||
|
onPressed: () => context.go('/more/settings'),
|
||||||
|
icon: const Icon(Icons.settings),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
onPressed: auth.logout,
|
||||||
|
icon: const Icon(Icons.logout),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
style: const TextStyle(
|
),
|
||||||
decoration: TextDecoration.none,
|
bottomNavigationBar: isWide
|
||||||
color: Colors.white,
|
? null
|
||||||
fontFamily: "Tomatoes",
|
: NavigationBar(
|
||||||
|
selectedIndex: pageIndex,
|
||||||
|
onDestinationSelected: (int index) =>
|
||||||
|
_onItemTapped(index, pageIndex),
|
||||||
|
destinations: navBarDestinations,
|
||||||
|
),
|
||||||
|
body: isWide
|
||||||
|
? 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,
|
||||||
|
labelType: railExtended
|
||||||
|
? NavigationRailLabelType.none
|
||||||
|
: NavigationRailLabelType.selected,
|
||||||
|
onDestinationSelected: (int index) =>
|
||||||
|
_onItemTapped(index, pageIndex),
|
||||||
|
destinations: navRailDestinations,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (showRailToggle)
|
||||||
|
Positioned(
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
|
bottom: 8,
|
||||||
|
child: _buildRailToggleButton(railExtended),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const VerticalDivider(width: 1),
|
||||||
|
Expanded(child: currentPage),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
: currentPage,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
return Shortcuts(
|
||||||
|
shortcuts: <LogicalKeySet, Intent>{
|
||||||
|
LogicalKeySet(LogicalKeyboardKey.browserBack): const _BackIntent(),
|
||||||
|
LogicalKeySet(LogicalKeyboardKey.browserForward):
|
||||||
|
const _ForwardIntent(),
|
||||||
|
},
|
||||||
|
child: Actions(
|
||||||
|
actions: {
|
||||||
|
_BackIntent: CallbackAction<_BackIntent>(
|
||||||
|
onInvoke: (_) {
|
||||||
|
_handleBackNavigation(allowExit: false, recordForward: true);
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
_ForwardIntent: CallbackAction<_ForwardIntent>(
|
||||||
|
onInvoke: (_) {
|
||||||
|
_handleForwardNavigation();
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
},
|
||||||
|
child: Focus(
|
||||||
|
autofocus: true,
|
||||||
|
child: Listener(
|
||||||
|
onPointerDown: _handlePointerButtons,
|
||||||
|
behavior: HitTestBehavior.opaque,
|
||||||
|
child: PopScope(
|
||||||
|
canPop: false,
|
||||||
|
onPopInvokedWithResult: (didPop, _) async {
|
||||||
|
if (didPop) return;
|
||||||
|
await _handleBackNavigation(
|
||||||
|
allowExit: true,
|
||||||
|
recordForward: false,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
child: scaffold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
actions: [
|
|
||||||
const IconButton(onPressed: null, icon: Icon(Icons.account_circle)),
|
|
||||||
IconButton(onPressed: auth.logout, icon: const Icon(Icons.logout)),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
bottomNavigationBar: NavigationBar(
|
|
||||||
selectedIndex: pageIndex,
|
|
||||||
onDestinationSelected: (int index) => _onItemTapped(index, pageIndex),
|
|
||||||
destinations: const [
|
|
||||||
NavigationDestination(icon: Icon(Icons.home), label: "Home"),
|
|
||||||
NavigationDestination(icon: Icon(Icons.route), label: "Calculator"),
|
|
||||||
NavigationDestination(icon: Icon(Icons.list), label: "Entries"),
|
|
||||||
NavigationDestination(icon: Icon(Icons.train), label: "Traction"),
|
|
||||||
NavigationDestination(icon: Icon(Icons.book), label: "Trips"),
|
|
||||||
NavigationDestination(icon: Icon(Icons.add), label: "Add"),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
body: currentPage,
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
void _handlePointerButtons(PointerDownEvent event) {
|
||||||
|
// Support mouse back/forward buttons.
|
||||||
|
if (event.buttons == kBackMouseButton) {
|
||||||
|
_handleBackNavigation(allowExit: false, recordForward: true);
|
||||||
|
} else if (event.buttons == kForwardMouseButton) {
|
||||||
|
_handleForwardNavigation();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 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(currentPath);
|
||||||
|
_historyPosition -= 1;
|
||||||
|
_suppressRecord = true;
|
||||||
|
context.go(_history[_historyPosition]);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
final homePath = tabDestinations.first;
|
||||||
|
if (currentPath != homePath) {
|
||||||
|
if (recordForward) _pushForward(currentPath);
|
||||||
|
_suppressRecord = true;
|
||||||
|
context.go(homePath);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (allowExit) {
|
||||||
|
SystemNavigator.pop();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<bool> _handleForwardNavigation() async {
|
||||||
|
if (_forwardHistory.isEmpty) return false;
|
||||||
|
final nextPath = _forwardHistory.removeLast();
|
||||||
|
|
||||||
|
// Move cursor forward, keeping history in sync.
|
||||||
|
if (_historyPosition < _history.length - 1) {
|
||||||
|
_historyPosition += 1;
|
||||||
|
_history[_historyPosition] = nextPath;
|
||||||
|
if (_historyPosition < _history.length - 1) {
|
||||||
|
_history.removeRange(_historyPosition + 1, _history.length);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_history.add(nextPath);
|
||||||
|
_historyPosition = _history.length - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
_suppressRecord = true;
|
||||||
|
if (!mounted) return false;
|
||||||
|
context.go(nextPath);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void _pushForward(String path) {
|
||||||
|
if (_forwardHistory.isEmpty || _forwardHistory.last != path) {
|
||||||
|
_forwardHistory.add(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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(path);
|
||||||
|
_historyPosition = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (_suppressRecord) {
|
||||||
|
_suppressRecord = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (_historyPosition >= 0 &&
|
||||||
|
_historyPosition < _history.length &&
|
||||||
|
_history[_historyPosition] == path) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (_historyPosition < _history.length - 1) {
|
||||||
|
_history.removeRange(_historyPosition + 1, _history.length);
|
||||||
|
}
|
||||||
|
_history.add(path);
|
||||||
|
_historyPosition = _history.length - 1;
|
||||||
|
_forwardHistory.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void _navigateToIndex(int index) {
|
||||||
|
_suppressRecord = false;
|
||||||
|
_forwardHistory.clear();
|
||||||
|
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
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 0.2.3+1
|
version: 0.6.0+3
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
@@ -102,7 +102,16 @@ flutter:
|
|||||||
flutter_launcher_icons:
|
flutter_launcher_icons:
|
||||||
android: true
|
android: true
|
||||||
ios: 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
|
image_path: assets/icons/app_icon.png
|
||||||
adaptive_icon_background: "#ffffff"
|
adaptive_icon_background: "#000000"
|
||||||
adaptive_icon_foreground: assets/icons/app_icon.png
|
adaptive_icon_foreground: assets/icons/app_icon.png
|
||||||
min_sdk_android: 21
|
min_sdk_android: 21
|
||||||
|
|||||||
19
test/app_shell_test.dart
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
import 'package:mileograph_flutter/ui/app_shell.dart';
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
test('tabIndexForPath maps nested routes', () {
|
||||||
|
expect(tabIndexForPath('/'), 0);
|
||||||
|
expect(tabIndexForPath('/calculator'), 1);
|
||||||
|
expect(tabIndexForPath('/calculator/details'), 1);
|
||||||
|
expect(tabIndexForPath('/legs'), 2);
|
||||||
|
expect(tabIndexForPath('/traction/12/timeline'), 3);
|
||||||
|
expect(tabIndexForPath('/trips'), 2);
|
||||||
|
expect(tabIndexForPath('/add'), 4);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('tabIndexForPath ignores query when parsing uri', () {
|
||||||
|
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 |