Compare commits
15 Commits
v0.6.1-dev
...
v0.6.3-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| af37e25692 | |||
|
|
1689869ce5 | ||
|
|
425ab46656 | ||
| 196511dfab | |||
|
|
23f294c6f0 | ||
|
|
8e1bd05040 | ||
|
|
2b8cb8342a | ||
|
|
f8bc962c84 | ||
|
|
0650a140c3 | ||
|
|
7d4db0af5f | ||
|
|
a4ab84e9a9 | ||
|
|
e3f35cf1a0 | ||
|
|
b5fc68c6f6 | ||
|
|
30fab18946 | ||
| ff38c3f838 |
411
.gitea/workflows/dev.yml
Normal file
411
.gitea/workflows/dev.yml
Normal file
@@ -0,0 +1,411 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- dev-other
|
||||||
|
|
||||||
|
env:
|
||||||
|
JAVA_VERSION: "17"
|
||||||
|
ANDROID_SDK_ROOT: "${{ github.workspace }}/android-sdk"
|
||||||
|
FLUTTER_VERSION: "3.38.5"
|
||||||
|
BUILD_WINDOWS: "false" # Windows build disabled (no runner available)
|
||||||
|
GITEA_BASE_URL: https://git.tgj.services
|
||||||
|
WEB_IMAGE: "git.tgj.services/petegregoryy/mileograph-web"
|
||||||
|
REGISTRY: git.tgj.services
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
meta:
|
||||||
|
runs-on:
|
||||||
|
- tgj-arc
|
||||||
|
outputs:
|
||||||
|
base_version: ${{ steps.meta.outputs.base }}
|
||||||
|
release_tag: ${{ steps.meta.outputs.release_tag }}
|
||||||
|
dev_suffix: ${{ steps.meta.outputs.dev_suffix }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Determine version
|
||||||
|
id: meta
|
||||||
|
run: |
|
||||||
|
RAW_VERSION=$(awk '/^version:/{print $2}' pubspec.yaml)
|
||||||
|
BASE_VERSION=${RAW_VERSION%%+*}
|
||||||
|
VERSION="${BASE_VERSION}"
|
||||||
|
TAG="v${VERSION}"
|
||||||
|
DEV_SUFFIX=""
|
||||||
|
|
||||||
|
if [ "${GITHUB_REF}" = "refs/heads/dev" ]; then
|
||||||
|
DEV_ITER="${GITHUB_RUN_NUMBER:-}"
|
||||||
|
if [ -z "$DEV_ITER" ]; then
|
||||||
|
DEV_ITER=$(git rev-list --count HEAD)
|
||||||
|
fi
|
||||||
|
|
||||||
|
DEV_SUFFIX="-dev.${DEV_ITER}"
|
||||||
|
VERSION="${BASE_VERSION}${DEV_SUFFIX}"
|
||||||
|
TAG="v${VERSION}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "base=${BASE_VERSION}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "release_tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "dev_suffix=${DEV_SUFFIX}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Fail if release already exists
|
||||||
|
env:
|
||||||
|
TAG: ${{ steps.meta.outputs.release_tag }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
if ! command -v curl >/dev/null 2>&1; then
|
||||||
|
if command -v sudo >/dev/null 2>&1; then
|
||||||
|
SUDO="sudo"
|
||||||
|
else
|
||||||
|
SUDO=""
|
||||||
|
fi
|
||||||
|
$SUDO apt-get update
|
||||||
|
$SUDO apt-get install -y curl ca-certificates
|
||||||
|
fi
|
||||||
|
|
||||||
|
URL="${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/tags/${TAG}"
|
||||||
|
CODE="$(curl -sS -o /dev/null -w "%{http_code}" -H "Authorization: token ${{ secrets.GITEA_TOKEN }}" "$URL" || true)"
|
||||||
|
|
||||||
|
if [ "$CODE" = "200" ]; then
|
||||||
|
echo "Release already exists for tag ${TAG}; refusing to re-release."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ "$CODE" != "404" ]; then
|
||||||
|
echo "Unexpected response checking existing release (${CODE}) at ${URL}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
android-build:
|
||||||
|
runs-on:
|
||||||
|
- tgj-arc
|
||||||
|
needs: meta
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
#
|
||||||
|
# - name: Install OS deps (Android)
|
||||||
|
# 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
|
||||||
|
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: temurin
|
||||||
|
java-version: ${{ env.JAVA_VERSION }}
|
||||||
|
|
||||||
|
- name: Install Android SDK
|
||||||
|
run: |
|
||||||
|
mkdir -p "$ANDROID_SDK_ROOT"/cmdline-tools
|
||||||
|
curl -fsSL https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip -o /tmp/cli-tools.zip
|
||||||
|
unzip -q /tmp/cli-tools.zip -d "$ANDROID_SDK_ROOT"/cmdline-tools
|
||||||
|
mv "$ANDROID_SDK_ROOT"/cmdline-tools/cmdline-tools "$ANDROID_SDK_ROOT"/cmdline-tools/latest
|
||||||
|
|
||||||
|
# Accept licences (ignore SIGPIPE exit 141)
|
||||||
|
yes | "$ANDROID_SDK_ROOT"/cmdline-tools/latest/bin/sdkmanager --sdk_root="$ANDROID_SDK_ROOT" --licenses || true
|
||||||
|
|
||||||
|
# Install required packages (also ignore SIGPIPE)
|
||||||
|
yes | "$ANDROID_SDK_ROOT"/cmdline-tools/latest/bin/sdkmanager --sdk_root="$ANDROID_SDK_ROOT" \
|
||||||
|
"platform-tools" "platforms;android-33" "build-tools;33.0.2" || true
|
||||||
|
|
||||||
|
echo "ANDROID_SDK_ROOT=$ANDROID_SDK_ROOT" >> "$GITHUB_ENV"
|
||||||
|
echo "$ANDROID_SDK_ROOT/platform-tools" >> "$GITHUB_PATH"
|
||||||
|
echo "$ANDROID_SDK_ROOT/build-tools/33.0.2" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
|
# - name: Install Flutter SDK
|
||||||
|
# run: |
|
||||||
|
# set -euo pipefail
|
||||||
|
# FLUTTER_HOME="$HOME/flutter"
|
||||||
|
# # Avoid git ownership issues when Flutter checks out deps.
|
||||||
|
# git config --global --add safe.directory "$FLUTTER_HOME" || true
|
||||||
|
# if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
||||||
|
# rm -rf "$FLUTTER_HOME"
|
||||||
|
# curl -fsSL -o /tmp/flutter.tar.xz "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}-stable.tar.xz"
|
||||||
|
# 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: Prepare Android keystore (optional)
|
||||||
|
if: ${{ secrets.ANDROID_KEYSTORE_BASE64 != '' }}
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > android-release-key.jks
|
||||||
|
echo "ANDROID_KEYSTORE_PATH=$PWD/android-release-key.jks" >> "$GITHUB_ENV"
|
||||||
|
echo "ANDROID_KEYSTORE_PASSWORD=${{ secrets.ANDROID_KEYSTORE_PASSWORD }}" >> "$GITHUB_ENV"
|
||||||
|
echo "ANDROID_KEY_ALIAS=${{ secrets.ANDROID_KEY_ALIAS }}" >> "$GITHUB_ENV"
|
||||||
|
echo "ANDROID_KEY_PASSWORD=${{ secrets.ANDROID_KEY_PASSWORD }}" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
|
- name: Build Android App Bundle (release)
|
||||||
|
run: flutter build appbundle --release
|
||||||
|
|
||||||
|
- name: Archive Android App Bundle
|
||||||
|
env:
|
||||||
|
BASE_VERSION: ${{ needs.meta.outputs.base_version }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
BUNDLE_SRC="build/app/outputs/bundle/release/app-release.aab"
|
||||||
|
if [ ! -f "$BUNDLE_SRC" ]; then
|
||||||
|
echo "Bundle not found at $BUNDLE_SRC"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
cp "$BUNDLE_SRC" "mileograph-${BASE_VERSION}.aab"
|
||||||
|
|
||||||
|
- name: Download bundletool
|
||||||
|
run: |
|
||||||
|
BUNDLETOOL_VERSION=1.15.6
|
||||||
|
curl -fsSL -o bundletool.jar "https://github.com/google/bundletool/releases/download/${BUNDLETOOL_VERSION}/bundletool-all-${BUNDLETOOL_VERSION}.jar"
|
||||||
|
|
||||||
|
- name: Extract universal APK from bundle
|
||||||
|
env:
|
||||||
|
BASE_VERSION: ${{ needs.meta.outputs.base_version }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
BUNDLE="build/app/outputs/bundle/release/app-release.aab"
|
||||||
|
OUTPUT_APKS="app-release.apks"
|
||||||
|
APK_NAME="mileograph-${BASE_VERSION}.apk"
|
||||||
|
|
||||||
|
if [ ! -f "$BUNDLE" ]; then
|
||||||
|
echo "Bundle not found at $BUNDLE"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
SIGNING_ARGS=()
|
||||||
|
if [ -n "${ANDROID_KEYSTORE_PATH:-}" ] && [ -f "$ANDROID_KEYSTORE_PATH" ]; then
|
||||||
|
SIGNING_ARGS+=(--ks="$ANDROID_KEYSTORE_PATH")
|
||||||
|
SIGNING_ARGS+=(--ks-pass="pass:${ANDROID_KEYSTORE_PASSWORD}")
|
||||||
|
SIGNING_ARGS+=(--ks-key-alias="${ANDROID_KEY_ALIAS}")
|
||||||
|
KEY_PASS="${ANDROID_KEY_PASSWORD:-$ANDROID_KEYSTORE_PASSWORD}"
|
||||||
|
SIGNING_ARGS+=(--key-pass="pass:${KEY_PASS}")
|
||||||
|
else
|
||||||
|
echo "No release keystore provided; bundletool will sign with the debug keystore."
|
||||||
|
fi
|
||||||
|
|
||||||
|
java -jar bundletool.jar build-apks \
|
||||||
|
--bundle="$BUNDLE" \
|
||||||
|
--output="$OUTPUT_APKS" \
|
||||||
|
--mode=universal \
|
||||||
|
"${SIGNING_ARGS[@]}"
|
||||||
|
|
||||||
|
unzip -p "$OUTPUT_APKS" universal.apk > "$APK_NAME"
|
||||||
|
ls -lh "$APK_NAME"
|
||||||
|
|
||||||
|
- name: Upload Android APK artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: android-apk
|
||||||
|
path: mileograph-${{ needs.meta.outputs.base_version }}.apk
|
||||||
|
|
||||||
|
- name: Upload Android AAB artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: android-aab
|
||||||
|
path: mileograph-${{ needs.meta.outputs.base_version }}.aab
|
||||||
|
|
||||||
|
linux-build:
|
||||||
|
runs-on:
|
||||||
|
- tgj-arc
|
||||||
|
needs: meta
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- 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 Linux desktop
|
||||||
|
run: flutter config --enable-linux-desktop
|
||||||
|
|
||||||
|
- name: Build Linux binary (release)
|
||||||
|
run: |
|
||||||
|
flutter build linux --release
|
||||||
|
tar -C build/linux/x64/release/bundle -czf app-linux-x64.tar.gz .
|
||||||
|
|
||||||
|
- name: Upload Linux artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: linux-bundle
|
||||||
|
path: app-linux-x64.tar.gz
|
||||||
|
|
||||||
|
web-build:
|
||||||
|
runs-on:
|
||||||
|
- tgj-arc
|
||||||
|
needs: meta
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- 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: Set up docker buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Docker meta
|
||||||
|
id: dmeta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/petegregoryy/railframe-web
|
||||||
|
flavor: latest=false
|
||||||
|
tags: |
|
||||||
|
type=sha,prefix=
|
||||||
|
type=raw,value=${{ needs.meta.outputs.base_version }}${{ needs.meta.outputs.dev_suffix }}
|
||||||
|
|
||||||
|
- name: Login to the docker registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: petegregoryy
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
id: docker_build
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
file: Dockerfile.web
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.dmeta.outputs.tags }}
|
||||||
|
labels: ${{ steps.dmeta.outputs.labels }}
|
||||||
|
cache-from: type=registry,ref=${{ env.REGISTRY }}/petegregoryy/railframe-web:buildcache-dev
|
||||||
|
cache-to: type=registry,ref=${{ env.REGISTRY }}/petegregoryy/railframe-web:buildcache-dev,mode=max
|
||||||
|
|
||||||
|
release-dev:
|
||||||
|
runs-on:
|
||||||
|
- tgj-arc
|
||||||
|
needs:
|
||||||
|
- meta
|
||||||
|
- android-build
|
||||||
|
- linux-build
|
||||||
|
- web-build
|
||||||
|
steps:
|
||||||
|
- name: Download Android APK
|
||||||
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: android-apk
|
||||||
|
path: artifacts
|
||||||
|
|
||||||
|
- name: Download Android AAB
|
||||||
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: android-aab
|
||||||
|
path: artifacts
|
||||||
|
|
||||||
|
- name: Prepare APK and tag
|
||||||
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
|
id: bundle
|
||||||
|
run: |
|
||||||
|
BASE="${{ needs.meta.outputs.base_version }}"
|
||||||
|
TAG="${{ needs.meta.outputs.release_tag }}"
|
||||||
|
DEV_SUFFIX="${{ needs.meta.outputs.dev_suffix }}"
|
||||||
|
if [ -z "$DEV_SUFFIX" ]; then
|
||||||
|
echo "dev_suffix is empty; expected '-dev.<n>'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
VERSION="${BASE}${DEV_SUFFIX}"
|
||||||
|
APK_NAME="mileograph-${VERSION}.apk"
|
||||||
|
AAB_NAME="mileograph-${VERSION}.aab"
|
||||||
|
|
||||||
|
mv "artifacts/mileograph-${BASE}.apk" "artifacts/${APK_NAME}"
|
||||||
|
mv "artifacts/mileograph-${BASE}.aab" "artifacts/${AAB_NAME}"
|
||||||
|
|
||||||
|
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "apk=artifacts/${APK_NAME}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "aab=artifacts/${AAB_NAME}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Create prerelease on Gitea
|
||||||
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
|
uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
tag: ${{ steps.bundle.outputs.tag }}
|
||||||
|
name: ${{ steps.bundle.outputs.tag }}
|
||||||
|
prerelease: true
|
||||||
|
commit: ${{ github.sha }}
|
||||||
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
|
# NOTE: no `artifacts:` here
|
||||||
|
|
||||||
|
- name: Attach APK to Gitea release
|
||||||
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
TAG="${{ steps.bundle.outputs.tag }}"
|
||||||
|
APK="${{ steps.bundle.outputs.apk }}"
|
||||||
|
|
||||||
|
# 1. Find release ID by tag
|
||||||
|
RELEASE_JSON=$(curl -sS \
|
||||||
|
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||||
|
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/tags/${TAG}")
|
||||||
|
|
||||||
|
RELEASE_ID=$(echo "$RELEASE_JSON" | jq -r '.id')
|
||||||
|
|
||||||
|
echo "Release ID: $RELEASE_ID"
|
||||||
|
|
||||||
|
# 2. Upload APK with multipart/form-data
|
||||||
|
NAME=$(basename "$APK")
|
||||||
|
echo "Uploading $NAME"
|
||||||
|
|
||||||
|
curl -sS -X POST \
|
||||||
|
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||||
|
-F "attachment=@${APK}" \
|
||||||
|
-F "name=${NAME}" \
|
||||||
|
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||||
|
>/dev/null
|
||||||
|
|
||||||
|
# Attach AAB
|
||||||
|
AAB="${{ steps.bundle.outputs.aab }}"
|
||||||
|
NAME_AAB=$(basename "$AAB")
|
||||||
|
echo "Uploading $NAME_AAB"
|
||||||
|
|
||||||
|
curl -sS -X POST \
|
||||||
|
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
|
||||||
|
-F "attachment=@${AAB}" \
|
||||||
|
-F "name=${NAME_AAB}" \
|
||||||
|
"${GITEA_BASE_URL}/api/v1/repos/${{ github.repository }}/releases/${RELEASE_ID}/assets" \
|
||||||
|
>/dev/null
|
||||||
@@ -13,6 +13,7 @@ env:
|
|||||||
BUILD_WINDOWS: "false" # Windows build disabled (no runner available)
|
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"
|
WEB_IMAGE: "git.tgj.services/petegregoryy/mileograph-web"
|
||||||
|
REGISTRY: git.tgj.services
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
meta:
|
meta:
|
||||||
@@ -80,21 +81,21 @@ jobs:
|
|||||||
|
|
||||||
android-build:
|
android-build:
|
||||||
runs-on:
|
runs-on:
|
||||||
- mileograph
|
- tgj-arc
|
||||||
needs: meta
|
needs: meta
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
#
|
||||||
- name: Install OS deps (Android)
|
# - name: Install OS deps (Android)
|
||||||
run: |
|
# run: |
|
||||||
if command -v sudo >/dev/null 2>&1; then
|
# if command -v sudo >/dev/null 2>&1; then
|
||||||
SUDO="sudo"
|
# SUDO="sudo"
|
||||||
else
|
# else
|
||||||
SUDO=""
|
# SUDO=""
|
||||||
fi
|
# fi
|
||||||
$SUDO apt-get update
|
# $SUDO apt-get update
|
||||||
$SUDO apt-get install -y unzip xz-utils zip libstdc++6 liblzma-dev curl jq
|
# $SUDO apt-get install -y unzip xz-utils zip libstdc++6 liblzma-dev curl jq
|
||||||
|
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
@@ -120,19 +121,19 @@ jobs:
|
|||||||
echo "$ANDROID_SDK_ROOT/platform-tools" >> "$GITHUB_PATH"
|
echo "$ANDROID_SDK_ROOT/platform-tools" >> "$GITHUB_PATH"
|
||||||
echo "$ANDROID_SDK_ROOT/build-tools/33.0.2" >> "$GITHUB_PATH"
|
echo "$ANDROID_SDK_ROOT/build-tools/33.0.2" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
- name: Install Flutter SDK
|
# - name: Install Flutter SDK
|
||||||
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.
|
# # Avoid git ownership issues when Flutter checks out deps.
|
||||||
git config --global --add safe.directory "$FLUTTER_HOME" || true
|
# 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"
|
||||||
tar -C "$HOME" -xf /tmp/flutter.tar.xz
|
# tar -C "$HOME" -xf /tmp/flutter.tar.xz
|
||||||
fi
|
# fi
|
||||||
echo "$FLUTTER_HOME/bin" >> "$GITHUB_PATH"
|
# echo "$FLUTTER_HOME/bin" >> "$GITHUB_PATH"
|
||||||
"$FLUTTER_HOME/bin/flutter" --version
|
# "$FLUTTER_HOME/bin/flutter" --version
|
||||||
|
|
||||||
- name: Allow all git directories (CI)
|
- name: Allow all git directories (CI)
|
||||||
run: git config --global --add safe.directory '*'
|
run: git config --global --add safe.directory '*'
|
||||||
@@ -221,36 +222,12 @@ jobs:
|
|||||||
|
|
||||||
linux-build:
|
linux-build:
|
||||||
runs-on:
|
runs-on:
|
||||||
- mileograph
|
- tgj-arc
|
||||||
needs: meta
|
needs: meta
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install OS deps (Linux desktop)
|
|
||||||
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 libglu1-mesa clang cmake ninja-build pkg-config libgtk-3-dev libsecret-1-dev liblzma-dev curl jq
|
|
||||||
|
|
||||||
- name: Install Flutter SDK
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
FLUTTER_HOME="$HOME/flutter"
|
|
||||||
# Avoid git ownership issues when Flutter checks out deps.
|
|
||||||
git config --global --add safe.directory "$FLUTTER_HOME" || true
|
|
||||||
if [ ! -x "$FLUTTER_HOME/bin/flutter" ]; then
|
|
||||||
rm -rf "$FLUTTER_HOME"
|
|
||||||
curl -fsSL -o /tmp/flutter.tar.xz "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${FLUTTER_VERSION}-stable.tar.xz"
|
|
||||||
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)
|
- name: Allow all git directories (CI)
|
||||||
run: git config --global --add safe.directory '*'
|
run: git config --global --add safe.directory '*'
|
||||||
|
|
||||||
@@ -276,38 +253,12 @@ jobs:
|
|||||||
|
|
||||||
web-build:
|
web-build:
|
||||||
runs-on:
|
runs-on:
|
||||||
- mileograph
|
- tgj-arc
|
||||||
needs: meta
|
needs: meta
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
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)
|
- name: Allow all git directories (CI)
|
||||||
run: git config --global --add safe.directory '*'
|
run: git config --global --add safe.directory '*'
|
||||||
|
|
||||||
@@ -331,50 +282,38 @@ jobs:
|
|||||||
name: web-build
|
name: web-build
|
||||||
path: app-web.tar.gz
|
path: app-web.tar.gz
|
||||||
|
|
||||||
- name: Compute web image tags
|
- name: Set up docker buildx
|
||||||
id: web_meta
|
uses: docker/setup-buildx-action@v3
|
||||||
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"
|
- name: Docker meta
|
||||||
echo "tag=${TAG}" >> "$GITHUB_OUTPUT"
|
id: dmeta
|
||||||
echo "alias=${ALIAS}" >> "$GITHUB_OUTPUT"
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/petegregoryy/railframe-web
|
||||||
|
flavor: latest=false
|
||||||
|
tags: |
|
||||||
|
type=sha,prefix=
|
||||||
|
type=raw,value=${{ needs.meta.outputs.base_version }}${{ needs.meta.outputs.dev_suffix }}
|
||||||
|
type=raw,value=dev
|
||||||
|
|
||||||
- name: Login to registry
|
- name: Login to the docker registry
|
||||||
if: ${{ secrets.DOCKERHUB_TOKEN != '' && steps.web_meta.outputs.tag != '' }}
|
uses: docker/login-action@v3
|
||||||
env:
|
with:
|
||||||
REGISTRY_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
registry: ${{ env.REGISTRY }}
|
||||||
run: |
|
username: petegregoryy
|
||||||
echo "$REGISTRY_TOKEN" | docker login git.tgj.services -u petegregoryy --password-stdin
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push web image
|
- name: Build and push
|
||||||
if: ${{ secrets.DOCKERHUB_TOKEN != '' && steps.web_meta.outputs.tag != '' }}
|
id: docker_build
|
||||||
env:
|
uses: docker/build-push-action@v6
|
||||||
IMAGE: ${{ steps.web_meta.outputs.image }}
|
with:
|
||||||
TAG: ${{ steps.web_meta.outputs.tag }}
|
file: Dockerfile.web
|
||||||
ALIAS: ${{ steps.web_meta.outputs.alias }}
|
context: .
|
||||||
run: |
|
push: true
|
||||||
docker buildx create --name buildx --driver=docker-container --use || docker buildx use buildx
|
tags: ${{ steps.dmeta.outputs.tags }}
|
||||||
TAG_ARGS=(-t "${IMAGE}:${TAG}")
|
labels: ${{ steps.dmeta.outputs.labels }}
|
||||||
if [ -n "$ALIAS" ]; then
|
cache-from: type=registry,ref=${{ env.REGISTRY }}/petegregoryy/railframe-web:buildcache
|
||||||
TAG_ARGS+=(-t "${IMAGE}:${ALIAS}")
|
cache-to: type=registry,ref=${{ env.REGISTRY }}/petegregoryy/railframe-web:buildcache,mode=max
|
||||||
fi
|
|
||||||
docker buildx build --builder buildx --platform linux/amd64 \
|
|
||||||
-f Dockerfile.web \
|
|
||||||
--push \
|
|
||||||
"${TAG_ARGS[@]}" .
|
|
||||||
|
|
||||||
release-dev:
|
release-dev:
|
||||||
runs-on:
|
runs-on:
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
- Add and edit journey legs with traction, timings, routes, notes, and delays.
|
- Add and edit journey legs with traction, timings, routes, notes, and delays.
|
||||||
- Group legs into trips and see mileage totals and traction stats.
|
- Group legs into trips and see mileage totals and traction stats.
|
||||||
|
|||||||
@@ -50,7 +50,8 @@ class _LeaderboardPanelState extends State<LeaderboardPanel> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (leaderboard.isNotEmpty)
|
if (leaderboard.isNotEmpty &&
|
||||||
|
MediaQuery.of(context).size.width > 600)
|
||||||
Container(
|
Container(
|
||||||
padding:
|
padding:
|
||||||
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
||||||
@@ -63,8 +64,11 @@ class _LeaderboardPanelState extends State<LeaderboardPanel> {
|
|||||||
style: textTheme.labelSmall,
|
style: textTheme.labelSmall,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 8),
|
],
|
||||||
SegmentedButton<_LeaderboardScope>(
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Center(
|
||||||
|
child: SegmentedButton<_LeaderboardScope>(
|
||||||
segments: const [
|
segments: const [
|
||||||
ButtonSegment(
|
ButtonSegment(
|
||||||
value: _LeaderboardScope.global,
|
value: _LeaderboardScope.global,
|
||||||
@@ -95,7 +99,6 @@ class _LeaderboardPanelState extends State<LeaderboardPanel> {
|
|||||||
padding: const EdgeInsets.symmetric(horizontal: 8),
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
if (leaderboard.isEmpty)
|
if (leaderboard.isEmpty)
|
||||||
|
|||||||
@@ -28,6 +28,8 @@ class _LegCardState extends State<LegCard> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final leg = widget.leg;
|
final leg = widget.leg;
|
||||||
final isShared = leg.legShareId != null && leg.legShareId!.isNotEmpty;
|
final isShared = leg.legShareId != null && leg.legShareId!.isNotEmpty;
|
||||||
|
final sharedFrom = leg.sharedFrom;
|
||||||
|
final sharedTo = leg.sharedTo;
|
||||||
final distanceUnits = context.watch<DistanceUnitService>();
|
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;
|
||||||
@@ -198,16 +200,9 @@ class _LegCardState extends State<LegCard> {
|
|||||||
],
|
],
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (isShared) ...[
|
if (isShared || sharedFrom != null || (sharedTo.isNotEmpty)) ...[
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
Tooltip(
|
_SharedIcons(sharedFrom: sharedFrom, sharedTo: sharedTo, isShared: isShared),
|
||||||
message: 'Shared entry',
|
|
||||||
child: Icon(
|
|
||||||
Icons.share,
|
|
||||||
size: 18,
|
|
||||||
color: Theme.of(context).colorScheme.primary,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
if (widget.showEditButton) ...[
|
if (widget.showEditButton) ...[
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
@@ -262,6 +257,34 @@ class _LegCardState extends State<LegCard> {
|
|||||||
..._buildTrainDetails(leg, textTheme),
|
..._buildTrainDetails(leg, textTheme),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
],
|
],
|
||||||
|
if (sharedFrom != null)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(bottom: 8.0),
|
||||||
|
child: Text(
|
||||||
|
'Shared from ${sharedFrom.sharedFromDisplay.isNotEmpty ? sharedFrom.sharedFromDisplay : 'another user'}.',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (sharedTo.isNotEmpty) ...[
|
||||||
|
Text(
|
||||||
|
'Shared to:',
|
||||||
|
style: textTheme.bodyMedium,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
Wrap(
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 4,
|
||||||
|
children: sharedTo
|
||||||
|
.map((s) => Chip(
|
||||||
|
label: Text(s.sharedToDisplay.isNotEmpty
|
||||||
|
? s.sharedToDisplay
|
||||||
|
: s.sharedToUserId),
|
||||||
|
visualDensity: VisualDensity.compact,
|
||||||
|
))
|
||||||
|
.toList(),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
],
|
||||||
if (routeSegments.isNotEmpty) ...[
|
if (routeSegments.isNotEmpty) ...[
|
||||||
Text('Route', style: textTheme.titleSmall),
|
Text('Route', style: textTheme.titleSmall),
|
||||||
const SizedBox(height: 6),
|
const SizedBox(height: 6),
|
||||||
@@ -461,3 +484,61 @@ class _LegCardState extends State<LegCard> {
|
|||||||
return route.map((e) => e.toString()).where((e) => e.trim().isNotEmpty).toList();
|
return route.map((e) => e.toString()).where((e) => e.trim().isNotEmpty).toList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _SharedIcons extends StatelessWidget {
|
||||||
|
const _SharedIcons({
|
||||||
|
required this.sharedFrom,
|
||||||
|
required this.sharedTo,
|
||||||
|
required this.isShared,
|
||||||
|
});
|
||||||
|
|
||||||
|
final LegShareMeta? sharedFrom;
|
||||||
|
final List<LegShareMeta> sharedTo;
|
||||||
|
final bool isShared;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final icons = <Widget>[];
|
||||||
|
if (isShared || sharedFrom != null) {
|
||||||
|
final fromName = sharedFrom?.sharedFromDisplay ?? '';
|
||||||
|
icons.add(
|
||||||
|
Tooltip(
|
||||||
|
message: fromName.isNotEmpty ? 'Shared from $fromName' : 'Shared entry',
|
||||||
|
child: Icon(
|
||||||
|
Icons.share,
|
||||||
|
size: 18,
|
||||||
|
color: Theme.of(context).colorScheme.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (sharedTo.isNotEmpty) {
|
||||||
|
final names = sharedTo
|
||||||
|
.map((s) => s.sharedToDisplay)
|
||||||
|
.where((name) => name.isNotEmpty)
|
||||||
|
.toList();
|
||||||
|
final tooltip = names.isEmpty
|
||||||
|
? 'Shared to others'
|
||||||
|
: 'Shared to: ${names.join(', ')}';
|
||||||
|
icons.add(
|
||||||
|
Tooltip(
|
||||||
|
message: tooltip,
|
||||||
|
child: Icon(
|
||||||
|
Icons.group,
|
||||||
|
size: 18,
|
||||||
|
color: Theme.of(context).colorScheme.tertiary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
for (int i = 0; i < icons.length; i++) ...[
|
||||||
|
if (i > 0) const SizedBox(width: 6),
|
||||||
|
icons[i],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -324,6 +324,14 @@ extension _NewEntryDraftLogic on _NewEntryPageState {
|
|||||||
"distance": _routeResult!.distance,
|
"distance": _routeResult!.distance,
|
||||||
},
|
},
|
||||||
"tractionItems": _serializeTractionItems(),
|
"tractionItems": _serializeTractionItems(),
|
||||||
|
"shareUserIds": _shareUserIds.toList(),
|
||||||
|
"shareUsers": _shareUsers
|
||||||
|
.map((u) => {
|
||||||
|
"user_id": u.userId,
|
||||||
|
"username": u.username,
|
||||||
|
"full_name": u.fullName,
|
||||||
|
})
|
||||||
|
.toList(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -707,7 +707,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
final enabled = value ?? false;
|
final enabled = value ?? false;
|
||||||
setState(() {
|
setState(() {
|
||||||
_matchDestinationToEntry = enabled;
|
_matchDestinationToEntry = enabled;
|
||||||
if (enabled) _hasDestinationTime = true;
|
if (enabled && _hasEndTime) _hasDestinationTime = true;
|
||||||
});
|
});
|
||||||
_scheduleMatchUpdate();
|
_scheduleMatchUpdate();
|
||||||
_saveDraft();
|
_saveDraft();
|
||||||
@@ -1127,7 +1127,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
if (_destinationController.text != endVal) {
|
if (_destinationController.text != endVal) {
|
||||||
_destinationController.text = endVal;
|
_destinationController.text = endVal;
|
||||||
}
|
}
|
||||||
if (_hasDestinationTime) {
|
if (_hasDestinationTime && _hasEndTime) {
|
||||||
final endTime = _legEndDateTime ?? _legDateTime;
|
final endTime = _legEndDateTime ?? _legDateTime;
|
||||||
_selectedDestinationDate = DateTime(
|
_selectedDestinationDate = DateTime(
|
||||||
endTime.year,
|
endTime.year,
|
||||||
@@ -1284,7 +1284,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
_buildSharedBanner(),
|
_buildSharedBanner(),
|
||||||
],
|
],
|
||||||
_buildTripSelector(context),
|
_buildTripSelector(context),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 8),
|
||||||
if (_activeLegShare == null) _buildShareSection(context),
|
if (_activeLegShare == null) _buildShareSection(context),
|
||||||
_dateTimeGroup(
|
_dateTimeGroup(
|
||||||
context,
|
context,
|
||||||
@@ -1366,6 +1366,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const Divider(height: 24),
|
||||||
_trainLocationBlock(
|
_trainLocationBlock(
|
||||||
label: 'Origin',
|
label: 'Origin',
|
||||||
controller: _originController,
|
controller: _originController,
|
||||||
@@ -1384,6 +1385,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
singleColumn: true,
|
singleColumn: true,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const Divider(height: 24),
|
||||||
_trainLocationBlock(
|
_trainLocationBlock(
|
||||||
label: 'Destination',
|
label: 'Destination',
|
||||||
controller: _destinationController,
|
controller: _destinationController,
|
||||||
@@ -1403,6 +1405,7 @@ class _NewEntryPageState extends State<NewEntryPage> {
|
|||||||
singleColumn: true,
|
singleColumn: true,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const Divider(height: 24),
|
||||||
TextFormField(
|
TextFormField(
|
||||||
controller: _networkController,
|
controller: _networkController,
|
||||||
textCapitalization: TextCapitalization.characters,
|
textCapitalization: TextCapitalization.characters,
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ 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:mileograph_flutter/services/distance_unit_service.dart';
|
||||||
|
import 'package:mileograph_flutter/services/authservice.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';
|
||||||
|
|
||||||
|
|||||||
@@ -569,6 +569,7 @@ class _TractionPageState extends State<TractionPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Widget _buildHeaderActions(BuildContext context, bool isMobile) {
|
Widget _buildHeaderActions(BuildContext context, bool isMobile) {
|
||||||
|
final isElevated = context.read<AuthService>().isElevated;
|
||||||
final refreshButton = IconButton(
|
final refreshButton = IconButton(
|
||||||
tooltip: 'Refresh',
|
tooltip: 'Refresh',
|
||||||
onPressed: _refreshTraction,
|
onPressed: _refreshTraction,
|
||||||
@@ -587,7 +588,9 @@ class _TractionPageState extends State<TractionPage> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
final newTractionButton = FilledButton.icon(
|
final newTractionButton = !isElevated
|
||||||
|
? null
|
||||||
|
: FilledButton.icon(
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
final createdClass = await context.push<String>(
|
final createdClass = await context.push<String>(
|
||||||
'/traction/new',
|
'/traction/new',
|
||||||
@@ -608,11 +611,11 @@ class _TractionPageState extends State<TractionPage> {
|
|||||||
final desktopActions = [
|
final desktopActions = [
|
||||||
refreshButton,
|
refreshButton,
|
||||||
if (classStatsButton != null) classStatsButton,
|
if (classStatsButton != null) classStatsButton,
|
||||||
newTractionButton,
|
if (newTractionButton != null) newTractionButton,
|
||||||
];
|
];
|
||||||
|
|
||||||
final mobileActions = [
|
final mobileActions = [
|
||||||
newTractionButton,
|
if (newTractionButton != null) newTractionButton,
|
||||||
if (classStatsButton != null) classStatsButton,
|
if (classStatsButton != null) classStatsButton,
|
||||||
refreshButton,
|
refreshButton,
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -350,6 +350,7 @@ class HomepageStats {
|
|||||||
final List<YearlyMileage> yearlyMileage;
|
final List<YearlyMileage> yearlyMileage;
|
||||||
final List<LocoSummary> topLocos;
|
final List<LocoSummary> topLocos;
|
||||||
final List<LeaderboardEntry> leaderboard;
|
final List<LeaderboardEntry> leaderboard;
|
||||||
|
final List<LeaderboardEntry> friendsLeaderboard;
|
||||||
final List<TripSummary> trips;
|
final List<TripSummary> trips;
|
||||||
final int legCount;
|
final int legCount;
|
||||||
final UserData? user;
|
final UserData? user;
|
||||||
@@ -359,6 +360,7 @@ class HomepageStats {
|
|||||||
required this.yearlyMileage,
|
required this.yearlyMileage,
|
||||||
required this.topLocos,
|
required this.topLocos,
|
||||||
required this.leaderboard,
|
required this.leaderboard,
|
||||||
|
required this.friendsLeaderboard,
|
||||||
required this.trips,
|
required this.trips,
|
||||||
required this.legCount,
|
required this.legCount,
|
||||||
this.user,
|
this.user,
|
||||||
@@ -370,6 +372,17 @@ class HomepageStats {
|
|||||||
final totalMileage = mileageData is Map && mileageData['mileage'] != null
|
final totalMileage = mileageData is Map && mileageData['mileage'] != null
|
||||||
? (mileageData['mileage'] as num).toDouble()
|
? (mileageData['mileage'] as num).toDouble()
|
||||||
: 0.0;
|
: 0.0;
|
||||||
|
List<LeaderboardEntry> parseLeaderboard(dynamic raw) {
|
||||||
|
if (raw is List) {
|
||||||
|
return raw
|
||||||
|
.whereType<Map>()
|
||||||
|
.map((e) => LeaderboardEntry.fromJson(
|
||||||
|
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||||
|
))
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
return const [];
|
||||||
|
}
|
||||||
return HomepageStats(
|
return HomepageStats(
|
||||||
totalMileage: totalMileage,
|
totalMileage: totalMileage,
|
||||||
yearlyMileage: (json['yearly_mileage'] as List? ?? [])
|
yearlyMileage: (json['yearly_mileage'] as List? ?? [])
|
||||||
@@ -378,9 +391,9 @@ class HomepageStats {
|
|||||||
topLocos: (json['top_locos'] as List? ?? [])
|
topLocos: (json['top_locos'] as List? ?? [])
|
||||||
.map((e) => LocoSummary.fromJson(e))
|
.map((e) => LocoSummary.fromJson(e))
|
||||||
.toList(),
|
.toList(),
|
||||||
leaderboard: (json['leaderboard_data'] as List? ?? [])
|
leaderboard: parseLeaderboard(json['leaderboard_data'] ?? json['leaderboard']),
|
||||||
.map((e) => LeaderboardEntry.fromJson(e))
|
friendsLeaderboard:
|
||||||
.toList(),
|
parseLeaderboard(json['friends_leaderboard'] ?? json['friendsLeaderboard']),
|
||||||
trips: (json['trip_data'] as List? ?? [])
|
trips: (json['trip_data'] as List? ?? [])
|
||||||
.map((e) => TripSummary.fromJson(e))
|
.map((e) => TripSummary.fromJson(e))
|
||||||
.toList(),
|
.toList(),
|
||||||
@@ -1061,6 +1074,8 @@ class Leg {
|
|||||||
final String origin, destination;
|
final String origin, destination;
|
||||||
final List<String> route;
|
final List<String> route;
|
||||||
final String? legShareId;
|
final String? legShareId;
|
||||||
|
final LegShareMeta? sharedFrom;
|
||||||
|
final List<LegShareMeta> sharedTo;
|
||||||
final DateTime beginTime;
|
final DateTime beginTime;
|
||||||
final DateTime? endTime;
|
final DateTime? endTime;
|
||||||
final DateTime? originTime;
|
final DateTime? originTime;
|
||||||
@@ -1092,6 +1107,8 @@ class Leg {
|
|||||||
this.origin = '',
|
this.origin = '',
|
||||||
this.destination = '',
|
this.destination = '',
|
||||||
this.legShareId,
|
this.legShareId,
|
||||||
|
this.sharedFrom,
|
||||||
|
this.sharedTo = const [],
|
||||||
});
|
});
|
||||||
|
|
||||||
factory Leg.fromJson(Map<String, dynamic> json) {
|
factory Leg.fromJson(Map<String, dynamic> json) {
|
||||||
@@ -1099,6 +1116,25 @@ class Leg {
|
|||||||
final parsedEndTime = (endTimeRaw == null || '$endTimeRaw'.isEmpty)
|
final parsedEndTime = (endTimeRaw == null || '$endTimeRaw'.isEmpty)
|
||||||
? null
|
? null
|
||||||
: _asDateTime(endTimeRaw);
|
: _asDateTime(endTimeRaw);
|
||||||
|
LegShareMeta? sharedFrom;
|
||||||
|
final sharedFromJson = json['shared_from'];
|
||||||
|
if (sharedFromJson is Map) {
|
||||||
|
sharedFrom = LegShareMeta.fromJson(
|
||||||
|
sharedFromJson.map((k, v) => MapEntry(k.toString(), v)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
List<LegShareMeta> sharedTo = const [];
|
||||||
|
final sharedToJson = json['shared_to'];
|
||||||
|
if (sharedToJson is List) {
|
||||||
|
sharedTo = sharedToJson
|
||||||
|
.whereType<Map>()
|
||||||
|
.map(
|
||||||
|
(e) => LegShareMeta.fromJson(
|
||||||
|
e.map((k, v) => MapEntry(k.toString(), v)),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
return Leg(
|
return Leg(
|
||||||
id: _asInt(json['leg_id']),
|
id: _asInt(json['leg_id']),
|
||||||
tripId: _asInt(json['leg_trip']),
|
tripId: _asInt(json['leg_trip']),
|
||||||
@@ -1133,10 +1169,73 @@ class Leg {
|
|||||||
origin: _asString(json['leg_origin']),
|
origin: _asString(json['leg_origin']),
|
||||||
destination: _asString(json['leg_destination']),
|
destination: _asString(json['leg_destination']),
|
||||||
legShareId: _asString(json['leg_share_id']),
|
legShareId: _asString(json['leg_share_id']),
|
||||||
|
sharedFrom: sharedFrom,
|
||||||
|
sharedTo: sharedTo,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class LegShareMeta {
|
||||||
|
final int? legShareId;
|
||||||
|
final int? legId;
|
||||||
|
final String sharedToUserId;
|
||||||
|
final String sharedByUserId;
|
||||||
|
final String status;
|
||||||
|
final DateTime? respondedAt;
|
||||||
|
final bool? acceptedEdits;
|
||||||
|
final DateTime? sharedAt;
|
||||||
|
final String sharedToUsername;
|
||||||
|
final String sharedToFullName;
|
||||||
|
final String sharedByUsername;
|
||||||
|
final String sharedByFullName;
|
||||||
|
|
||||||
|
LegShareMeta({
|
||||||
|
this.legShareId,
|
||||||
|
this.legId,
|
||||||
|
required this.sharedToUserId,
|
||||||
|
required this.sharedByUserId,
|
||||||
|
required this.status,
|
||||||
|
this.respondedAt,
|
||||||
|
this.acceptedEdits,
|
||||||
|
this.sharedAt,
|
||||||
|
this.sharedToUsername = '',
|
||||||
|
this.sharedToFullName = '',
|
||||||
|
this.sharedByUsername = '',
|
||||||
|
this.sharedByFullName = '',
|
||||||
|
});
|
||||||
|
|
||||||
|
factory LegShareMeta.fromJson(Map<String, dynamic> json) {
|
||||||
|
DateTime? parseDate(dynamic raw) {
|
||||||
|
if (raw == null) return null;
|
||||||
|
if (raw is DateTime) return raw;
|
||||||
|
return DateTime.tryParse(raw.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
return LegShareMeta(
|
||||||
|
legShareId: _asInt(json['leg_share_id']),
|
||||||
|
legId: _asInt(json['leg_id']),
|
||||||
|
sharedToUserId: _asString(json['shared_to_user_id']),
|
||||||
|
sharedByUserId: _asString(json['shared_by_user_id']),
|
||||||
|
status: _asString(json['status'], 'pending'),
|
||||||
|
respondedAt: parseDate(json['responded_at']),
|
||||||
|
acceptedEdits: json['accepted_edits'] == null
|
||||||
|
? null
|
||||||
|
: _asBool(json['accepted_edits'], false),
|
||||||
|
sharedAt: parseDate(json['shared_at']),
|
||||||
|
sharedToUsername: _asString(json['shared_to_username']),
|
||||||
|
sharedToFullName: _asString(json['shared_to_full_name']),
|
||||||
|
sharedByUsername: _asString(json['shared_by_username']),
|
||||||
|
sharedByFullName: _asString(json['shared_by_full_name']),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String get sharedFromDisplay =>
|
||||||
|
sharedByFullName.isNotEmpty ? sharedByFullName : sharedByUsername;
|
||||||
|
|
||||||
|
String get sharedToDisplay =>
|
||||||
|
sharedToFullName.isNotEmpty ? sharedToFullName : sharedToUsername;
|
||||||
|
}
|
||||||
|
|
||||||
class LegShareData {
|
class LegShareData {
|
||||||
final String id;
|
final String id;
|
||||||
final Leg entry;
|
final Leg entry;
|
||||||
|
|||||||
@@ -169,10 +169,12 @@ class DataService extends ChangeNotifier {
|
|||||||
_homepageStats = HomepageStats.fromJson(json);
|
_homepageStats = HomepageStats.fromJson(json);
|
||||||
_trips = [...(_homepageStats?.trips ?? const [])]
|
_trips = [...(_homepageStats?.trips ?? const [])]
|
||||||
..sort(TripSummary.compareByDateDesc);
|
..sort(TripSummary.compareByDateDesc);
|
||||||
|
_friendsLeaderboard = _homepageStats?.friendsLeaderboard ?? [];
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('Failed to fetch homepage stats: $e');
|
debugPrint('Failed to fetch homepage stats: $e');
|
||||||
_homepageStats = null;
|
_homepageStats = null;
|
||||||
_trips = [];
|
_trips = [];
|
||||||
|
_friendsLeaderboard = [];
|
||||||
} finally {
|
} finally {
|
||||||
_isHomepageLoading = false;
|
_isHomepageLoading = false;
|
||||||
_notifyAsync();
|
_notifyAsync();
|
||||||
|
|||||||
@@ -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.6.1+4
|
version: 0.6.3+6
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
|
|||||||
Reference in New Issue
Block a user