mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 05:11:46 +00:00
cb1e217bbe
Self-hosted travel planner with Express.js, SQLite, React & Tailwind CSS.
95 lines
2.7 KiB
React
95 lines
2.7 KiB
React
import React, { useEffect, useState } from 'react'
|
|
import { useParams, useNavigate, Link } from 'react-router-dom'
|
|
import { useTripStore } from '../store/tripStore'
|
|
import { tripsApi, placesApi } from '../api/client'
|
|
import Navbar from '../components/Layout/Navbar'
|
|
import FileManager from '../components/Files/FileManager'
|
|
import { ArrowLeft } from 'lucide-react'
|
|
|
|
export default function FilesPage() {
|
|
const { id: tripId } = useParams()
|
|
const navigate = useNavigate()
|
|
const tripStore = useTripStore()
|
|
|
|
const [trip, setTrip] = useState(null)
|
|
const [places, setPlaces] = useState([])
|
|
const [files, setFiles] = useState([])
|
|
const [isLoading, setIsLoading] = useState(true)
|
|
|
|
useEffect(() => {
|
|
loadData()
|
|
}, [tripId])
|
|
|
|
const loadData = async () => {
|
|
setIsLoading(true)
|
|
try {
|
|
const [tripData, placesData] = await Promise.all([
|
|
tripsApi.get(tripId),
|
|
placesApi.list(tripId),
|
|
])
|
|
setTrip(tripData.trip)
|
|
setPlaces(placesData.places)
|
|
await tripStore.loadFiles(tripId)
|
|
} catch (err) {
|
|
navigate('/dashboard')
|
|
} finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
setFiles(tripStore.files)
|
|
}, [tripStore.files])
|
|
|
|
const handleUpload = async (formData) => {
|
|
await tripStore.addFile(tripId, formData)
|
|
}
|
|
|
|
const handleDelete = async (fileId) => {
|
|
await tripStore.deleteFile(tripId, fileId)
|
|
}
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-slate-50">
|
|
<div className="w-10 h-10 border-4 border-slate-200 border-t-slate-700 rounded-full animate-spin"></div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-slate-50">
|
|
<Navbar tripTitle={trip?.title} tripId={tripId} showBack onBack={() => navigate(`/trips/${tripId}`)} />
|
|
|
|
<div className="pt-14">
|
|
<div className="max-w-5xl mx-auto px-4 py-6">
|
|
<div className="flex items-center gap-3 mb-6">
|
|
<Link
|
|
to={`/trips/${tripId}`}
|
|
className="flex items-center gap-1 text-sm text-gray-500 hover:text-gray-700"
|
|
>
|
|
<ArrowLeft className="w-4 h-4" />
|
|
Zurück zur Planung
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between mb-6">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-gray-900">Dateien & Dokumente</h1>
|
|
<p className="text-gray-500 text-sm">{files.length} Dateien für {trip?.title}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<FileManager
|
|
files={files}
|
|
onUpload={handleUpload}
|
|
onDelete={handleDelete}
|
|
places={places}
|
|
tripId={tripId}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|