mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-05 05:05:17 +02:00
feat: add Strava integration with OAuth flow and activity management
- Implemented IntegrationView for listing integrations including Immich, Google Maps, and Strava. - Created StravaIntegrationView for handling OAuth authorization and token exchange. - Added functionality to refresh Strava access tokens when needed. - Implemented endpoints to fetch user activities from Strava and extract essential information. - Added Strava logo asset and integrated it into the frontend settings page. - Updated settings page to display Strava integration status. - Enhanced location management to include trails with create, edit, and delete functionalities. - Updated types and localization files to support new features.
This commit is contained in:
parent
f5110ed640
commit
9bcada21dd
28 changed files with 991 additions and 72 deletions
1
frontend/src/lib/assets/strava.svg
Normal file
1
frontend/src/lib/assets/strava.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="2500" height="2500"><path d="M0 0h16v16H0z" fill="#fc4c02"/><g fill="#fff" fill-rule="evenodd"><path d="M6.9 8.8l2.5 4.5 2.4-4.5h-1.5l-.9 1.7-1-1.7z" opacity=".6"/><path d="M7.2 2.5l3.1 6.3H4zm0 3.8l1.2 2.5H5.9z"/></g></svg>
|
After Width: | Height: | Size: 291 B |
|
@ -53,7 +53,8 @@
|
|||
icon: '',
|
||||
user: ''
|
||||
},
|
||||
attachments: []
|
||||
attachments: [],
|
||||
trails: []
|
||||
};
|
||||
|
||||
export let locationToEdit: Location | null = null;
|
||||
|
@ -81,7 +82,7 @@
|
|||
icon: '',
|
||||
user: ''
|
||||
},
|
||||
|
||||
trails: locationToEdit?.trails || [],
|
||||
attachments: locationToEdit?.attachments || []
|
||||
};
|
||||
onMount(async () => {
|
||||
|
@ -167,18 +168,24 @@
|
|||
>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z"
|
||||
d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5-5z"
|
||||
clip-rule="evenodd"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
<div
|
||||
<button
|
||||
class="timeline-end timeline-box {step.selected
|
||||
? 'bg-primary text-primary-content'
|
||||
: 'bg-base-200'}"
|
||||
: 'bg-base-200'} hover:bg-primary/80 transition-colors cursor-pointer"
|
||||
on:click={() => {
|
||||
// Reset all steps
|
||||
steps.forEach((s) => (s.selected = false));
|
||||
// Select clicked step
|
||||
steps[index].selected = true;
|
||||
}}
|
||||
>
|
||||
{step.name}
|
||||
</div>
|
||||
</button>
|
||||
{#if index < steps.length - 1}
|
||||
<hr />
|
||||
{/if}
|
||||
|
@ -263,6 +270,7 @@
|
|||
<LocationMedia
|
||||
bind:images={location.images}
|
||||
bind:attachments={location.attachments}
|
||||
bind:trails={location.trails}
|
||||
on:back={() => {
|
||||
steps[2].selected = false;
|
||||
steps[1].selected = true;
|
||||
|
|
|
@ -397,7 +397,7 @@
|
|||
});
|
||||
</script>
|
||||
|
||||
<div class="min-h-screen bg-gradient-to-br from-base-200/30 via-base-100 to-primary/5 p-6">
|
||||
<div class="min-h-screen bg-gradient-to-br from-base-200/30 via-base-100 to-primary/5 pl-6 pr-6">
|
||||
<div class="max-w-full mx-auto space-y-6">
|
||||
<!-- Basic Information Section -->
|
||||
<div class="card bg-base-100 border border-base-300 shadow-lg">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import type { Attachment, ContentImage } from '$lib/types';
|
||||
import type { Attachment, ContentImage, Trail } from '$lib/types';
|
||||
import { createEventDispatcher, onMount } from 'svelte';
|
||||
import { t } from 'svelte-i18n';
|
||||
import { deserialize } from '$app/forms';
|
||||
|
@ -18,6 +18,8 @@
|
|||
import ImageIcon from '~icons/mdi/image';
|
||||
import AttachmentIcon from '~icons/mdi/attachment';
|
||||
import SwapHorizontalVariantIcon from '~icons/mdi/swap-horizontal-variant';
|
||||
import LinkIcon from '~icons/mdi/link';
|
||||
import PlusIcon from '~icons/mdi/plus';
|
||||
|
||||
import { addToast } from '$lib/toasts';
|
||||
import ImmichSelect from '../ImmichSelect.svelte';
|
||||
|
@ -25,6 +27,7 @@
|
|||
// Props
|
||||
export let images: ContentImage[] = [];
|
||||
export let attachments: Attachment[] = [];
|
||||
export let trails: Trail[] = [];
|
||||
export let itemId: string = '';
|
||||
|
||||
// Component state
|
||||
|
@ -46,6 +49,18 @@
|
|||
let attachmentToEdit: Attachment | null = null;
|
||||
let editingAttachmentName: string = '';
|
||||
|
||||
// Trail state
|
||||
let trailName: string = '';
|
||||
let trailLink: string = '';
|
||||
let trailWandererId: string = '';
|
||||
let trailError: string = '';
|
||||
let isTrailLoading: boolean = false;
|
||||
let trailToEdit: Trail | null = null;
|
||||
let editingTrailName: string = '';
|
||||
let editingTrailLink: string = '';
|
||||
let editingTrailWandererId: string = '';
|
||||
let showAddTrailForm: boolean = false;
|
||||
|
||||
// Allowed file types for attachments
|
||||
const allowedFileTypes = [
|
||||
'.gpx',
|
||||
|
@ -86,6 +101,10 @@
|
|||
attachments = [...attachments, newAttachment];
|
||||
}
|
||||
|
||||
function updateTrailsList(newTrail: Trail) {
|
||||
trails = [...trails, newTrail];
|
||||
}
|
||||
|
||||
// API calls
|
||||
async function uploadImageToServer(file: File) {
|
||||
const formData = new FormData();
|
||||
|
@ -376,6 +395,160 @@
|
|||
}
|
||||
}
|
||||
|
||||
// Trail event handlers
|
||||
function validateTrailForm(): boolean {
|
||||
if (!trailName.trim()) {
|
||||
trailError = 'Trail name is required';
|
||||
return false;
|
||||
}
|
||||
|
||||
const hasLink = trailLink.trim() !== '';
|
||||
const hasWandererId = trailWandererId.trim() !== '';
|
||||
|
||||
if (hasLink && hasWandererId) {
|
||||
trailError = 'Cannot have both a link and a Wanderer ID. Provide only one.';
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!hasLink && !hasWandererId) {
|
||||
trailError = 'You must provide either a link or a Wanderer ID.';
|
||||
return false;
|
||||
}
|
||||
|
||||
trailError = '';
|
||||
return true;
|
||||
}
|
||||
|
||||
async function createTrail() {
|
||||
if (!validateTrailForm()) return;
|
||||
|
||||
isTrailLoading = true;
|
||||
|
||||
const trailData = {
|
||||
name: trailName.trim(),
|
||||
location: itemId,
|
||||
link: trailLink.trim() || null,
|
||||
wanderer_id: trailWandererId.trim() || null
|
||||
};
|
||||
|
||||
try {
|
||||
const res = await fetch('/api/trails/', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify(trailData)
|
||||
});
|
||||
|
||||
if (res.ok) {
|
||||
const newTrail = await res.json();
|
||||
updateTrailsList(newTrail);
|
||||
addToast('success', 'Trail created successfully');
|
||||
resetTrailForm();
|
||||
} else {
|
||||
const errorData = await res.json();
|
||||
throw new Error(errorData.message || 'Failed to create trail');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Trail creation error:', error);
|
||||
trailError = error instanceof Error ? error.message : 'Failed to create trail';
|
||||
addToast('error', 'Failed to create trail');
|
||||
} finally {
|
||||
isTrailLoading = false;
|
||||
}
|
||||
}
|
||||
|
||||
function resetTrailForm() {
|
||||
trailName = '';
|
||||
trailLink = '';
|
||||
trailWandererId = '';
|
||||
trailError = '';
|
||||
showAddTrailForm = false;
|
||||
}
|
||||
|
||||
function startEditingTrail(trail: Trail) {
|
||||
trailToEdit = trail;
|
||||
editingTrailName = trail.name;
|
||||
editingTrailLink = trail.link || '';
|
||||
editingTrailWandererId = trail.wanderer_id || '';
|
||||
}
|
||||
|
||||
function cancelEditingTrail() {
|
||||
trailToEdit = null;
|
||||
editingTrailName = '';
|
||||
editingTrailLink = '';
|
||||
editingTrailWandererId = '';
|
||||
}
|
||||
|
||||
function validateEditTrailForm(): boolean {
|
||||
if (!editingTrailName.trim()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const hasLink = editingTrailLink.trim() !== '';
|
||||
const hasWandererId = editingTrailWandererId.trim() !== '';
|
||||
|
||||
if (hasLink && hasWandererId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!hasLink && !hasWandererId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
async function saveTrailEdit() {
|
||||
if (!trailToEdit || !validateEditTrailForm()) return;
|
||||
|
||||
const trailData = {
|
||||
name: editingTrailName.trim(),
|
||||
link: editingTrailLink.trim() || null,
|
||||
wanderer_id: editingTrailWandererId.trim() || null
|
||||
};
|
||||
|
||||
try {
|
||||
const res = await fetch(`/api/trails/${trailToEdit.id}`, {
|
||||
method: 'PATCH',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify(trailData)
|
||||
});
|
||||
|
||||
if (res.ok) {
|
||||
const updatedTrail = await res.json();
|
||||
trails = trails.map((trail) => (trail.id === trailToEdit!.id ? updatedTrail : trail));
|
||||
addToast('success', 'Trail updated successfully');
|
||||
cancelEditingTrail();
|
||||
} else {
|
||||
throw new Error('Failed to update trail');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error updating trail:', error);
|
||||
addToast('error', 'Failed to update trail');
|
||||
}
|
||||
}
|
||||
|
||||
async function removeTrail(trailId: string) {
|
||||
try {
|
||||
const res = await fetch(`/api/trails/${trailId}`, {
|
||||
method: 'DELETE'
|
||||
});
|
||||
|
||||
if (res.status === 204) {
|
||||
trails = trails.filter((trail) => trail.id !== trailId);
|
||||
addToast('success', 'Trail removed successfully');
|
||||
} else {
|
||||
throw new Error('Failed to remove trail');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error removing trail:', error);
|
||||
addToast('error', 'Failed to remove trail');
|
||||
}
|
||||
}
|
||||
|
||||
// Navigation handlers
|
||||
function handleBack() {
|
||||
dispatch('back');
|
||||
|
@ -629,17 +802,6 @@
|
|||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- File Type Info -->
|
||||
<div class="alert alert-info">
|
||||
<InfoIcon class="h-5 w-5" />
|
||||
<div>
|
||||
<div class="text-sm font-medium">Supported file types:</div>
|
||||
<div class="text-xs text-base-content/70 mt-1">
|
||||
GPX, KML, PDF, DOC, TXT, JSON, CSV, XLSX and more
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Attachment Gallery -->
|
||||
|
@ -727,21 +889,208 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Trails Managment -->
|
||||
<!-- Trails Management -->
|
||||
<div class="card bg-base-100 border border-base-300 shadow-lg">
|
||||
<div class="card-body p-6">
|
||||
<div class="flex items-center gap-3 mb-6">
|
||||
<div class="p-2 bg-accent/10 rounded-lg">
|
||||
<SwapHorizontalVariantIcon class="w-5 h-5 text-accent" />
|
||||
<div class="flex items-center justify-between mb-6">
|
||||
<div class="flex items-center gap-3">
|
||||
<div class="p-2 bg-accent/10 rounded-lg">
|
||||
<SwapHorizontalVariantIcon class="w-5 h-5 text-accent" />
|
||||
</div>
|
||||
<h2 class="text-xl font-bold">Trails Management</h2>
|
||||
</div>
|
||||
<h2 class="text-xl font-bold">Trails Management</h2>
|
||||
<button
|
||||
class="btn btn-accent btn-sm gap-2"
|
||||
on:click={() => (showAddTrailForm = !showAddTrailForm)}
|
||||
>
|
||||
<PlusIcon class="w-4 h-4" />
|
||||
Add Trail
|
||||
</button>
|
||||
</div>
|
||||
<p class="text-base-content/70 mb-4">
|
||||
You can manage trails associated with this location in the Trails section.
|
||||
</p>
|
||||
<p class="text-sm text-base-content/50">
|
||||
Coming soon: Create, edit, and delete trails directly from this section.
|
||||
</p>
|
||||
|
||||
<div class="text-sm text-base-content/60 mb-4">
|
||||
Manage trails associated with this location. Trails can be linked to external services
|
||||
like AllTrails or referenced by Wanderer ID.
|
||||
</div>
|
||||
|
||||
<!-- Add Trail Form -->
|
||||
{#if showAddTrailForm}
|
||||
<div class="bg-accent/5 p-4 rounded-lg border border-accent/20 mb-6">
|
||||
<h4 class="font-medium mb-3 text-accent">Add New Trail</h4>
|
||||
<div class="grid gap-3">
|
||||
<input
|
||||
type="text"
|
||||
bind:value={trailName}
|
||||
class="input input-bordered"
|
||||
placeholder="Trail name"
|
||||
disabled={isTrailLoading}
|
||||
/>
|
||||
<input
|
||||
type="url"
|
||||
bind:value={trailLink}
|
||||
class="input input-bordered"
|
||||
placeholder="External link (e.g., AllTrails, Trailforks)"
|
||||
disabled={isTrailLoading || trailWandererId.trim() !== ''}
|
||||
/>
|
||||
<div class="text-center text-sm text-base-content/60">OR</div>
|
||||
<input
|
||||
type="text"
|
||||
bind:value={trailWandererId}
|
||||
class="input input-bordered"
|
||||
placeholder="Wanderer Trail ID"
|
||||
disabled={isTrailLoading || trailLink.trim() !== ''}
|
||||
/>
|
||||
{#if trailError}
|
||||
<div class="alert alert-error py-2">
|
||||
<span class="text-sm">{trailError}</span>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="flex gap-2 justify-end">
|
||||
<button
|
||||
class="btn btn-ghost btn-sm"
|
||||
disabled={isTrailLoading}
|
||||
on:click={resetTrailForm}
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-accent btn-sm"
|
||||
class:loading={isTrailLoading}
|
||||
disabled={isTrailLoading ||
|
||||
!trailName.trim() ||
|
||||
(!trailLink.trim() && !trailWandererId.trim())}
|
||||
on:click={createTrail}
|
||||
>
|
||||
Create Trail
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Trails Gallery -->
|
||||
{#if trails.length > 0}
|
||||
<div class="divider">Current Trails</div>
|
||||
<div class="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{#each trails as trail (trail.id)}
|
||||
<div class="relative group">
|
||||
{#if trailToEdit?.id === trail.id}
|
||||
<!-- Edit Mode -->
|
||||
<div class="bg-warning/10 p-4 rounded-lg border border-warning/30">
|
||||
<div class="flex items-center gap-2 mb-3">
|
||||
<EditIcon class="w-4 h-4 text-warning" />
|
||||
<span class="text-sm font-medium text-warning">Editing Trail</span>
|
||||
</div>
|
||||
<div class="grid gap-3">
|
||||
<input
|
||||
type="text"
|
||||
bind:value={editingTrailName}
|
||||
class="input input-bordered input-sm"
|
||||
placeholder="Trail name"
|
||||
/>
|
||||
<input
|
||||
type="url"
|
||||
bind:value={editingTrailLink}
|
||||
class="input input-bordered input-sm"
|
||||
placeholder="External link"
|
||||
disabled={editingTrailWandererId.trim() !== ''}
|
||||
/>
|
||||
<div class="text-center text-xs text-base-content/60">OR</div>
|
||||
<input
|
||||
type="text"
|
||||
bind:value={editingTrailWandererId}
|
||||
class="input input-bordered input-sm"
|
||||
placeholder="Wanderer Trail ID"
|
||||
disabled={editingTrailLink.trim() !== ''}
|
||||
/>
|
||||
</div>
|
||||
<div class="flex gap-2 mt-3">
|
||||
<button
|
||||
class="btn btn-success btn-xs flex-1"
|
||||
disabled={!validateEditTrailForm()}
|
||||
on:click={saveTrailEdit}
|
||||
>
|
||||
<CheckIcon class="w-3 h-3" />
|
||||
Save
|
||||
</button>
|
||||
<button class="btn btn-ghost btn-xs flex-1" on:click={cancelEditingTrail}>
|
||||
<CloseIcon class="w-3 h-3" />
|
||||
Cancel
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{:else}
|
||||
<!-- Normal Display -->
|
||||
<div
|
||||
class="bg-base-50 p-4 rounded-lg border border-base-200 hover:border-base-300 transition-colors"
|
||||
>
|
||||
<div class="flex items-center gap-3 mb-3">
|
||||
<div class="p-2 bg-accent/10 rounded">
|
||||
{#if trail.wanderer_id}
|
||||
<Star class="w-4 h-4 text-accent" />
|
||||
{:else}
|
||||
<LinkIcon class="w-4 h-4 text-accent" />
|
||||
{/if}
|
||||
</div>
|
||||
<div class="flex-1 min-w-0">
|
||||
<div class="font-medium truncate">{trail.name}</div>
|
||||
<div class="text-xs text-accent/70 mt-1">
|
||||
{trail.provider || 'External'}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{#if trail.link}
|
||||
<a
|
||||
href={trail.link}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="text-xs text-accent hover:text-accent-focus mb-3 break-all block underline"
|
||||
>
|
||||
{trail.link}
|
||||
</a>
|
||||
{:else if trail.wanderer_id}
|
||||
<div class="text-xs text-base-content/60 mb-3 break-all">
|
||||
Wanderer ID: {trail.wanderer_id}
|
||||
</div>
|
||||
{:else}
|
||||
<div class="text-xs text-base-content/40 mb-3 italic">
|
||||
No external link available
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Trail Controls -->
|
||||
<div class="flex gap-2 justify-end">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-warning btn-xs btn-square tooltip tooltip-top"
|
||||
data-tip="Edit Trail"
|
||||
on:click={() => startEditingTrail(trail)}
|
||||
>
|
||||
<EditIcon class="w-3 h-3" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-error btn-xs btn-square tooltip tooltip-top"
|
||||
data-tip="Remove Trail"
|
||||
on:click={() => removeTrail(trail.id)}
|
||||
>
|
||||
<TrashIcon class="w-3 h-3" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
{:else}
|
||||
<div class="bg-base-200/50 rounded-lg p-8 text-center">
|
||||
<div class="text-base-content/60 mb-2">No trails added yet</div>
|
||||
<div class="text-sm text-base-content/40">
|
||||
Add your first trail using the button above
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -50,6 +50,7 @@ export type Location = {
|
|||
city?: City | null;
|
||||
region?: Region | null;
|
||||
country?: Country | null;
|
||||
trails: Trail[];
|
||||
};
|
||||
|
||||
export type AdditionalLocation = Location & {
|
||||
|
@ -312,4 +313,18 @@ export type CollectionInvite = {
|
|||
collection: string; // UUID of the collection
|
||||
name: string; // Name of the collection
|
||||
created_at: string; // ISO 8601 date string
|
||||
collection_owner_username: string; // Username of the collection owner
|
||||
collection_user_first_name: string; // First name of the collection user
|
||||
collection_user_last_name: string; // Last name of the collection user
|
||||
};
|
||||
|
||||
export type Trail = {
|
||||
id: string;
|
||||
user: string;
|
||||
name: string;
|
||||
location: string; // UUID of the location
|
||||
created_at: string; // ISO 8601 date string
|
||||
link?: string | null; // Optional link to the trail
|
||||
wanderer_id?: string | null; // Optional ID for integration with Wanderer
|
||||
provider: string; // Provider of the trail data, e.g., 'wanderer', 'external'
|
||||
};
|
||||
|
|
|
@ -316,7 +316,9 @@
|
|||
"leave_collection": "Leave Collection",
|
||||
"leave": "Leave",
|
||||
"leave_collection_warning": "Are you sure you want to leave this collection? Any locations you added will be unlinked and remain in your account.",
|
||||
"loading_collections": "Loading collections..."
|
||||
"loading_collections": "Loading collections...",
|
||||
"quick_start": "Quick Start",
|
||||
"details": "Details"
|
||||
},
|
||||
"worldtravel": {
|
||||
"country_list": "Country List",
|
||||
|
@ -782,6 +784,7 @@
|
|||
"decline": "Decline",
|
||||
"accept": "Accept",
|
||||
"invited_on": "Invited on",
|
||||
"no_invites_desc": "Make sure your profile is public so users can invite you."
|
||||
"no_invites_desc": "Make sure your profile is public so users can invite you.",
|
||||
"by": "by"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -415,6 +415,10 @@
|
|||
<p class="text-xs text-base-content/50">
|
||||
{$t('invites.invited_on')}
|
||||
{formatDate(invite.created_at)}
|
||||
{$t('invites.by')}
|
||||
{invite.collection_owner_username || ''}
|
||||
({invite.collection_user_first_name || ''}
|
||||
{invite.collection_user_last_name || ''})
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -80,6 +80,7 @@ export const load: PageServerLoad = async (event) => {
|
|||
}
|
||||
let integrations = await integrationsFetch.json();
|
||||
let googleMapsEnabled = integrations.google_maps as boolean;
|
||||
let stravaEnabled = integrations.strava as boolean;
|
||||
|
||||
let publicUrlFetch = await fetch(`${endpoint}/public-url/`);
|
||||
let publicUrl = '';
|
||||
|
@ -98,7 +99,8 @@ export const load: PageServerLoad = async (event) => {
|
|||
immichIntegration,
|
||||
publicUrl,
|
||||
socialProviders,
|
||||
googleMapsEnabled
|
||||
googleMapsEnabled,
|
||||
stravaEnabled
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
import { appTitle, appVersion, copyrightYear } from '$lib/config.js';
|
||||
import ImmichLogo from '$lib/assets/immich.svg';
|
||||
import GoogleMapsLogo from '$lib/assets/google_maps.svg';
|
||||
import StravaLogo from '$lib/assets/strava.svg';
|
||||
|
||||
export let data;
|
||||
console.log(data);
|
||||
|
@ -24,6 +25,7 @@
|
|||
let public_url: string = data.props.publicUrl;
|
||||
let immichIntegration = data.props.immichIntegration;
|
||||
let googleMapsEnabled = data.props.googleMapsEnabled;
|
||||
let stravaEnabled = data.props.stravaEnabled;
|
||||
let activeSection: string = 'profile';
|
||||
let acknowledgeRestoreOverride: boolean = false;
|
||||
|
||||
|
@ -896,7 +898,7 @@
|
|||
</div>
|
||||
|
||||
<!-- Google maps integration - displayt only if its connected -->
|
||||
<div class="p-6 bg-base-200 rounded-xl">
|
||||
<div class="p-6 bg-base-200 rounded-xl mb-4">
|
||||
<div class="flex items-center gap-4 mb-4">
|
||||
<img src={GoogleMapsLogo} alt="Google Maps" class="w-8 h-8" />
|
||||
<div>
|
||||
|
@ -922,6 +924,33 @@
|
|||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="p-6 bg-base-200 rounded-xl">
|
||||
<div class="flex items-center gap-4 mb-4">
|
||||
<img src={StravaLogo} alt="Strava" class="w-8 h-8 rounded-md" />
|
||||
<div>
|
||||
<h3 class="text-xl font-bold">Strava</h3>
|
||||
<p class="text-sm text-base-content/70">
|
||||
{$t('google_maps.google_maps_integration_desc')}
|
||||
</p>
|
||||
</div>
|
||||
{#if stravaEnabled}
|
||||
<div class="badge badge-success ml-auto">{$t('settings.connected')}</div>
|
||||
{:else}
|
||||
<div class="badge badge-error ml-auto">{$t('settings.disconnected')}</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="mt-4 p-4 bg-info/10 rounded-lg">
|
||||
<p class="text-sm">
|
||||
📖 {$t('immich.need_help')}
|
||||
<a
|
||||
class="link link-primary"
|
||||
href="https://adventurelog.app/docs/configuration/google_maps_integration.html"
|
||||
target="_blank">{$t('navbar.documentation')}</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue