2026-03-18 09:02:21 -05:00
|
|
|
<script setup lang="ts">
|
2026-03-21 12:23:20 -05:00
|
|
|
import { ref, onMounted, onUnmounted, computed, watch, nextTick } from 'vue';
|
|
|
|
|
import { useRoute } from 'vue-router';
|
2026-03-18 09:02:21 -05:00
|
|
|
import L from 'leaflet';
|
|
|
|
|
import 'leaflet/dist/leaflet.css';
|
2026-03-21 12:23:20 -05:00
|
|
|
import type { Game, Route } from '../types';
|
|
|
|
|
import { gameService, routeService } from '../services/api';
|
2026-03-24 18:48:29 -05:00
|
|
|
import { alert, confirm } from '../composables/useModal';
|
|
|
|
|
import { useAuthStore } from '../stores/auth';
|
|
|
|
|
import { formatDistance } from '../utils/units';
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
const route = useRoute();
|
2026-03-24 18:48:29 -05:00
|
|
|
const authStore = useAuthStore();
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
const game = ref<Game | null>(null);
|
2026-03-21 12:23:20 -05:00
|
|
|
const routes = ref<Route[]>([]);
|
|
|
|
|
const selectedRouteId = ref<string | null>(null);
|
2026-03-18 09:02:21 -05:00
|
|
|
const loading = ref(true);
|
|
|
|
|
const saving = ref(false);
|
|
|
|
|
|
|
|
|
|
const gameId = computed(() => route.params.id as string);
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
const selectedRoute = computed(() =>
|
|
|
|
|
routes.value.find(r => r.id === selectedRouteId.value) || null
|
|
|
|
|
);
|
|
|
|
|
|
2026-03-24 18:48:29 -05:00
|
|
|
const unitPreference = computed(() => authStore.user?.unitPreference || 'METRIC');
|
|
|
|
|
|
2026-03-18 09:02:21 -05:00
|
|
|
const mapContainer = ref<HTMLDivElement | null>(null);
|
|
|
|
|
let map: L.Map | null = null;
|
2026-03-21 12:23:20 -05:00
|
|
|
let routeMarkers: { [routeId: string]: L.Marker[] } = {};
|
|
|
|
|
let mapInitialized = false;
|
|
|
|
|
|
|
|
|
|
const newRoute = ref({
|
|
|
|
|
name: '',
|
|
|
|
|
description: '',
|
|
|
|
|
color: '#3498db'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const editRoute = ref({
|
|
|
|
|
name: '',
|
|
|
|
|
description: '',
|
|
|
|
|
color: ''
|
|
|
|
|
});
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
const newLeg = ref({
|
|
|
|
|
description: '',
|
|
|
|
|
conditionType: 'photo',
|
|
|
|
|
conditionDetails: '',
|
|
|
|
|
locationLat: null as number | null,
|
|
|
|
|
locationLng: null as number | null,
|
|
|
|
|
timeLimit: 30
|
|
|
|
|
});
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
function startEditRoute() {
|
|
|
|
|
if (selectedRoute.value) {
|
|
|
|
|
editRoute.value = {
|
|
|
|
|
name: selectedRoute.value.name,
|
|
|
|
|
description: selectedRoute.value.description || '',
|
|
|
|
|
color: selectedRoute.value.color
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function saveRoute() {
|
|
|
|
|
if (!selectedRouteId.value) return;
|
|
|
|
|
|
|
|
|
|
saving.value = true;
|
|
|
|
|
try {
|
|
|
|
|
const response = await routeService.update(selectedRouteId.value, {
|
|
|
|
|
name: editRoute.value.name,
|
|
|
|
|
description: editRoute.value.description || undefined,
|
|
|
|
|
color: editRoute.value.color
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const idx = routes.value.findIndex(r => r.id === selectedRouteId.value);
|
|
|
|
|
if (idx >= 0) {
|
|
|
|
|
routes.value[idx].name = response.data.name;
|
|
|
|
|
routes.value[idx].description = response.data.description;
|
|
|
|
|
routes.value[idx].color = response.data.color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateMapMarkers();
|
|
|
|
|
} catch (err) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Failed to update route');
|
2026-03-21 12:23:20 -05:00
|
|
|
} finally {
|
|
|
|
|
saving.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-18 09:02:21 -05:00
|
|
|
async function loadGame() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
try {
|
|
|
|
|
const response = await gameService.get(gameId.value);
|
|
|
|
|
game.value = response.data;
|
2026-03-21 12:23:20 -05:00
|
|
|
routes.value = response.data.routes || [];
|
|
|
|
|
|
|
|
|
|
if (routes.value.length > 0 && !selectedRouteId.value) {
|
|
|
|
|
selectedRouteId.value = routes.value[0].id;
|
|
|
|
|
}
|
2026-03-18 09:02:21 -05:00
|
|
|
} catch (err) {
|
|
|
|
|
console.error('Failed to load game:', err);
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function initMap() {
|
2026-03-21 12:23:20 -05:00
|
|
|
if (!mapContainer.value || map) return;
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
const center = game.value?.locationLat && game.value?.locationLng
|
|
|
|
|
? [game.value.locationLat, game.value.locationLng] as [number, number]
|
|
|
|
|
: [51.505, -0.09] as [number, number];
|
|
|
|
|
|
|
|
|
|
map = L.map(mapContainer.value).setView(center, 13);
|
|
|
|
|
|
|
|
|
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
|
|
|
attribution: '© OpenStreetMap'
|
|
|
|
|
}).addTo(map);
|
|
|
|
|
|
|
|
|
|
if (game.value?.locationLat && game.value?.locationLng) {
|
|
|
|
|
L.circle([game.value.locationLat, game.value.locationLng], {
|
|
|
|
|
radius: game.value.searchRadius || 500,
|
|
|
|
|
color: '#667eea',
|
|
|
|
|
fillColor: '#667eea',
|
|
|
|
|
fillOpacity: 0.1
|
|
|
|
|
}).addTo(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
map.on('click', (e: L.LeafletMouseEvent) => {
|
|
|
|
|
newLeg.value.locationLat = e.latlng.lat;
|
|
|
|
|
newLeg.value.locationLng = e.latlng.lng;
|
|
|
|
|
});
|
2026-03-21 12:23:20 -05:00
|
|
|
|
|
|
|
|
updateMapMarkers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateMapMarkers() {
|
|
|
|
|
if (!map) return;
|
|
|
|
|
|
|
|
|
|
Object.values(routeMarkers).forEach(markers => {
|
|
|
|
|
markers.forEach(m => m.remove());
|
|
|
|
|
});
|
|
|
|
|
routeMarkers = {};
|
|
|
|
|
|
|
|
|
|
routes.value.forEach((route) => {
|
|
|
|
|
const color = route.color || '#3498db';
|
|
|
|
|
routeMarkers[route.id] = [];
|
|
|
|
|
|
|
|
|
|
route.routeLegs?.forEach((leg, legIndex) => {
|
|
|
|
|
if (leg.locationLat && leg.locationLng) {
|
|
|
|
|
const marker = L.marker([leg.locationLat, leg.locationLng], {
|
|
|
|
|
icon: L.divIcon({
|
|
|
|
|
className: `route-marker-${route.id}`,
|
|
|
|
|
html: `<div style="background: ${color}; width: 20px; height: 20px; border-radius: 50%; border: 2px solid white; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 12px;">${legIndex + 1}</div>`,
|
|
|
|
|
iconSize: [20, 20]
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.addTo(map!)
|
|
|
|
|
.bindPopup(`${route.name} - Leg ${legIndex + 1}`);
|
|
|
|
|
routeMarkers[route.id].push(marker);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setTimeout(() => map?.invalidateSize(), 100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function createRoute() {
|
|
|
|
|
if (!newRoute.value.name.trim()) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Please enter a route name');
|
2026-03-21 12:23:20 -05:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
saving.value = true;
|
|
|
|
|
try {
|
|
|
|
|
const response = await routeService.create({
|
|
|
|
|
gameId: gameId.value,
|
|
|
|
|
name: newRoute.value.name,
|
|
|
|
|
description: newRoute.value.description || undefined,
|
|
|
|
|
color: newRoute.value.color
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
routes.value.push(response.data);
|
|
|
|
|
selectedRouteId.value = response.data.id;
|
|
|
|
|
|
|
|
|
|
newRoute.value = { name: '', description: '', color: '#3498db' };
|
|
|
|
|
updateMapMarkers();
|
|
|
|
|
} catch (err) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Failed to create route');
|
2026-03-21 12:23:20 -05:00
|
|
|
} finally {
|
|
|
|
|
saving.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function copyRoute(routeId: string) {
|
|
|
|
|
try {
|
|
|
|
|
const response = await routeService.copy(routeId);
|
|
|
|
|
routes.value.push(response.data);
|
|
|
|
|
selectedRouteId.value = response.data.id;
|
|
|
|
|
updateMapMarkers();
|
|
|
|
|
} catch (err) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Failed to copy route');
|
2026-03-21 12:23:20 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function deleteRoute(routeId: string) {
|
2026-03-24 18:48:29 -05:00
|
|
|
if (!await confirm('Are you sure you want to delete this route and all its legs?')) return;
|
2026-03-21 12:23:20 -05:00
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
await routeService.delete(routeId);
|
|
|
|
|
routes.value = routes.value.filter(r => r.id !== routeId);
|
|
|
|
|
|
|
|
|
|
if (selectedRouteId.value === routeId) {
|
|
|
|
|
selectedRouteId.value = routes.value[0]?.id || null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateMapMarkers();
|
|
|
|
|
} catch (err) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Failed to delete route');
|
2026-03-21 12:23:20 -05:00
|
|
|
}
|
2026-03-18 09:02:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function addLeg() {
|
2026-03-21 12:23:20 -05:00
|
|
|
if (!selectedRouteId.value || !newLeg.value.description) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Please enter a description');
|
2026-03-18 09:02:21 -05:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
saving.value = true;
|
|
|
|
|
try {
|
2026-03-21 12:23:20 -05:00
|
|
|
const response = await routeService.addLeg(selectedRouteId.value, {
|
2026-03-18 09:02:21 -05:00
|
|
|
description: newLeg.value.description,
|
|
|
|
|
conditionType: newLeg.value.conditionType,
|
|
|
|
|
conditionDetails: newLeg.value.conditionDetails || undefined,
|
|
|
|
|
locationLat: newLeg.value.locationLat || undefined,
|
|
|
|
|
locationLng: newLeg.value.locationLng || undefined,
|
|
|
|
|
timeLimit: newLeg.value.timeLimit
|
|
|
|
|
});
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
const route = routes.value.find(r => r.id === selectedRouteId.value);
|
|
|
|
|
if (route) {
|
|
|
|
|
if (!route.routeLegs) route.routeLegs = [];
|
|
|
|
|
route.routeLegs.push(response.data);
|
|
|
|
|
}
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
newLeg.value = {
|
|
|
|
|
description: '',
|
|
|
|
|
conditionType: 'photo',
|
|
|
|
|
conditionDetails: '',
|
|
|
|
|
locationLat: null,
|
|
|
|
|
locationLng: null,
|
|
|
|
|
timeLimit: 30
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
updateMapMarkers();
|
2026-03-18 09:02:21 -05:00
|
|
|
} catch (err) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Failed to add leg');
|
2026-03-18 09:02:21 -05:00
|
|
|
} finally {
|
|
|
|
|
saving.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function deleteLeg(legId: string) {
|
2026-03-24 18:48:29 -05:00
|
|
|
if (!await confirm('Are you sure you want to delete this leg?')) return;
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
try {
|
2026-03-21 12:23:20 -05:00
|
|
|
await routeService.deleteLeg(selectedRouteId.value!, legId);
|
|
|
|
|
|
|
|
|
|
const route = routes.value.find(r => r.id === selectedRouteId.value);
|
|
|
|
|
if (route && route.routeLegs) {
|
|
|
|
|
route.routeLegs = route.routeLegs.filter(l => l.id !== legId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateMapMarkers();
|
2026-03-18 09:02:21 -05:00
|
|
|
} catch (err) {
|
2026-03-24 18:48:29 -05:00
|
|
|
await alert('Failed to delete leg');
|
2026-03-18 09:02:21 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function calculateDistance(lat1: number, lon1: number, lat2: number, lon2: number): number {
|
|
|
|
|
const R = 6371;
|
|
|
|
|
const dLat = (lat2 - lat1) * Math.PI / 180;
|
|
|
|
|
const dLon = (lon2 - lon1) * Math.PI / 180;
|
|
|
|
|
const a = Math.sin(dLat/2) * Math.sin(dLat/2) +
|
|
|
|
|
Math.cos(lat1 * Math.PI / 180) * Math.cos(lat2 * Math.PI / 180) *
|
|
|
|
|
Math.sin(dLon/2) * Math.sin(dLon/2);
|
|
|
|
|
const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
|
|
|
|
|
return R * c;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
function getRouteDistance(route: Route): number {
|
|
|
|
|
if (!game.value?.locationLat || !game.value?.locationLng || !route.routeLegs?.length) return 0;
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
let total = 0;
|
|
|
|
|
let prevLat = game.value.locationLat;
|
|
|
|
|
let prevLng = game.value.locationLng;
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
for (const leg of route.routeLegs) {
|
2026-03-18 09:02:21 -05:00
|
|
|
if (leg.locationLat && leg.locationLng) {
|
|
|
|
|
total += calculateDistance(prevLat, prevLng, leg.locationLat, leg.locationLng);
|
|
|
|
|
prevLat = leg.locationLat;
|
|
|
|
|
prevLng = leg.locationLng;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return total;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
function getTotalLegs(): number {
|
|
|
|
|
return routes.value.reduce((sum, r) => sum + (r.routeLegs?.length || 0), 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
watch(selectedRouteId, async (newId) => {
|
|
|
|
|
if (newId) {
|
|
|
|
|
startEditRoute();
|
|
|
|
|
if (!mapInitialized) {
|
|
|
|
|
await nextTick();
|
|
|
|
|
if (mapContainer.value) {
|
|
|
|
|
initMap();
|
|
|
|
|
mapInitialized = true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
updateMapMarkers();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2026-03-18 09:02:21 -05:00
|
|
|
onMounted(() => {
|
|
|
|
|
loadGame().then(() => {
|
2026-03-21 12:23:20 -05:00
|
|
|
if (selectedRouteId.value) {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
if (mapContainer.value && !mapInitialized) {
|
|
|
|
|
initMap();
|
|
|
|
|
mapInitialized = true;
|
|
|
|
|
}
|
|
|
|
|
}, 100);
|
|
|
|
|
}
|
2026-03-18 09:02:21 -05:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
if (map) map.remove();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-03-19 06:10:30 -05:00
|
|
|
<main class="container">
|
|
|
|
|
<article v-if="loading">Loading...</article>
|
2026-03-18 09:02:21 -05:00
|
|
|
|
|
|
|
|
<template v-else-if="game">
|
2026-03-19 06:10:30 -05:00
|
|
|
<nav aria-label="breadcrumb">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><RouterLink :to="`/games/${game.id}`">← Back to Game</RouterLink></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
2026-03-18 09:02:21 -05:00
|
|
|
|
2026-03-19 06:10:30 -05:00
|
|
|
<h1>Edit: {{ game.name }}</h1>
|
|
|
|
|
|
|
|
|
|
<div class="grid">
|
|
|
|
|
<article>
|
2026-03-21 12:23:20 -05:00
|
|
|
<h2>Routes ({{ routes.length }})</h2>
|
|
|
|
|
<p><small>Total legs: {{ getTotalLegs() }}</small></p>
|
|
|
|
|
|
|
|
|
|
<div v-for="routeItem in routes" :key="routeItem.id"
|
|
|
|
|
class="route-card"
|
|
|
|
|
:class="{ selected: selectedRouteId === routeItem.id }"
|
|
|
|
|
@click="selectedRouteId = routeItem.id">
|
|
|
|
|
<div class="route-header">
|
|
|
|
|
<svg width="16" height="18" viewBox="0 0 16 18" :style="{ flexShrink: 0 }">
|
|
|
|
|
<path d="M0 0h16v10c0 4-4 6-8 8-4-2-8-4-8-8V0z" :fill="routeItem.color" stroke="white" stroke-width="1"/>
|
|
|
|
|
</svg>
|
|
|
|
|
<h3>{{ routeItem.name }}</h3>
|
|
|
|
|
<div class="route-actions">
|
|
|
|
|
<button @click.stop="copyRoute(routeItem.id)" class="secondary outline">Copy</button>
|
|
|
|
|
<button @click.stop="deleteRoute(routeItem.id)" class="contrast outline">Delete</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<p v-if="routeItem.description">{{ routeItem.description }}</p>
|
|
|
|
|
<footer>
|
|
|
|
|
<small>
|
|
|
|
|
{{ routeItem.routeLegs?.length || 0 }} legs
|
2026-03-24 18:48:29 -05:00
|
|
|
· {{ formatDistance(getRouteDistance(routeItem), unitPreference) }}
|
2026-03-21 12:23:20 -05:00
|
|
|
</small>
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<details class="add-route" open>
|
|
|
|
|
<summary>Add New Route</summary>
|
|
|
|
|
<form @submit.prevent="createRoute">
|
|
|
|
|
<label>
|
|
|
|
|
Route Name
|
|
|
|
|
<input v-model="newRoute.name" type="text" placeholder="e.g., Route A" required />
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
Description (optional)
|
|
|
|
|
<input v-model="newRoute.description" type="text" placeholder="e.g., Via downtown" />
|
|
|
|
|
</label>
|
|
|
|
|
<label class="color-label">
|
|
|
|
|
Color
|
|
|
|
|
<div style="display: flex; align-items: center; gap: 0.5rem;">
|
|
|
|
|
<input v-model="newRoute.color" type="color" style="width: 40px; height: 40px; padding: 2px;" />
|
|
|
|
|
<span :style="{ color: newRoute.color, fontWeight: 'bold' }">{{ newRoute.color }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</label>
|
|
|
|
|
<button type="submit" :disabled="saving">
|
|
|
|
|
{{ saving ? 'Creating...' : 'Create Route' }}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
</details>
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
<article v-if="selectedRoute">
|
|
|
|
|
<div class="route-header">
|
|
|
|
|
<svg width="20" height="22" viewBox="0 0 16 18" :style="{ flexShrink: 0 }">
|
|
|
|
|
<path d="M0 0h16v10c0 4-4 6-8 8-4-2-8-4-8-8V0z" :fill="selectedRoute.color" stroke="white" stroke-width="1"/>
|
|
|
|
|
</svg>
|
|
|
|
|
<h2>{{ selectedRoute.name }}</h2>
|
|
|
|
|
<select v-model="selectedRouteId" style="max-width: 200px;">
|
|
|
|
|
<option v-for="r in routes" :key="r.id" :value="r.id">
|
|
|
|
|
{{ r.name }}
|
|
|
|
|
</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
2026-03-18 09:02:21 -05:00
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
<details>
|
|
|
|
|
<summary>Edit Route</summary>
|
|
|
|
|
<form @submit.prevent="saveRoute">
|
|
|
|
|
<label>
|
|
|
|
|
Route Name
|
|
|
|
|
<input v-model="editRoute.name" type="text" required />
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
Description
|
|
|
|
|
<input v-model="editRoute.description" type="text" />
|
|
|
|
|
</label>
|
|
|
|
|
<label class="color-label">
|
|
|
|
|
Color
|
|
|
|
|
<div style="display: flex; align-items: center; gap: 0.5rem;">
|
|
|
|
|
<input v-model="editRoute.color" type="color" style="width: 40px; height: 40px; padding: 2px;" />
|
|
|
|
|
<span :style="{ color: editRoute.color, fontWeight: 'bold' }">{{ editRoute.color }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</label>
|
|
|
|
|
<button type="submit" :disabled="saving">
|
|
|
|
|
{{ saving ? 'Saving...' : 'Save Changes' }}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
|
|
<div v-if="selectedRoute.routeLegs?.length" v-for="(leg, index) in selectedRoute.routeLegs" :key="leg.id" class="leg-card">
|
2026-03-19 13:59:30 -05:00
|
|
|
<div class="leg-header">
|
|
|
|
|
<h3>Leg {{ index + 1 }}</h3>
|
2026-03-21 12:23:20 -05:00
|
|
|
<button @click="deleteLeg(leg.id)" class="secondary outline">Delete</button>
|
2026-03-19 13:59:30 -05:00
|
|
|
</div>
|
2026-03-19 06:10:30 -05:00
|
|
|
<p>{{ leg.description }}</p>
|
|
|
|
|
<footer>
|
|
|
|
|
<small>
|
2026-03-21 12:23:20 -05:00
|
|
|
{{ leg.conditionType }}
|
2026-03-19 06:10:30 -05:00
|
|
|
<span v-if="leg.timeLimit"> · {{ leg.timeLimit }} min</span>
|
|
|
|
|
<span v-if="leg.locationLat && leg.locationLng">
|
|
|
|
|
· {{ leg.locationLat.toFixed(4) }}, {{ leg.locationLng.toFixed(4) }}
|
|
|
|
|
</span>
|
|
|
|
|
</small>
|
|
|
|
|
</footer>
|
2026-03-21 12:23:20 -05:00
|
|
|
</div>
|
|
|
|
|
<p v-else>No legs in this route yet.</p>
|
2026-03-19 06:10:30 -05:00
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
<h3>Add Leg</h3>
|
2026-03-18 09:02:21 -05:00
|
|
|
<div ref="mapContainer" class="map-container"></div>
|
2026-03-19 06:10:30 -05:00
|
|
|
<p><small>Click on map to set location</small></p>
|
2026-03-18 09:02:21 -05:00
|
|
|
|
2026-03-19 06:10:30 -05:00
|
|
|
<form @submit.prevent="addLeg">
|
|
|
|
|
<label>Description / Clue</label>
|
|
|
|
|
<textarea v-model="newLeg.description" rows="2" required></textarea>
|
2026-03-18 09:02:21 -05:00
|
|
|
|
2026-03-19 06:10:30 -05:00
|
|
|
<div class="grid">
|
|
|
|
|
<label>
|
|
|
|
|
Condition Type
|
2026-03-18 09:02:21 -05:00
|
|
|
<select v-model="newLeg.conditionType">
|
|
|
|
|
<option value="photo">Photo Proof</option>
|
|
|
|
|
<option value="purchase">Purchase</option>
|
|
|
|
|
<option value="text">Text Answer</option>
|
|
|
|
|
</select>
|
2026-03-19 06:10:30 -05:00
|
|
|
</label>
|
2026-03-18 09:02:21 -05:00
|
|
|
|
2026-03-19 06:10:30 -05:00
|
|
|
<label>
|
|
|
|
|
Time Limit (minutes)
|
2026-03-18 09:02:21 -05:00
|
|
|
<input v-model.number="newLeg.timeLimit" type="number" min="1" />
|
2026-03-19 06:10:30 -05:00
|
|
|
</label>
|
2026-03-18 09:02:21 -05:00
|
|
|
</div>
|
|
|
|
|
|
2026-03-19 06:10:30 -05:00
|
|
|
<div class="grid">
|
|
|
|
|
<label>
|
|
|
|
|
Latitude
|
2026-03-18 09:02:21 -05:00
|
|
|
<input v-model.number="newLeg.locationLat" type="number" step="any" readonly />
|
2026-03-19 06:10:30 -05:00
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
Longitude
|
2026-03-18 09:02:21 -05:00
|
|
|
<input v-model.number="newLeg.locationLng" type="number" step="any" readonly />
|
2026-03-19 06:10:30 -05:00
|
|
|
</label>
|
2026-03-18 09:02:21 -05:00
|
|
|
</div>
|
|
|
|
|
|
2026-03-19 06:10:30 -05:00
|
|
|
<button type="submit" :disabled="saving">
|
2026-03-18 09:02:21 -05:00
|
|
|
{{ saving ? 'Adding...' : 'Add Leg' }}
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
2026-03-19 06:10:30 -05:00
|
|
|
</article>
|
2026-03-21 12:23:20 -05:00
|
|
|
|
|
|
|
|
<article v-else>
|
|
|
|
|
<p>Select a route or create a new one to start adding legs.</p>
|
|
|
|
|
</article>
|
2026-03-18 09:02:21 -05:00
|
|
|
</div>
|
|
|
|
|
</template>
|
2026-03-19 06:10:30 -05:00
|
|
|
</main>
|
2026-03-18 09:02:21 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.map-container {
|
|
|
|
|
height: 250px;
|
2026-03-19 06:10:30 -05:00
|
|
|
border-radius: var(--pico-border-radius);
|
2026-03-18 09:02:21 -05:00
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
2026-03-19 13:59:30 -05:00
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
.route-card, .leg-card {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.route-card.selected {
|
|
|
|
|
border-color: var(--pico-primary-focus);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.route-header, .leg-header {
|
2026-03-19 13:59:30 -05:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2026-03-21 12:23:20 -05:00
|
|
|
gap: 1rem;
|
2026-03-19 13:59:30 -05:00
|
|
|
}
|
|
|
|
|
|
2026-03-21 12:23:20 -05:00
|
|
|
.route-header h3, .leg-header h3 {
|
2026-03-19 13:59:30 -05:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
2026-03-21 12:23:20 -05:00
|
|
|
|
|
|
|
|
.route-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-route {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-route summary {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
background: var(--pico-muted-border-color);
|
|
|
|
|
border-radius: var(--pico-border-radius);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-route form {
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="color"] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
border-radius: var(--pico-border-radius);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2026-03-18 09:02:21 -05:00
|
|
|
</style>
|