1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-23 23:09:37 +02:00

feat: Enhance HotelModal with geocoding, custom location handling, and improved hotel initialization

This commit is contained in:
Sean Morley 2025-02-03 19:18:46 -05:00
parent df60184f23
commit ed1e24252c

View file

@ -1,83 +1,119 @@
<script lang="ts"> <script lang="ts">
import { createEventDispatcher } from 'svelte'; import { createEventDispatcher, onMount } from 'svelte';
import type { Collection, Hotel } from '$lib/types';
const dispatch = createEventDispatcher();
import { onMount } from 'svelte';
import { addToast } from '$lib/toasts'; import { addToast } from '$lib/toasts';
let modal: HTMLDialogElement;
import { t } from 'svelte-i18n'; import { t } from 'svelte-i18n';
import MarkdownEditor from './MarkdownEditor.svelte'; import MarkdownEditor from './MarkdownEditor.svelte';
import { appVersion } from '$lib/config'; import { appVersion } from '$lib/config';
import { DefaultMarker, MapLibre } from 'svelte-maplibre'; import { DefaultMarker, MapEvents, MapLibre } from 'svelte-maplibre';
import type { Collection, Hotel, ReverseGeocode, OpenStreetMapPlace, Point } from '$lib/types';
const dispatch = createEventDispatcher();
export let collection: Collection; export let collection: Collection;
export let hotelToEdit: Hotel | null = null; export let hotelToEdit: Hotel | null = null;
let modal: HTMLDialogElement;
let constrainDates: boolean = false; let constrainDates: boolean = false;
let hotel: Hotel = { ...initializeHotel(hotelToEdit) };
let fullStartDate: string = '';
let fullEndDate: string = '';
let reverseGeocodePlace: ReverseGeocode | null = null;
let query: string = '';
let places: OpenStreetMapPlace[] = [];
let noPlaces: boolean = false;
let is_custom_location: boolean = false;
let markers: Point[] = [];
// Format date as local datetime
function toLocalDatetime(value: string | null): string { function toLocalDatetime(value: string | null): string {
if (!value) return ''; if (!value) return '';
const date = new Date(value); const date = new Date(value);
return date.toISOString().slice(0, 16); // Format: YYYY-MM-DDTHH:mm return date.toISOString().slice(0, 16); // Format: YYYY-MM-DDTHH:mm
} }
let hotel: Hotel = { // Initialize hotel with values from hotelToEdit or default values
id: hotelToEdit?.id || '', function initializeHotel(hotelToEdit: Hotel | null): Hotel {
user_id: hotelToEdit?.user_id || '', return {
name: hotelToEdit?.name || '', id: hotelToEdit?.id || '',
description: hotelToEdit?.description || '', user_id: hotelToEdit?.user_id || '',
rating: hotelToEdit?.rating || NaN, name: hotelToEdit?.name || '',
link: hotelToEdit?.link || '', description: hotelToEdit?.description || '',
check_in: hotelToEdit?.check_in || null, rating: hotelToEdit?.rating || NaN,
check_out: hotelToEdit?.check_out || null, link: hotelToEdit?.link || '',
reservation_number: hotelToEdit?.reservation_number || '', check_in: hotelToEdit?.check_in || null,
price: hotelToEdit?.price || null, check_out: hotelToEdit?.check_out || null,
latitude: hotelToEdit?.latitude || null, reservation_number: hotelToEdit?.reservation_number || '',
longitude: hotelToEdit?.longitude || null, price: hotelToEdit?.price || null,
location: hotelToEdit?.location || '', latitude: hotelToEdit?.latitude || null,
is_public: hotelToEdit?.is_public || false, longitude: hotelToEdit?.longitude || null,
collection: hotelToEdit?.collection || '', location: hotelToEdit?.location || '',
created_at: hotelToEdit?.created_at || '', is_public: hotelToEdit?.is_public || false,
updated_at: hotelToEdit?.updated_at || '' collection: hotelToEdit?.collection || '',
}; created_at: hotelToEdit?.created_at || '',
updated_at: hotelToEdit?.updated_at || ''
let fullStartDate: string = ''; };
let fullEndDate: string = ''; }
// Set full start and end dates from collection
if (collection.start_date && collection.end_date) { if (collection.start_date && collection.end_date) {
fullStartDate = `${collection.start_date}T00:00`; fullStartDate = `${collection.start_date}T00:00`;
fullEndDate = `${collection.end_date}T23:59`; fullEndDate = `${collection.end_date}T23:59`;
} }
// Handle rating change
$: { $: {
if (!hotel.rating) { if (!hotel.rating) {
hotel.rating = NaN; hotel.rating = NaN;
} }
} }
console.log(hotel); // Show modal on mount
onMount(() => {
onMount(async () => {
modal = document.getElementById('my_modal_1') as HTMLDialogElement; modal = document.getElementById('my_modal_1') as HTMLDialogElement;
if (modal) { if (modal) modal.showModal();
modal.showModal();
}
}); });
// Close modal
function close() { function close() {
dispatch('close'); dispatch('close');
} }
// Close modal on escape key press
function handleKeydown(event: KeyboardEvent) { function handleKeydown(event: KeyboardEvent) {
if (event.key === 'Escape') { if (event.key === 'Escape') close();
close();
}
} }
// Geocode location search
async function geocode(e: Event | null) {
if (e) e.preventDefault();
if (!query) {
alert($t('adventures.no_location'));
return;
}
const res = await fetch(`https://nominatim.openstreetmap.org/search?q=${query}&format=jsonv2`, {
headers: { 'User-Agent': `AdventureLog / ${appVersion}` }
});
const data = (await res.json()) as OpenStreetMapPlace[];
places = data;
noPlaces = data.length === 0;
}
// Set custom location flag based on hotel location
$: is_custom_location = hotel.location !== (reverseGeocodePlace?.display_name || '');
// Add marker to map
async function addMarker(e: CustomEvent<any>) {
markers = [{ lngLat: e.detail.lngLat, name: '', location: '', activity_type: '' }];
}
// Clear all markers from the map
function clearMap() {
markers = [];
}
// Handle form submission (save hotel)
async function handleSubmit(event: Event) { async function handleSubmit(event: Event) {
event.preventDefault(); event.preventDefault();
console.log(hotel);
if (hotel.check_in && !hotel.check_out) { if (hotel.check_in && !hotel.check_out) {
const checkInDate = new Date(hotel.check_in); const checkInDate = new Date(hotel.check_in);
@ -90,39 +126,25 @@
return; return;
} }
if (hotel.id === '') { // Create or update hotel
let res = await fetch('/api/hotels', { const url = hotel.id === '' ? '/api/hotels' : `/api/hotels/${hotel.id}`;
method: 'POST', const method = hotel.id === '' ? 'POST' : 'PATCH';
headers: { const res = await fetch(url, {
'Content-Type': 'application/json' method,
}, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(hotel) body: JSON.stringify(hotel)
}); });
let data = await res.json(); const data = await res.json();
if (data.id) { if (data.id) {
hotel = data as Hotel; hotel = data as Hotel;
addToast('success', $t('adventures.adventure_created')); const toastMessage =
dispatch('save', hotel); hotel.id === '' ? 'adventures.adventure_created' : 'adventures.adventure_updated';
} else { addToast('success', $t(toastMessage));
console.error(data); dispatch('save', hotel);
addToast('error', $t('adventures.adventure_create_error'));
}
} else { } else {
let res = await fetch(`/api/hotels/${hotel.id}`, { const errorMessage =
method: 'PATCH', hotel.id === '' ? 'adventures.adventure_create_error' : 'adventures.adventure_update_error';
headers: { addToast('error', $t(errorMessage));
'Content-Type': 'application/json'
},
body: JSON.stringify(hotel)
});
let data = await res.json();
if (data.id) {
hotel = data as Hotel;
addToast('success', $t('adventures.adventure_updated'));
dispatch('save', hotel);
} else {
addToast('error', $t('adventures.adventure_update_error'));
}
} }
} }
</script> </script>
@ -303,6 +325,97 @@
</div> </div>
<!-- Location Information --> <!-- Location Information -->
<div class="collapse collapse-plus bg-base-200 mb-4">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium">
{$t('adventures.location_information')}
</div>
<div class="collapse-content">
<!-- <div class="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3"> -->
<div>
<label for="latitude">{$t('adventures.location')}</label><br />
<div class="flex items-center">
<input
type="text"
id="location"
name="location"
bind:value={hotel.location}
class="input input-bordered w-full"
/>
{#if is_custom_location}
<button
class="btn btn-primary ml-2"
type="button"
on:click={() => (hotel.location = reverseGeocodePlace?.display_name)}
>{$t('adventures.set_to_pin')}</button
>
{/if}
</div>
</div>
<div>
<form on:submit={geocode} class="mt-2">
<input
type="text"
placeholder={$t('adventures.search_for_location')}
class="input input-bordered w-full max-w-xs mb-2"
id="search"
name="search"
bind:value={query}
/>
<button class="btn btn-neutral -mt-1" type="submit">{$t('navbar.search')}</button>
<button class="btn btn-neutral -mt-1" type="button" on:click={clearMap}
>{$t('adventures.clear_map')}</button
>
</form>
</div>
{#if places.length > 0}
<div class="mt-4 max-w-full">
<h3 class="font-bold text-lg mb-4">{$t('adventures.search_results')}</h3>
<div class="flex flex-wrap">
{#each places as place}
<button
type="button"
class="btn btn-neutral mb-2 mr-2 max-w-full break-words whitespace-normal text-left"
on:click={() => {
markers = [
{
lngLat: { lng: Number(place.lon), lat: Number(place.lat) },
location: place.display_name,
name: place.name,
activity_type: place.type
}
];
}}
>
{place.display_name}
</button>
{/each}
</div>
</div>
{:else if noPlaces}
<p class="text-error text-lg">{$t('adventures.no_results')}</p>
{/if}
<!-- </div> -->
<div>
<MapLibre
style="https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json"
class="relative aspect-[9/16] max-h-[70vh] w-full sm:aspect-video sm:max-h-full rounded-lg"
standardControls
>
<!-- MapEvents gives you access to map events even from other components inside the map,
where you might not have access to the top-level `MapLibre` component. In this case
it would also work to just use on:click on the MapLibre component itself. -->
<MapEvents on:click={addMarker} />
{#each markers as marker}
<DefaultMarker lngLat={marker.lngLat} />
{/each}
</MapLibre>
</div>
</div>
</div>
<div class="collapse collapse-plus bg-base-200 mb-4"> <div class="collapse collapse-plus bg-base-200 mb-4">
<input type="checkbox" checked /> <input type="checkbox" checked />