2025-02-03 12:28:42 -05:00
|
|
|
<script lang="ts">
|
2025-02-03 19:18:46 -05:00
|
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
2025-02-03 12:28:42 -05:00
|
|
|
import { addToast } from '$lib/toasts';
|
|
|
|
import { t } from 'svelte-i18n';
|
|
|
|
import MarkdownEditor from './MarkdownEditor.svelte';
|
|
|
|
import { appVersion } from '$lib/config';
|
2025-02-03 19:18:46 -05:00
|
|
|
import { DefaultMarker, MapEvents, MapLibre } from 'svelte-maplibre';
|
|
|
|
import type { Collection, Hotel, ReverseGeocode, OpenStreetMapPlace, Point } from '$lib/types';
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
2025-02-03 12:28:42 -05:00
|
|
|
|
|
|
|
export let collection: Collection;
|
|
|
|
export let hotelToEdit: Hotel | null = null;
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
let modal: HTMLDialogElement;
|
2025-02-03 12:28:42 -05:00
|
|
|
let constrainDates: boolean = false;
|
2025-02-03 19:18:46 -05:00
|
|
|
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[] = [];
|
2025-02-03 12:28:42 -05:00
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Format date as local datetime
|
2025-02-03 12:28:42 -05:00
|
|
|
function toLocalDatetime(value: string | null): string {
|
|
|
|
if (!value) return '';
|
|
|
|
const date = new Date(value);
|
|
|
|
return date.toISOString().slice(0, 16); // Format: YYYY-MM-DDTHH:mm
|
|
|
|
}
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Initialize hotel with values from hotelToEdit or default values
|
|
|
|
function initializeHotel(hotelToEdit: Hotel | null): Hotel {
|
|
|
|
return {
|
|
|
|
id: hotelToEdit?.id || '',
|
|
|
|
user_id: hotelToEdit?.user_id || '',
|
|
|
|
name: hotelToEdit?.name || '',
|
|
|
|
description: hotelToEdit?.description || '',
|
|
|
|
rating: hotelToEdit?.rating || NaN,
|
|
|
|
link: hotelToEdit?.link || '',
|
|
|
|
check_in: hotelToEdit?.check_in || null,
|
|
|
|
check_out: hotelToEdit?.check_out || null,
|
|
|
|
reservation_number: hotelToEdit?.reservation_number || '',
|
|
|
|
price: hotelToEdit?.price || null,
|
|
|
|
latitude: hotelToEdit?.latitude || null,
|
|
|
|
longitude: hotelToEdit?.longitude || null,
|
|
|
|
location: hotelToEdit?.location || '',
|
|
|
|
is_public: hotelToEdit?.is_public || false,
|
|
|
|
collection: hotelToEdit?.collection || '',
|
|
|
|
created_at: hotelToEdit?.created_at || '',
|
|
|
|
updated_at: hotelToEdit?.updated_at || ''
|
|
|
|
};
|
|
|
|
}
|
2025-02-03 12:28:42 -05:00
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Set full start and end dates from collection
|
2025-02-03 12:28:42 -05:00
|
|
|
if (collection.start_date && collection.end_date) {
|
|
|
|
fullStartDate = `${collection.start_date}T00:00`;
|
|
|
|
fullEndDate = `${collection.end_date}T23:59`;
|
|
|
|
}
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Handle rating change
|
2025-02-03 12:28:42 -05:00
|
|
|
$: {
|
|
|
|
if (!hotel.rating) {
|
|
|
|
hotel.rating = NaN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Show modal on mount
|
|
|
|
onMount(() => {
|
2025-02-03 12:28:42 -05:00
|
|
|
modal = document.getElementById('my_modal_1') as HTMLDialogElement;
|
2025-02-03 19:18:46 -05:00
|
|
|
if (modal) modal.showModal();
|
2025-02-03 12:28:42 -05:00
|
|
|
});
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Close modal
|
2025-02-03 12:28:42 -05:00
|
|
|
function close() {
|
|
|
|
dispatch('close');
|
|
|
|
}
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Close modal on escape key press
|
2025-02-03 12:28:42 -05:00
|
|
|
function handleKeydown(event: KeyboardEvent) {
|
2025-02-03 19:18:46 -05:00
|
|
|
if (event.key === 'Escape') close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Geocode location search
|
|
|
|
async function geocode(e: Event | null) {
|
|
|
|
if (e) e.preventDefault();
|
|
|
|
if (!query) {
|
|
|
|
alert($t('adventures.no_location'));
|
|
|
|
return;
|
2025-02-03 12:28:42 -05:00
|
|
|
}
|
2025-02-03 19:18:46 -05:00
|
|
|
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: '' }];
|
2025-02-03 12:28:42 -05:00
|
|
|
}
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Clear all markers from the map
|
|
|
|
function clearMap() {
|
|
|
|
markers = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle form submission (save hotel)
|
2025-02-03 12:28:42 -05:00
|
|
|
async function handleSubmit(event: Event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
if (hotel.check_in && !hotel.check_out) {
|
|
|
|
const checkInDate = new Date(hotel.check_in);
|
|
|
|
checkInDate.setDate(checkInDate.getDate() + 1);
|
|
|
|
hotel.check_out = checkInDate.toISOString();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hotel.check_in && hotel.check_out && hotel.check_in > hotel.check_out) {
|
|
|
|
addToast('error', $t('adventures.start_before_end_error'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2025-02-03 19:18:46 -05:00
|
|
|
// Create or update hotel
|
|
|
|
const url = hotel.id === '' ? '/api/hotels' : `/api/hotels/${hotel.id}`;
|
|
|
|
const method = hotel.id === '' ? 'POST' : 'PATCH';
|
|
|
|
const res = await fetch(url, {
|
|
|
|
method,
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
body: JSON.stringify(hotel)
|
|
|
|
});
|
|
|
|
const data = await res.json();
|
|
|
|
if (data.id) {
|
|
|
|
hotel = data as Hotel;
|
|
|
|
const toastMessage =
|
|
|
|
hotel.id === '' ? 'adventures.adventure_created' : 'adventures.adventure_updated';
|
|
|
|
addToast('success', $t(toastMessage));
|
|
|
|
dispatch('save', hotel);
|
2025-02-03 12:28:42 -05:00
|
|
|
} else {
|
2025-02-03 19:18:46 -05:00
|
|
|
const errorMessage =
|
|
|
|
hotel.id === '' ? 'adventures.adventure_create_error' : 'adventures.adventure_update_error';
|
|
|
|
addToast('error', $t(errorMessage));
|
2025-02-03 12:28:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<dialog id="my_modal_1" class="modal">
|
|
|
|
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
|
|
|
|
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
|
|
|
|
<div class="modal-box w-11/12 max-w-3xl" role="dialog" on:keydown={handleKeydown} tabindex="0">
|
|
|
|
<h3 class="font-bold text-2xl">
|
|
|
|
{hotelToEdit
|
|
|
|
? $t('transportation.edit_transportation')
|
|
|
|
: $t('transportation.new_transportation')}
|
|
|
|
</h3>
|
|
|
|
<div class="modal-action items-center">
|
|
|
|
<form method="post" style="width: 100%;" on:submit={handleSubmit}>
|
|
|
|
<!-- Basic Information Section -->
|
|
|
|
<div class="collapse collapse-plus bg-base-200 mb-4">
|
|
|
|
<input type="checkbox" checked />
|
|
|
|
<div class="collapse-title text-xl font-medium">
|
|
|
|
{$t('adventures.basic_information')}
|
|
|
|
</div>
|
|
|
|
<div class="collapse-content">
|
|
|
|
<!-- Name -->
|
|
|
|
<div>
|
|
|
|
<label for="name">
|
|
|
|
{$t('adventures.name')}<span class="text-red-500">*</span>
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="name"
|
|
|
|
name="name"
|
|
|
|
bind:value={hotel.name}
|
|
|
|
class="input input-bordered w-full"
|
|
|
|
required
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<!-- Description -->
|
|
|
|
<div>
|
|
|
|
<label for="description">{$t('adventures.description')}</label><br />
|
|
|
|
<MarkdownEditor bind:text={hotel.description} editor_height={'h-32'} />
|
|
|
|
</div>
|
|
|
|
<!-- Rating -->
|
|
|
|
<div>
|
|
|
|
<label for="rating">{$t('adventures.rating')}</label><br />
|
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
min="0"
|
|
|
|
max="5"
|
|
|
|
hidden
|
|
|
|
bind:value={hotel.rating}
|
|
|
|
id="rating"
|
|
|
|
name="rating"
|
|
|
|
class="input input-bordered w-full max-w-xs mt-1"
|
|
|
|
/>
|
|
|
|
<div class="rating -ml-3 mt-1">
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="rating-2"
|
|
|
|
class="rating-hidden"
|
|
|
|
checked={Number.isNaN(hotel.rating)}
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="rating-2"
|
|
|
|
class="mask mask-star-2 bg-orange-400"
|
|
|
|
on:click={() => (hotel.rating = 1)}
|
|
|
|
checked={hotel.rating === 1}
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="rating-2"
|
|
|
|
class="mask mask-star-2 bg-orange-400"
|
|
|
|
on:click={() => (hotel.rating = 2)}
|
|
|
|
checked={hotel.rating === 2}
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="rating-2"
|
|
|
|
class="mask mask-star-2 bg-orange-400"
|
|
|
|
on:click={() => (hotel.rating = 3)}
|
|
|
|
checked={hotel.rating === 3}
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="rating-2"
|
|
|
|
class="mask mask-star-2 bg-orange-400"
|
|
|
|
on:click={() => (hotel.rating = 4)}
|
|
|
|
checked={hotel.rating === 4}
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
name="rating-2"
|
|
|
|
class="mask mask-star-2 bg-orange-400"
|
|
|
|
on:click={() => (hotel.rating = 5)}
|
|
|
|
checked={hotel.rating === 5}
|
|
|
|
/>
|
|
|
|
{#if hotel.rating}
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-sm btn-error ml-2"
|
|
|
|
on:click={() => (hotel.rating = NaN)}
|
|
|
|
>
|
|
|
|
{$t('adventures.remove')}
|
|
|
|
</button>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Link -->
|
|
|
|
<div>
|
|
|
|
<label for="link">{$t('adventures.link')}</label>
|
|
|
|
<input
|
|
|
|
type="url"
|
|
|
|
id="link"
|
|
|
|
name="link"
|
|
|
|
bind:value={hotel.link}
|
|
|
|
class="input input-bordered w-full"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="collapse collapse-plus bg-base-200 mb-4">
|
|
|
|
<input type="checkbox" checked />
|
|
|
|
<div class="collapse-title text-xl font-medium">
|
|
|
|
{$t('adventures.date_information')}
|
|
|
|
</div>
|
|
|
|
<div class="collapse-content">
|
|
|
|
<!-- Start Date -->
|
|
|
|
<div>
|
|
|
|
<label for="date">
|
|
|
|
{$t('adventures.start_date')}
|
|
|
|
</label>
|
|
|
|
|
|
|
|
{#if collection && collection.start_date && collection.end_date}<label
|
|
|
|
class="label cursor-pointer flex items-start space-x-2"
|
|
|
|
>
|
|
|
|
<span class="label-text">{$t('adventures.date_constrain')}</span>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
class="toggle toggle-primary"
|
|
|
|
id="constrain_dates"
|
|
|
|
name="constrain_dates"
|
|
|
|
on:change={() => (constrainDates = !constrainDates)}
|
|
|
|
/></label
|
|
|
|
>
|
|
|
|
{/if}
|
|
|
|
<div>
|
|
|
|
<input
|
|
|
|
type="datetime-local"
|
|
|
|
id="date"
|
|
|
|
name="date"
|
|
|
|
bind:value={hotel.check_in}
|
|
|
|
min={constrainDates ? fullStartDate : ''}
|
|
|
|
max={constrainDates ? fullEndDate : ''}
|
|
|
|
class="input input-bordered w-full max-w-xs mt-1"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- End Date -->
|
|
|
|
{#if hotel.check_in}
|
|
|
|
<div>
|
|
|
|
<label for="end_date">
|
|
|
|
{$t('adventures.end_date')}
|
|
|
|
</label>
|
|
|
|
<div>
|
|
|
|
<input
|
|
|
|
type="datetime-local"
|
|
|
|
id="end_date"
|
|
|
|
name="end_date"
|
|
|
|
min={constrainDates ? hotel.check_in : ''}
|
|
|
|
max={constrainDates ? fullEndDate : ''}
|
|
|
|
bind:value={hotel.check_out}
|
|
|
|
class="input input-bordered w-full max-w-xs mt-1"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Location Information -->
|
2025-02-03 19:18:46 -05:00
|
|
|
<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>
|
2025-02-03 12:28:42 -05:00
|
|
|
|
|
|
|
<div class="collapse collapse-plus bg-base-200 mb-4">
|
|
|
|
<input type="checkbox" checked />
|
|
|
|
<div class="collapse-title text-xl font-medium">
|
|
|
|
{$t('adventures.location_information')}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="collapse-content"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Form Actions -->
|
|
|
|
<div class="mt-4">
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
{$t('notes.save')}
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn" on:click={close}>
|
|
|
|
{$t('about.close')}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</dialog>
|