fix(frontend): clean docs links and improve settings clarity

This commit is contained in:
2026-03-08 17:21:51 +00:00
parent 2fd11dbd26
commit c5be09bcb9
8 changed files with 146 additions and 81 deletions

View File

@@ -200,7 +200,7 @@
</a> </a>
<!-- documentation --> <!-- documentation -->
<a <a
href="https://voyage.app" href="https://github.com/Alex-Wiesner/voyage"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
class="btn btn-outline btn-sm" class="btn btn-outline btn-sm"

View File

@@ -6,7 +6,6 @@
import DotsHorizontal from '~icons/mdi/dots-horizontal'; import DotsHorizontal from '~icons/mdi/dots-horizontal';
import Calendar from '~icons/mdi/calendar'; import Calendar from '~icons/mdi/calendar';
import HelpCircle from '~icons/mdi/help-circle';
import AboutModal from './AboutModal.svelte'; import AboutModal from './AboutModal.svelte';
import AccountMultiple from '~icons/mdi/account-multiple'; import AccountMultiple from '~icons/mdi/account-multiple';
import MapMarker from '~icons/mdi/map-marker'; import MapMarker from '~icons/mdi/map-marker';
@@ -122,12 +121,6 @@
{ path: '/locations', icon: MapMarker, label: 'locations.locations' }, { path: '/locations', icon: MapMarker, label: 'locations.locations' },
{ path: '/collections', icon: FormatListBulletedSquare, label: 'navbar.collections' }, { path: '/collections', icon: FormatListBulletedSquare, label: 'navbar.collections' },
{ path: '/invites', icon: AccountMultiple, label: 'invites.title' }, { path: '/invites', icon: AccountMultiple, label: 'invites.title' },
{
path: 'https://voyage.app/docs/usage/usage.html',
icon: HelpCircle,
label: 'navbar.documentation',
external: true
},
{ path: '/worldtravel', icon: Earth, label: 'navbar.worldtravel' }, { path: '/worldtravel', icon: Earth, label: 'navbar.worldtravel' },
{ path: '/map', icon: MapIcon, label: 'navbar.map' }, { path: '/map', icon: MapIcon, label: 'navbar.map' },
{ path: '/calendar', icon: Calendar, label: 'navbar.calendar' }, { path: '/calendar', icon: Calendar, label: 'navbar.calendar' },
@@ -306,12 +299,14 @@
> >
{$t('navbar.about')} {$t('navbar.about')}
</button> </button>
<button <a
href="https://github.com/Alex-Wiesner/voyage"
target="_blank"
rel="noopener noreferrer"
class="btn btn-ghost w-full justify-start gap-3" class="btn btn-ghost w-full justify-start gap-3"
on:click={() => (window.location.href = 'https://voyage.app')}
> >
{$t('navbar.documentation')} {$t('navbar.documentation')}
</button> </a>
<button <button
class="btn btn-ghost w-full justify-start gap-3" class="btn btn-ghost w-full justify-start gap-3"
on:click={() => (window.location.href = 'https://discord.gg/wRbQ9Egr8C')} on:click={() => (window.location.href = 'https://discord.gg/wRbQ9Egr8C')}

View File

@@ -1,7 +1,6 @@
<script lang="ts"> <script lang="ts">
import { goto } from '$app/navigation'; import { goto } from '$app/navigation';
import type { Country } from '$lib/types'; import type { Country } from '$lib/types';
import { createEventDispatcher } from 'svelte';
import { t } from 'svelte-i18n'; import { t } from 'svelte-i18n';
import MapMarkerStar from '~icons/mdi/map-marker-star'; import MapMarkerStar from '~icons/mdi/map-marker-star';
@@ -9,6 +8,50 @@
export let country: Country; export let country: Country;
type FlagDisplayState = 'primary' | 'cdn' | 'placeholder';
let flagState: FlagDisplayState = 'placeholder';
let lastFlagKey = '';
$: normalizedCountryCode = country.country_code.trim().toLowerCase();
$: primaryFlagUrl = country.flag_url.trim() || null;
$: cdnFlagUrl =
normalizedCountryCode.length === 2
? `https://flagcdn.com/w320/${normalizedCountryCode}.png`
: null;
$: currentFlagSrc =
flagState === 'primary' ? primaryFlagUrl : flagState === 'cdn' ? cdnFlagUrl : null;
$: showFlagImage = Boolean(currentFlagSrc);
function getInitialFlagState(): FlagDisplayState {
if (primaryFlagUrl) {
return 'primary';
}
if (cdnFlagUrl) {
return 'cdn';
}
return 'placeholder';
}
$: {
const flagKey = `${primaryFlagUrl ?? ''}|${cdnFlagUrl ?? ''}`;
if (flagKey !== lastFlagKey) {
lastFlagKey = flagKey;
flagState = getInitialFlagState();
}
}
function handleFlagError() {
if (flagState === 'primary' && cdnFlagUrl && cdnFlagUrl !== primaryFlagUrl) {
flagState = 'cdn';
return;
}
flagState = 'placeholder';
}
async function nav() { async function nav() {
goto(`/worldtravel/${country.country_code}`); goto(`/worldtravel/${country.country_code}`);
} }
@@ -18,8 +61,23 @@
class="card w-full max-w-md bg-base-300 text-base-content shadow-2xl hover:shadow-3xl transition-all duration-300 border border-base-300 hover:border-primary/20 group overflow-hidden" class="card w-full max-w-md bg-base-300 text-base-content shadow-2xl hover:shadow-3xl transition-all duration-300 border border-base-300 hover:border-primary/20 group overflow-hidden"
> >
<!-- Flag Image --> <!-- Flag Image -->
<figure> <figure class="w-full h-48 bg-base-200 overflow-hidden">
<img src={country.flag_url} alt={`Flag of ${country.name}`} class="w-full h-48 object-cover" /> {#if showFlagImage}
<img
src={currentFlagSrc}
alt={`Flag of ${country.name}`}
class="w-full h-full object-cover"
on:error={handleFlagError}
/>
{:else}
<div
class="w-full h-full flex flex-col items-center justify-center gap-1 text-base-content/70"
aria-label={`Flag unavailable for ${country.name}`}
>
<span class="text-3xl" aria-hidden="true">🏳️</span>
<span class="text-sm font-medium">{$t('country.flag_unavailable')}</span>
</div>
{/if}
</figure> </figure>
<!-- Content --> <!-- Content -->
@@ -64,11 +122,3 @@
</div> </div>
</div> </div>
</div> </div>
<style>
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>

View File

@@ -589,6 +589,9 @@
"show_more": "Mehr anzeigen", "show_more": "Mehr anzeigen",
"all_locations_visited": "Alle Orte besucht!" "all_locations_visited": "Alle Orte besucht!"
}, },
"country": {
"flag_unavailable": "Flagge nicht verfügbar"
},
"settings": { "settings": {
"account_settings": "Benutzerkontoeinstellungen", "account_settings": "Benutzerkontoeinstellungen",
"email_change": "E-Mail ändern", "email_change": "E-Mail ändern",
@@ -745,6 +748,7 @@
"no_api_keys_saved": "Noch keine API-Schlüssel gespeichert.", "no_api_keys_saved": "Noch keine API-Schlüssel gespeichert.",
"add_api_key": "API-Schlüssel hinzufügen", "add_api_key": "API-Schlüssel hinzufügen",
"provider": "Anbieter", "provider": "Anbieter",
"api_key_provider_google_places": "Google Places API",
"api_key_value": "API-Schlüssel", "api_key_value": "API-Schlüssel",
"api_key_value_placeholder": "Geben Sie Ihren API-Schlüssel ein", "api_key_value_placeholder": "Geben Sie Ihren API-Schlüssel ein",
"api_key_write_only_hint": "Aus Sicherheitsgründen ist Ihr Klartextschlüssel nur zum Schreiben verfügbar und wird nach dem Speichern nicht mehr angezeigt.", "api_key_write_only_hint": "Aus Sicherheitsgründen ist Ihr Klartextschlüssel nur zum Schreiben verfügbar und wird nach dem Speichern nicht mehr angezeigt.",

View File

@@ -561,6 +561,9 @@
"about_region": "About Region", "about_region": "About Region",
"all_locations_visited": "All locations visited!" "all_locations_visited": "All locations visited!"
}, },
"country": {
"flag_unavailable": "Flag unavailable"
},
"auth": { "auth": {
"username": "Username", "username": "Username",
"password": "Password", "password": "Password",
@@ -742,6 +745,7 @@
"no_api_keys_saved": "No API keys saved yet.", "no_api_keys_saved": "No API keys saved yet.",
"add_api_key": "Add API Key", "add_api_key": "Add API Key",
"provider": "Provider", "provider": "Provider",
"api_key_provider_google_places": "Google Places API",
"api_key_value": "API Key", "api_key_value": "API Key",
"api_key_value_placeholder": "Enter your API key", "api_key_value_placeholder": "Enter your API key",
"api_key_write_only_hint": "For security, your plaintext key is write-only and is never shown after saving.", "api_key_write_only_hint": "For security, your plaintext key is write-only and is never shown after saving.",

View File

@@ -48,7 +48,11 @@
<div class="alert alert-warning mt-4"> <div class="alert alert-warning mt-4">
<p class="text-muted-foreground"> <p class="text-muted-foreground">
<strong>Administrators:</strong> Please check your setup using the <strong>Administrators:</strong> Please check your setup using the
<a class="link link-primary" target="_blank" href="https://voyage.app" <a
class="link link-primary"
target="_blank"
rel="noopener noreferrer"
href="https://github.com/Alex-Wiesner/voyage"
>documentation</a >documentation</a
>. >.
</p> </p>

View File

@@ -1244,13 +1244,14 @@
<div class="mt-4 p-4 bg-info/10 rounded-lg"> <div class="mt-4 p-4 bg-info/10 rounded-lg">
<p class="text-sm"> <p class="text-sm">
📖 {$t('immich.need_help')} 📖 {$t('immich.need_help')}
<a <a
class="link link-primary" class="link link-primary"
href="https://voyage.app/docs/configuration/immich_integration.html" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/configuration/immich_integration.md"
target="_blank">{$t('navbar.documentation')}</a target="_blank"
> rel="noopener noreferrer">{$t('navbar.documentation')}</a
</p> >
</div> </p>
</div>
</div> </div>
<!-- Google maps integration - displayt only if its connected --> <!-- Google maps integration - displayt only if its connected -->
@@ -1274,13 +1275,14 @@
{#if user.is_staff} {#if user.is_staff}
<p class="text-sm"> <p class="text-sm">
📖 {$t('immich.need_help')} 📖 {$t('immich.need_help')}
<a <a
class="link link-primary" class="link link-primary"
href="https://voyage.app/docs/configuration/google_maps_integration.html" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/configuration/google_maps_integration.md"
target="_blank">{$t('navbar.documentation')}</a target="_blank"
> rel="noopener noreferrer">{$t('navbar.documentation')}</a
</p> >
{:else if !googleMapsEnabled} </p>
{:else if !googleMapsEnabled}
<p class="text-sm"> <p class="text-sm">
{$t('google_maps.google_maps_integration_desc_no_staff')} {$t('google_maps.google_maps_integration_desc_no_staff')}
</p> </p>
@@ -1337,13 +1339,14 @@
{#if user.is_staff} {#if user.is_staff}
<p class="text-sm"> <p class="text-sm">
📖 {$t('immich.need_help')} 📖 {$t('immich.need_help')}
<a <a
class="link link-primary" class="link link-primary"
href="https://voyage.app/docs/configuration/strava_integration.html" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/configuration/strava_integration.md"
target="_blank">{$t('navbar.documentation')}</a target="_blank"
> rel="noopener noreferrer">{$t('navbar.documentation')}</a
</p> >
{:else if !stravaGlobalEnabled} </p>
{:else if !stravaGlobalEnabled}
<p class="text-sm"> <p class="text-sm">
{$t('google_maps.google_maps_integration_desc_no_staff')} {$t('google_maps.google_maps_integration_desc_no_staff')}
</p> </p>
@@ -1451,13 +1454,14 @@
<div class="mt-4 p-4 bg-info/10 rounded-lg"> <div class="mt-4 p-4 bg-info/10 rounded-lg">
<p class="text-sm"> <p class="text-sm">
📖 {$t('immich.need_help')} 📖 {$t('immich.need_help')}
<a <a
class="link link-primary" class="link link-primary"
href="https://voyage.app/docs/configuration/wanderer_integration.html" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/configuration/wanderer_integration.md"
target="_blank">{$t('navbar.documentation')}</a target="_blank"
> rel="noopener noreferrer">{$t('navbar.documentation')}</a
</p> >
</div> </p>
</div>
{/if} {/if}
</div> </div>
</div> </div>
@@ -1524,7 +1528,7 @@
> >
<a <a
class="link link-primary" class="link link-primary"
href="https://voyage.app/docs/usage/usage.html" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/guides/travel_agent.md"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
>{$t('settings.travel_agent_help_setup_guide')}</a >{$t('settings.travel_agent_help_setup_guide')}</a
@@ -1615,9 +1619,9 @@
class="select select-bordered select-primary w-full" class="select select-bordered select-primary w-full"
bind:value={newApiKeyProvider} bind:value={newApiKeyProvider}
> >
<option value="google_maps">Google Maps</option> <option value="google_maps">{$t('settings.api_key_provider_google_places')}</option>
</select> </select>
</div> </div>
<div class="form-control"> <div class="form-control">
<label class="label" for="api-key-value"> <label class="label" for="api-key-value">
<span class="label-text font-medium">{$t('settings.api_key_value')}</span> <span class="label-text font-medium">{$t('settings.api_key_value')}</span>
@@ -1944,13 +1948,14 @@
</svg> </svg>
<div> <div>
<span>{$t('settings.social_auth_desc_2')}</span> <span>{$t('settings.social_auth_desc_2')}</span>
<a <a
href="https://voyage.app/docs/configuration/social_auth.html" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/configuration/social_auth.md"
class="link link-neutral font-medium" class="link link-neutral font-medium"
target="_blank">{$t('settings.documentation_link')}</a target="_blank"
> rel="noopener noreferrer">{$t('settings.documentation_link')}</a
</div> >
</div> </div>
</div>
</div> </div>
<!-- Debug Information --> <!-- Debug Information -->
@@ -2015,19 +2020,21 @@
Sean Morley. {$t('settings.all_rights_reserved')} Sean Morley. {$t('settings.all_rights_reserved')}
</p> </p>
<div class="flex justify-center gap-3 mt-2"> <div class="flex justify-center gap-3 mt-2">
<a <a
href="https://github.com/Alex-Wiesner/voyage" href="https://github.com/Alex-Wiesner/voyage"
target="_blank" target="_blank"
class="link link-primary text-sm" rel="noopener noreferrer"
> class="link link-primary text-sm"
GitHub >
GitHub
</a> </a>
<a <a
href="https://github.com/Alex-Wiesner/voyage/blob/main/LICENSE" href="https://github.com/Alex-Wiesner/voyage/blob/main/LICENSE"
target="_blank" target="_blank"
class="link link-secondary text-sm" rel="noopener noreferrer"
> class="link link-secondary text-sm"
{$t('settings.license')} >
{$t('settings.license')}
</a> </a>
</div> </div>
</div> </div>

View File

@@ -726,13 +726,14 @@
<p class="text-sm">{$t('worldtravel.no_country_data_available_desc')}</p> <p class="text-sm">{$t('worldtravel.no_country_data_available_desc')}</p>
</div> </div>
</div> </div>
<a <a
class="link link-primary mt-4 inline-block" class="link link-primary mt-4 inline-block"
href="https://voyage.app/docs/configuration/updating.html#updating-the-region-data" href="https://github.com/Alex-Wiesner/voyage/blob/main/documentation/docs/configuration/updating.md#updating-region-data"
target="_blank" target="_blank"
> rel="noopener noreferrer"
{$t('settings.documentation_link')} >
</a> {$t('settings.documentation_link')}
</a>
</div> </div>
{/if} {/if}
</div> </div>