1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-21 13:59:36 +02:00
AdventureLog/frontend/src/lib/components/AdventureModal.svelte

979 lines
28 KiB
Svelte
Raw Normal View History

2024-07-08 11:44:39 -04:00
<script lang="ts">
import { createEventDispatcher } from 'svelte';
import type {
Adventure,
Collection,
OpenStreetMapPlace,
Point,
ReverseGeocode
} from '$lib/types';
2024-07-08 11:44:39 -04:00
import { onMount } from 'svelte';
2024-08-17 11:12:15 -04:00
import { enhance } from '$app/forms';
2024-07-08 11:44:39 -04:00
import { addToast } from '$lib/toasts';
2024-08-17 15:18:43 -04:00
import { deserialize } from '$app/forms';
2024-10-28 19:59:44 -04:00
import { t } from 'svelte-i18n';
2024-08-17 11:12:15 -04:00
export let longitude: number | null = null;
export let latitude: number | null = null;
2024-10-01 09:32:02 -04:00
export let collection: Collection | null = null;
2024-08-20 12:39:15 -04:00
import { DefaultMarker, FillLayer, MapEvents, MapLibre } from 'svelte-maplibre';
2024-08-17 11:12:15 -04:00
let query: string = '';
let places: OpenStreetMapPlace[] = [];
let images: { id: string; image: string }[] = [];
let warningMessage: string = '';
let constrainDates: boolean = false;
2024-08-17 11:12:15 -04:00
import ActivityComplete from './ActivityComplete.svelte';
import { appVersion } from '$lib/config';
2024-09-23 18:46:04 -04:00
import { ADVENTURE_TYPES } from '$lib';
2024-07-08 11:44:39 -04:00
2024-08-17 22:48:57 -04:00
let wikiError: string = '';
let noPlaces: boolean = false;
let is_custom_location: boolean = false;
let reverseGeocodePlace: ReverseGeocode | null = null;
2024-08-20 12:39:15 -04:00
let adventure: Adventure = {
id: '',
name: '',
type: 'visited',
2024-09-23 18:46:04 -04:00
visits: [],
2024-08-20 12:39:15 -04:00
link: null,
description: null,
activity_types: [],
rating: NaN,
is_public: false,
latitude: NaN,
longitude: NaN,
location: null,
images: [],
user_id: null,
2024-10-01 09:32:02 -04:00
collection: collection?.id || null
2024-08-20 12:39:15 -04:00
};
2024-08-17 22:40:27 -04:00
export let adventureToEdit: Adventure | null = null;
2024-08-20 12:39:15 -04:00
adventure = {
2024-08-17 22:40:27 -04:00
id: adventureToEdit?.id || '',
name: adventureToEdit?.name || '',
2024-09-23 18:46:04 -04:00
type: adventureToEdit?.type || 'general',
2024-08-17 22:40:27 -04:00
link: adventureToEdit?.link || null,
description: adventureToEdit?.description || null,
activity_types: adventureToEdit?.activity_types || [],
rating: adventureToEdit?.rating || NaN,
is_public: adventureToEdit?.is_public || false,
latitude: adventureToEdit?.latitude || NaN,
longitude: adventureToEdit?.longitude || NaN,
location: adventureToEdit?.location || null,
images: adventureToEdit?.images || [],
user_id: adventureToEdit?.user_id || null,
2024-10-01 09:32:02 -04:00
collection: adventureToEdit?.collection || collection?.id || null,
2024-11-02 21:18:52 -04:00
visits: adventureToEdit?.visits || [],
is_visited: adventureToEdit?.is_visited || false
2024-08-17 22:40:27 -04:00
};
2024-08-17 11:12:15 -04:00
let markers: Point[] = [];
2024-08-17 15:18:43 -04:00
let url: string = '';
let imageError: string = '';
2024-08-17 16:28:56 -04:00
let wikiImageError: string = '';
2024-08-17 15:18:43 -04:00
let old_display_name: string = '';
2024-08-17 22:40:27 -04:00
images = adventure.images || [];
2024-07-08 11:44:39 -04:00
if (longitude && latitude) {
adventure.latitude = latitude;
adventure.longitude = longitude;
reverseGeocode(true);
}
$: {
is_custom_location =
adventure.location !== reverseGeocodePlace?.display_name || !reverseGeocodePlace;
}
2024-08-17 22:40:27 -04:00
if (adventure.longitude && adventure.latitude) {
markers = [];
markers = [
{
2024-08-17 22:40:27 -04:00
lngLat: { lng: adventure.longitude, lat: adventure.latitude },
location: adventure.location || '',
name: adventure.name,
2024-08-18 09:15:59 -04:00
activity_type: ''
}
];
}
2024-08-17 11:12:15 -04:00
$: {
2024-08-17 22:40:27 -04:00
if (!adventure.rating) {
adventure.rating = NaN;
2024-08-17 11:12:15 -04:00
}
}
2024-08-23 14:24:30 -04:00
function clearMap() {
console.log('CLEAR');
markers = [];
}
2024-08-17 22:40:27 -04:00
let imageSearch: string = adventure.name || '';
2024-08-17 15:18:43 -04:00
2024-08-17 13:30:00 -04:00
async function removeImage(id: string) {
2024-08-17 13:59:49 -04:00
let res = await fetch(`/api/images/${id}/image_delete`, {
method: 'POST'
2024-08-17 13:30:00 -04:00
});
2024-08-17 13:59:49 -04:00
if (res.status === 204) {
2024-08-17 13:30:00 -04:00
images = images.filter((image) => image.id !== id);
2024-08-17 22:40:27 -04:00
adventure.images = images;
2024-08-17 13:59:49 -04:00
console.log(images);
2024-10-28 19:59:44 -04:00
addToast('success', $t('adventures.image_removed_success'));
2024-08-17 13:30:00 -04:00
} else {
2024-10-28 19:59:44 -04:00
addToast('error', $t('adventures.image_removed_error'));
2024-08-17 13:30:00 -04:00
}
}
2024-08-17 11:12:15 -04:00
let isDetails: boolean = true;
function saveAndClose() {
2024-08-17 22:40:27 -04:00
dispatch('save', adventure);
2024-08-17 11:12:15 -04:00
close();
}
let previousCoords: { lat: number; lng: number } | null = null;
2024-08-17 11:12:15 -04:00
$: if (markers.length > 0) {
const newLat = Math.round(markers[0].lngLat.lat * 1e6) / 1e6;
const newLng = Math.round(markers[0].lngLat.lng * 1e6) / 1e6;
if (!previousCoords || previousCoords.lat !== newLat || previousCoords.lng !== newLng) {
adventure.latitude = newLat;
adventure.longitude = newLng;
previousCoords = { lat: newLat, lng: newLng };
reverseGeocode();
2024-08-17 11:12:15 -04:00
}
2024-08-17 22:40:27 -04:00
if (!adventure.name) {
adventure.name = markers[0].name;
2024-08-17 11:12:15 -04:00
}
}
2024-08-17 15:18:43 -04:00
async function fetchImage() {
let res = await fetch(url);
let data = await res.blob();
if (!data) {
2024-10-28 19:59:44 -04:00
imageError = $t('adventures.no_image_url');
2024-08-17 15:18:43 -04:00
return;
}
let file = new File([data], 'image.jpg', { type: 'image/jpeg' });
let formData = new FormData();
formData.append('image', file);
2024-08-17 22:40:27 -04:00
formData.append('adventure', adventure.id);
2024-08-17 15:18:43 -04:00
let res2 = await fetch(`/adventures?/image`, {
method: 'POST',
body: formData
});
let data2 = await res2.json();
console.log(data2);
if (data2.type === 'success') {
images = [...images, data2];
2024-08-17 22:40:27 -04:00
adventure.images = images;
2024-10-28 19:59:44 -04:00
addToast('success', $t('adventures.image_upload_success'));
2024-08-17 15:18:43 -04:00
} else {
2024-10-28 19:59:44 -04:00
addToast('error', $t('adventures.image_upload_error'));
2024-08-17 15:18:43 -04:00
}
}
async function fetchWikiImage() {
let res = await fetch(`/api/generate/img/?name=${imageSearch}`);
let data = await res.json();
2024-08-17 16:28:56 -04:00
if (!res.ok) {
wikiImageError = $t('adventures.image_fetch_failed');
2024-08-17 16:28:56 -04:00
return;
}
2024-08-17 15:18:43 -04:00
if (data.source) {
let imageUrl = data.source;
let res = await fetch(imageUrl);
let blob = await res.blob();
let file = new File([blob], `${imageSearch}.jpg`, { type: 'image/jpeg' });
let formData = new FormData();
formData.append('image', file);
2024-08-17 22:40:27 -04:00
formData.append('adventure', adventure.id);
2024-08-17 15:18:43 -04:00
let res2 = await fetch(`/adventures?/image`, {
method: 'POST',
body: formData
});
if (res2.ok) {
let newData = deserialize(await res2.text()) as { data: { id: string; image: string } };
console.log(newData);
let newImage = { id: newData.data.id, image: newData.data.image };
console.log(newImage);
images = [...images, newImage];
2024-08-17 22:40:27 -04:00
adventure.images = images;
2024-10-28 19:59:44 -04:00
addToast('success', $t('adventures.image_upload_success'));
2024-08-17 15:18:43 -04:00
} else {
2024-10-28 19:59:44 -04:00
addToast('error', $t('adventures.image_upload_error'));
wikiImageError = $t('adventures.wiki_image_error');
2024-08-17 15:18:43 -04:00
}
}
}
2024-08-17 11:12:15 -04:00
async function geocode(e: Event | null) {
if (e) {
e.preventDefault();
}
if (!query) {
alert($t('adventures.no_location'));
2024-08-17 11:12:15 -04:00
return;
}
let res = await fetch(`https://nominatim.openstreetmap.org/search?q=${query}&format=jsonv2`, {
headers: {
'User-Agent': `AdventureLog / ${appVersion} `
}
});
console.log(res);
let data = (await res.json()) as OpenStreetMapPlace[];
places = data;
if (data.length === 0) {
noPlaces = true;
} else {
noPlaces = false;
}
2024-08-17 11:12:15 -04:00
}
2024-10-01 09:32:02 -04:00
let new_start_date: string = '';
let new_end_date: string = '';
let new_notes: string = '';
function addNewVisit() {
if (new_start_date && !new_end_date) {
new_end_date = new_start_date;
}
2024-10-01 09:32:02 -04:00
if (new_start_date > new_end_date) {
2024-10-28 19:59:44 -04:00
addToast('error', $t('adventures.start_before_end_error'));
2024-10-01 09:32:02 -04:00
return;
}
if (new_end_date && !new_start_date) {
addToast('error', $t('adventures.no_start_date'));
2024-10-01 09:32:02 -04:00
return;
}
adventure.visits = [
...adventure.visits,
{
start_date: new_start_date,
end_date: new_end_date,
notes: new_notes,
id: ''
}
];
new_start_date = '';
new_end_date = '';
new_notes = '';
}
async function markVisited() {
console.log(reverseGeocodePlace);
if (reverseGeocodePlace) {
let res = await fetch(`/worldtravel?/markVisited`, {
method: 'POST',
body: JSON.stringify({ regionId: reverseGeocodePlace.id })
});
if (res.ok) {
reverseGeocodePlace.is_visited = true;
addToast('success', `Visit to ${reverseGeocodePlace.region} marked`);
} else {
addToast('error', `Failed to mark visit to ${reverseGeocodePlace.region}`);
}
}
}
async function reverseGeocode(force_update: boolean = false) {
2024-08-17 11:12:15 -04:00
let res = await fetch(
`/api/reverse-geocode/reverse_geocode/?lat=${adventure.latitude}&lon=${adventure.longitude}`
2024-08-17 11:12:15 -04:00
);
let data = await res.json();
if (data.error) {
console.log(data.error);
reverseGeocodePlace = null;
return;
2024-08-17 11:12:15 -04:00
}
reverseGeocodePlace = data;
if (
reverseGeocodePlace &&
reverseGeocodePlace.display_name &&
(!is_custom_location || force_update)
) {
old_display_name = reverseGeocodePlace.display_name;
adventure.location = reverseGeocodePlace.display_name;
}
2024-08-17 11:12:15 -04:00
console.log(data);
}
2024-07-16 15:38:07 -04:00
let fileInput: HTMLInputElement;
2024-07-08 11:44:39 -04:00
2024-08-17 11:12:15 -04:00
const dispatch = createEventDispatcher();
let modal: HTMLDialogElement;
2024-07-08 11:44:39 -04:00
onMount(async () => {
modal = document.getElementById('my_modal_1') as HTMLDialogElement;
2024-08-20 12:39:15 -04:00
modal.showModal();
console.log('open');
2024-07-08 11:44:39 -04:00
});
function close() {
dispatch('close');
}
function handleKeydown(event: KeyboardEvent) {
if (event.key === 'Escape') {
close();
}
}
2024-08-17 22:48:57 -04:00
async function generateDesc() {
let res = await fetch(`/api/generate/desc/?name=${adventure.name}`);
let data = await res.json();
if (data.extract?.length > 0) {
adventure.description = data.extract;
2024-08-18 09:15:59 -04:00
wikiError = '';
2024-08-17 22:48:57 -04:00
} else {
wikiError = $t('adventures.no_description_found');
2024-08-17 22:48:57 -04:00
}
}
2024-07-08 11:44:39 -04:00
async function addMarker(e: CustomEvent<any>) {
markers = [];
markers = [
...markers,
{
lngLat: e.detail.lngLat,
name: '',
location: '',
activity_type: ''
}
];
2024-08-17 11:12:15 -04:00
console.log(markers);
}
2024-07-08 11:44:39 -04:00
2024-08-17 11:12:15 -04:00
function imageSubmit() {
return async ({ result }: any) => {
if (result.type === 'success') {
if (result.data.id && result.data.image) {
2024-08-17 22:40:27 -04:00
adventure.images = [...adventure.images, result.data];
2024-08-17 11:12:15 -04:00
images = [...images, result.data];
addToast('success', $t('adventures.image_upload_success'));
2024-07-08 11:44:39 -04:00
2024-08-17 11:12:15 -04:00
fileInput.value = '';
2024-08-17 22:40:27 -04:00
console.log(adventure);
2024-08-17 11:12:15 -04:00
} else {
addToast('error', result.data.error || $t('adventures.image_upload_error'));
2024-07-08 11:44:39 -04:00
}
}
2024-08-17 11:12:15 -04:00
};
2024-07-08 11:44:39 -04:00
}
2024-07-16 15:38:07 -04:00
2024-08-17 11:12:15 -04:00
async function handleSubmit(event: Event) {
event.preventDefault();
2024-08-17 22:40:27 -04:00
console.log(adventure);
if (adventure.id === '') {
let res = await fetch('/api/adventures', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(adventure)
});
let data = await res.json();
if (data.id) {
adventure = data as Adventure;
isDetails = false;
warningMessage = '';
addToast('success', $t('adventures.adventure_created'));
2024-08-17 22:40:27 -04:00
} else {
warningMessage = Object.values(data)[0] as string;
addToast('error', $t('adventures.adventure_create_error'));
2024-08-17 22:40:27 -04:00
}
2024-08-17 11:12:15 -04:00
} else {
2024-08-17 22:40:27 -04:00
let res = await fetch(`/api/adventures/${adventure.id}`, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(adventure)
});
let data = await res.json();
if (data.id) {
adventure = data as Adventure;
isDetails = false;
warningMessage = '';
addToast('success', $t('adventures.adventure_updated'));
2024-08-17 22:40:27 -04:00
} else {
warningMessage = Object.values(data)[0] as string;
addToast('error', $t('adventures.adventure_update_error'));
2024-08-17 22:40:27 -04:00
}
2024-07-16 15:38:07 -04:00
}
2024-07-08 11:44:39 -04:00
}
</script>
2024-08-17 11:12:15 -04:00
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
2024-07-08 11:44:39 -04:00
<dialog id="my_modal_1" class="modal">
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
2024-08-17 11:12:15 -04:00
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
2024-09-30 18:03:10 -04:00
<div class="modal-box w-11/12 max-w-3xl" role="dialog" on:keydown={handleKeydown} tabindex="0">
<h3 class="font-bold text-2xl">
{adventureToEdit ? $t('adventures.edit_adventure') : $t('adventures.new_adventure')}
2024-08-20 12:39:15 -04:00
</h3>
2024-08-17 22:40:27 -04:00
{#if adventure.id === '' || isDetails}
2024-08-17 11:12:15 -04:00
<div class="modal-action items-center">
<form method="post" style="width: 100%;" on:submit={handleSubmit}>
<!-- Grid layout for form fields -->
2024-08-17 14:13:23 -04:00
<!-- <div class="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-3"> -->
2024-09-30 18:03:10 -04: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.basic_information')}
</div>
2024-09-30 18:03:10 -04:00
<div class="collapse-content">
<div>
<label for="name">{$t('adventures.name')}</label><br />
2024-08-17 22:48:57 -04:00
<input
2024-09-30 18:03:10 -04:00
type="text"
id="name"
name="name"
bind:value={adventure.name}
class="input input-bordered w-full"
required
2024-08-17 22:48:57 -04:00
/>
2024-09-30 18:03:10 -04:00
</div>
<div>
<label for="link">{$t('adventures.category')}</label><br />
2024-09-30 18:03:10 -04:00
<select class="select select-bordered w-full max-w-xs" bind:value={adventure.type}>
<option disabled selected>{$t('adventures.select_adventure_category')}</option>
2024-09-30 18:03:10 -04:00
{#each ADVENTURE_TYPES as type}
<option value={type.type}>{type.label}</option>
{/each}
</select>
</div>
<div>
<label for="rating">{$t('adventures.rating')}</label><br />
2024-08-17 22:48:57 -04:00
<input
2024-09-30 18:03:10 -04:00
type="number"
min="0"
max="5"
hidden
bind:value={adventure.rating}
id="rating"
name="rating"
class="input input-bordered w-full max-w-xs mt-1"
2024-08-17 22:48:57 -04:00
/>
2024-09-30 18:03:10 -04:00
<div class="rating -ml-3 mt-1">
<input
type="radio"
name="rating-2"
class="rating-hidden"
checked={Number.isNaN(adventure.rating)}
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
on:click={() => (adventure.rating = 1)}
checked={adventure.rating === 1}
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
on:click={() => (adventure.rating = 2)}
checked={adventure.rating === 2}
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
on:click={() => (adventure.rating = 3)}
checked={adventure.rating === 3}
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
on:click={() => (adventure.rating = 4)}
checked={adventure.rating === 4}
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
on:click={() => (adventure.rating = 5)}
checked={adventure.rating === 5}
/>
{#if adventure.rating}
<button
type="button"
class="btn btn-sm btn-error ml-2"
on:click={() => (adventure.rating = NaN)}
>
{$t('adventures.remove')}
2024-09-30 18:03:10 -04:00
</button>
{/if}
</div>
</div>
<div>
<div>
<label for="link">{$t('adventures.link')}</label><br />
2024-09-30 18:03:10 -04:00
<input
type="text"
id="link"
name="link"
bind:value={adventure.link}
class="input input-bordered w-full"
/>
</div>
</div>
<div>
<label for="description">{$t('adventures.description')}</label><br />
2024-09-30 18:03:10 -04:00
<textarea
id="description"
name="description"
bind:value={adventure.description}
class="textarea textarea-bordered w-full h-32"
></textarea>
<div class="mt-2">
<div class="tooltip tooltip-right" data-tip={$t('adventures.wiki_desc')}>
<button type="button" class="btn btn-neutral" on:click={generateDesc}
>{$t('adventures.generate_desc')}</button
>
</div>
2024-09-30 18:03:10 -04:00
<p class="text-red-500">{wikiError}</p>
</div>
2024-08-17 22:48:57 -04:00
</div>
2024-10-01 09:32:02 -04:00
{#if !collection?.id}
2024-09-09 14:29:50 -04:00
<div>
2024-09-30 18:03:10 -04:00
<div class="form-control flex items-start mt-1">
<label class="label cursor-pointer flex items-start space-x-2">
<span class="label-text">{$t('adventures.public_adventure')}</span>
2024-09-09 14:29:50 -04:00
<input
type="checkbox"
class="toggle toggle-primary"
id="is_public"
name="is_public"
bind:checked={adventure.is_public}
/>
2024-09-30 18:03:10 -04:00
</label>
2024-08-17 22:48:57 -04:00
</div>
</div>
2024-09-09 14:29:50 -04:00
{/if}
2024-08-17 22:48:57 -04:00
</div>
2024-09-30 18:03:10 -04:00
</div>
<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>
2024-09-30 18:03:10 -04:00
<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={adventure.location}
class="input input-bordered w-full"
/>
{#if is_custom_location}
<button
class="btn btn-primary ml-2"
type="button"
on:click={() => (adventure.location = reverseGeocodePlace?.display_name)}
>{$t('adventures.set_to_pin')}</button
>
{/if}
</div>
2024-08-17 14:38:24 -04:00
</div>
2024-09-30 18:03:10 -04:00
<div>
<form on:submit={geocode} class="mt-2">
<input
type="text"
placeholder={$t('adventures.search_for_location')}
2024-09-30 18:03:10 -04:00
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>
2024-09-30 18:03:10 -04:00
<button class="btn btn-neutral -mt-1" type="button" on:click={clearMap}
>{$t('adventures.clear_map')}</button
2024-09-30 18:03:10 -04:00
>
</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>
2024-09-30 18:03:10 -04:00
<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>
2024-09-30 18:03:10 -04:00
{/if}
<!-- </div> -->
<div>
<MapLibre
2024-10-17 15:14:15 -04:00
style="https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json"
2024-09-30 18:03:10 -04:00
class="relative aspect-[9/16] max-h-[70vh] w-full sm:aspect-video sm:max-h-full"
standardControls
>
<!-- MapEvents gives you access to map events even from other components inside the map,
2024-08-17 22:48:57 -04:00
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. -->
2024-09-30 18:03:10 -04:00
<MapEvents on:click={addMarker} />
2024-08-17 22:48:57 -04:00
2024-09-30 18:03:10 -04:00
{#each markers as marker}
<DefaultMarker lngLat={marker.lngLat} />
{/each}
</MapLibre>
{#if reverseGeocodePlace}
<div class="mt-2">
<p>{reverseGeocodePlace.region}, {reverseGeocodePlace.country}</p>
2024-10-31 09:51:04 -04:00
<p>
{reverseGeocodePlace.is_visited
? $t('adventures.visited')
: $t('adventures.not_visited')}
</p>
</div>
{#if !reverseGeocodePlace.is_visited}
<div role="alert" class="alert alert-info mt-2">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
class="h-6 w-6 shrink-0 stroke-current"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
></path>
</svg>
<span
2024-10-31 09:51:04 -04:00
>{$t('adventures.mark_region_as_visited', {
values: {
region: reverseGeocodePlace.region,
country: reverseGeocodePlace.country
}
})}</span
>
<button type="button" class="btn btn-neutral" on:click={markVisited}>
2024-10-31 09:51:04 -04:00
{$t('adventures.mark_visited')}
</button>
</div>
{/if}
{/if}
2024-09-30 18:03:10 -04:00
</div>
2024-08-17 14:38:24 -04:00
</div>
2024-09-30 18:03:10 -04:00
</div>
2024-10-01 09:32:02 -04:00
<div class="collapse collapse-plus bg-base-200 mb-4 overflow-visible">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium">
{$t('adventures.tags')} ({adventure.activity_types?.length || 0})
2024-10-01 09:32:02 -04:00
</div>
<div class="collapse-content">
<input
type="text"
id="activity_types"
name="activity_types"
hidden
bind:value={adventure.activity_types}
class="input input-bordered w-full"
/>
<ActivityComplete bind:activities={adventure.activity_types} />
</div>
</div>
<div class="collapse collapse-plus bg-base-200 mb-4">
<input type="checkbox" />
<div class="collapse-title text-xl font-medium">
{$t('adventures.visits')} ({adventure.visits.length})
2024-10-01 09:32:02 -04:00
</div>
<div class="collapse-content">
<label class="label cursor-pointer flex items-start space-x-2">
{#if adventure.collection && collection && collection.start_date && collection.end_date}
<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)}
/>
{/if}
2024-10-01 09:32:02 -04:00
</label>
<div class="flex gap-2 mb-1">
{#if !constrainDates}
<input
type="date"
class="input input-bordered w-full"
placeholder="Start Date"
bind:value={new_start_date}
on:keydown={(e) => {
if (e.key === 'Enter') {
e.preventDefault();
addNewVisit();
}
}}
/>
<input
type="date"
class="input input-bordered w-full"
placeholder={$t('adventures.end_date')}
bind:value={new_end_date}
on:keydown={(e) => {
if (e.key === 'Enter') {
e.preventDefault();
addNewVisit();
}
}}
/>
{:else}
<input
type="date"
class="input input-bordered w-full"
placeholder={$t('adventures.start_date')}
min={collection?.start_date}
max={collection?.end_date}
bind:value={new_start_date}
on:keydown={(e) => {
if (e.key === 'Enter') {
e.preventDefault();
addNewVisit();
}
}}
/>
<input
type="date"
class="input input-bordered w-full"
placeholder={$t('adventures.end_date')}
bind:value={new_end_date}
min={collection?.start_date}
max={collection?.end_date}
on:keydown={(e) => {
if (e.key === 'Enter') {
e.preventDefault();
addNewVisit();
}
}}
/>
{/if}
2024-10-01 09:32:02 -04:00
</div>
<div class="flex gap-2 mb-1">
<!-- textarea for notes -->
<textarea
class="textarea textarea-bordered w-full"
placeholder={$t('adventures.add_notes')}
2024-10-01 09:32:02 -04:00
bind:value={new_notes}
on:keydown={(e) => {
if (e.key === 'Enter') {
e.preventDefault();
addNewVisit();
}
}}
></textarea>
</div>
<div class="flex gap-2">
<button type="button" class="btn btn-neutral" on:click={addNewVisit}
>{$t('adventures.add')}</button
>
2024-10-01 09:32:02 -04:00
</div>
{#if adventure.visits.length > 0}
<h2 class=" font-bold text-xl mt-2">{$t('adventures.my_visits')}</h2>
2024-10-01 09:32:02 -04:00
{#each adventure.visits as visit}
<div class="flex flex-col gap-2">
<div class="flex gap-2">
<p>
{new Date(visit.start_date).toLocaleDateString(undefined, {
timeZone: 'UTC'
})}
</p>
{#if visit.end_date && visit.end_date !== visit.start_date}
<p>
{new Date(visit.end_date).toLocaleDateString(undefined, {
timeZone: 'UTC'
})}
</p>
{/if}
<div>
<button
type="button"
class="btn btn-sm btn-error"
on:click={() => {
adventure.visits = adventure.visits.filter((v) => v !== visit);
}}
>
{$t('adventures.remove')}
</button>
</div>
2024-10-01 09:32:02 -04:00
</div>
<p class="whitespace-pre-wrap -mt-2 mb-2">{visit.notes}</p>
2024-10-01 09:32:02 -04:00
</div>
{/each}
{/if}
</div>
</div>
2024-08-17 14:13:23 -04:00
2024-09-30 18:03:10 -04:00
<div>
2024-08-17 22:48:57 -04:00
<div class="mt-4">
{#if warningMessage != ''}
<div role="alert" class="alert alert-warning mb-2">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 shrink-0 stroke-current"
fill="none"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
/>
</svg>
<span>{$t('adventures.warning')}: {warningMessage}</span>
</div>
{/if}
<button type="submit" class="btn btn-primary">{$t('adventures.save_next')}</button>
<button type="button" class="btn" on:click={close}>{$t('about.close')}</button>
2024-08-17 22:48:57 -04:00
</div>
2024-08-17 11:12:15 -04:00
</div>
</form>
</div>
{:else}
<p>{$t('adventures.upload_images_here')}</p>
2024-08-17 14:38:24 -04:00
<!-- <p>{adventureToEdit.id}</p> -->
2024-08-17 11:12:15 -04:00
<div class="mb-2">
<label for="image">{$t('adventures.image')} </label><br />
2024-08-17 11:12:15 -04:00
<div class="flex">
<form
method="POST"
2024-08-17 22:40:27 -04:00
action="/adventures?/image"
2024-08-17 11:12:15 -04:00
use:enhance={imageSubmit}
enctype="multipart/form-data"
2024-08-15 21:29:36 -04:00
>
2024-08-17 11:12:15 -04:00
<input
type="file"
name="image"
class="file-input file-input-bordered w-full max-w-xs"
bind:this={fileInput}
accept="image/*"
id="image"
/>
2024-08-17 22:40:27 -04:00
<input type="hidden" name="adventure" value={adventure.id} id="adventure" />
<button class="btn btn-neutral mt-2 mb-2" type="submit"
>{$t('adventures.upload_image')}</button
>
2024-08-17 11:12:15 -04:00
</form>
</div>
2024-08-17 15:18:43 -04:00
<div class="mt-2">
<label for="url">{$t('adventures.url')}</label><br />
2024-08-17 15:18:43 -04:00
<input
type="text"
id="url"
name="url"
bind:value={url}
class="input input-bordered w-full"
/>
<button class="btn btn-neutral mt-2" type="button" on:click={fetchImage}
>{$t('adventures.fetch_image')}</button
2024-08-17 15:18:43 -04:00
>
</div>
<div class="mt-2">
<label for="name">{$t('adventures.wikipedia')}</label><br />
2024-08-17 15:18:43 -04:00
<input
type="text"
id="name"
name="name"
bind:value={imageSearch}
class="input input-bordered w-full"
/>
<button class="btn btn-neutral mt-2" type="button" on:click={fetchWikiImage}
>{$t('adventures.fetch_image')}</button
2024-08-17 15:18:43 -04:00
>
</div>
2024-08-17 16:28:56 -04:00
<div class="divider"></div>
{#if images.length > 0}
<h1 class="font-semibold text-xl">{$t('adventures.my_images')}</h1>
2024-08-17 16:28:56 -04:00
{:else}
<h1 class="font-semibold text-xl">{$t('adventures.no_images')}</h1>
2024-08-17 16:28:56 -04:00
{/if}
<div class="flex flex-wrap gap-2 mt-2">
2024-08-17 11:12:15 -04:00
{#each images as image}
2024-08-17 16:28:56 -04:00
<div class="relative h-32 w-32">
<button
type="button"
class="absolute top-0 left-0 btn btn-error btn-sm z-10"
on:click={() => removeImage(image.id)}
>
X
</button>
<img src={image.image} alt={image.id} class="w-full h-full object-cover" />
</div>
2024-08-17 11:12:15 -04:00
{/each}
2024-08-15 21:29:36 -04:00
</div>
2024-08-17 11:12:15 -04:00
</div>
<div class="mt-4">
<button type="button" class="btn btn-primary" on:click={saveAndClose}
>{$t('about.close')}</button
>
2024-08-17 11:12:15 -04:00
</div>
{/if}
2024-08-18 09:15:59 -04:00
{#if adventure.is_public && adventure.id}
<div class="bg-neutral p-4 mt-2 rounded-md shadow-sm">
<p class=" font-semibold">{$t('adventures.share_adventure')}</p>
2024-08-18 09:15:59 -04:00
<div class="flex items-center justify-between">
<p class="text-card-foreground font-mono">
{window.location.origin}/adventures/{adventure.id}
</p>
<button
type="button"
on:click={() => {
navigator.clipboard.writeText(`${window.location.origin}/adventures/${adventure.id}`);
}}
class="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 h-10 px-4 py-2"
>
{$t('adventures.copy_link')}
2024-08-18 09:15:59 -04:00
</button>
</div>
</div>
{/if}
2024-07-08 11:44:39 -04:00
</div>
</dialog>