adds map page
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
{#if $currentUser}
|
{#if $currentUser}
|
||||||
<menu class="flex gap-8">
|
<menu class="flex gap-8">
|
||||||
<a class="font-semibold" href="/trails">Trails</a>
|
<a class="font-semibold" href="/trails">Trails</a>
|
||||||
<a class="font-semibold" href="">Map</a>
|
<a class="font-semibold" href="/map">Map</a>
|
||||||
<a class="font-semibold" href="">Categories</a>
|
<a class="font-semibold" href="">Categories</a>
|
||||||
<a class="font-semibold" href="">Favorites</a>
|
<a class="font-semibold" href="">Favorites</a>
|
||||||
</menu>
|
</menu>
|
||||||
|
|||||||
@@ -4,10 +4,11 @@ import type { Waypoint } from "$lib/models/waypoint";
|
|||||||
import { pb } from "$lib/pocketbase";
|
import { pb } from "$lib/pocketbase";
|
||||||
import { getFileURL } from "$lib/util/file_util";
|
import { getFileURL } from "$lib/util/file_util";
|
||||||
import { util } from "$lib/vendor/svelte-form-lib/util";
|
import { util } from "$lib/vendor/svelte-form-lib/util";
|
||||||
import { writable, type Writable } from "svelte/store";
|
import { get, writable, type Writable } from "svelte/store";
|
||||||
import { summit_logs_create, summit_logs_delete, summit_logs_update } from "./summit_log_store";
|
import { summit_logs_create, summit_logs_delete, summit_logs_update } from "./summit_log_store";
|
||||||
import { waypoints_create, waypoints_delete, waypoints_update } from "./waypoint_store";
|
import { waypoints_create, waypoints_delete, waypoints_update } from "./waypoint_store";
|
||||||
import { ms } from "$lib/meilisearch";
|
import { ms } from "$lib/meilisearch";
|
||||||
|
import type { LatLng } from "leaflet";
|
||||||
|
|
||||||
export const trails: Writable<Trail[]> = writable([])
|
export const trails: Writable<Trail[]> = writable([])
|
||||||
export const trail: Writable<Trail> = writable(new Trail(""));
|
export const trail: Writable<Trail> = writable(new Trail(""));
|
||||||
@@ -15,7 +16,7 @@ export const trail: Writable<Trail> = writable(new Trail(""));
|
|||||||
export const editTrail: Writable<Trail> = writable(new Trail(""));
|
export const editTrail: Writable<Trail> = writable(new Trail(""));
|
||||||
|
|
||||||
export async function trails_index() {
|
export async function trails_index() {
|
||||||
const response: Trail[] = (await pb.collection('trails').getList<Trail>(1, 5, {expand: "category,waypoints,summit_logs" })).items
|
const response: Trail[] = (await pb.collection('trails').getList<Trail>(1, 5, { expand: "category,waypoints,summit_logs" })).items
|
||||||
|
|
||||||
for (const trail of response) {
|
for (const trail of response) {
|
||||||
setFileURLs(trail);
|
setFileURLs(trail);
|
||||||
@@ -26,7 +27,7 @@ export async function trails_index() {
|
|||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function trails_search(filter: TrailFilter) {
|
export async function trails_search_filter(filter: TrailFilter) {
|
||||||
let filterText: string = `distance >= ${filter.distanceMin} AND distance <= ${filter.distanceMax} AND elevation_gain >= ${filter.eleavationGainMin} AND elevation_gain <= ${filter.elevationGainMax}`;
|
let filterText: string = `distance >= ${filter.distanceMin} AND distance <= ${filter.distanceMax} AND elevation_gain >= ${filter.eleavationGainMin} AND elevation_gain <= ${filter.elevationGainMax}`;
|
||||||
|
|
||||||
if (filter.category.length > 0) {
|
if (filter.category.length > 0) {
|
||||||
@@ -62,6 +63,40 @@ export async function trails_search(filter: TrailFilter) {
|
|||||||
return dbResponse;
|
return dbResponse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function trails_search_bounding_box(northEast: LatLng, southWest: LatLng) {
|
||||||
|
const response = await ms.index("trails").search("", {
|
||||||
|
filter: [
|
||||||
|
`_geoBoundingBox([${northEast.lat}, ${northEast.lng}], [${southWest.lat}, ${southWest.lng}])`,
|
||||||
|
],
|
||||||
|
});
|
||||||
|
const trailIds = response.hits.map((h) => h.id);
|
||||||
|
|
||||||
|
if (trailIds.length == 0) {
|
||||||
|
trails.set([]);
|
||||||
|
return compareObjectArrays<Trail>(get(trails), []);
|
||||||
|
}
|
||||||
|
|
||||||
|
const dbResponse: Trail[] = (
|
||||||
|
await pb.collection("trails").getList<Trail>(1, 5, {
|
||||||
|
filter: trailIds.map((id) => `id="${id}"`).join("||"),
|
||||||
|
expand: "category,waypoints,summit_logs",
|
||||||
|
sort: `+name`,
|
||||||
|
})
|
||||||
|
).items;
|
||||||
|
|
||||||
|
for (const trail of dbResponse) {
|
||||||
|
setFileURLs(trail);
|
||||||
|
const gpxData: string = await fetchGPX(trail);
|
||||||
|
trail.expand.gpx_data = gpxData;
|
||||||
|
}
|
||||||
|
|
||||||
|
const comparison = compareObjectArrays<Trail>(get(trails), dbResponse)
|
||||||
|
|
||||||
|
trails.set(dbResponse);
|
||||||
|
|
||||||
|
return comparison;
|
||||||
|
}
|
||||||
|
|
||||||
export async function trails_show(id: string, loadGPX?: boolean) {
|
export async function trails_show(id: string, loadGPX?: boolean) {
|
||||||
const response: Trail = await pb.collection('trails').getOne<Trail>(id, { expand: "category,waypoints,summit_logs" })
|
const response: Trail = await pb.collection('trails').getOne<Trail>(id, { expand: "category,waypoints,summit_logs" })
|
||||||
|
|
||||||
|
|||||||
157
web/src/routes/map/+page.svelte
Normal file
157
web/src/routes/map/+page.svelte
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import TrailCard from "$lib/components/trail/trail_card.svelte";
|
||||||
|
import type { Trail } from "$lib/models/trail";
|
||||||
|
import {
|
||||||
|
trails,
|
||||||
|
trails_search_bounding_box,
|
||||||
|
} from "$lib/stores/trail_store";
|
||||||
|
import { formatMeters, formatTimeHHMM } from "$lib/util/format_util";
|
||||||
|
import type {
|
||||||
|
GPX,
|
||||||
|
Icon,
|
||||||
|
LatLng,
|
||||||
|
LayerGroup,
|
||||||
|
LeafletEvent,
|
||||||
|
Map,
|
||||||
|
Marker,
|
||||||
|
} from "leaflet";
|
||||||
|
import "leaflet.awesome-markers/dist/leaflet.awesome-markers.css";
|
||||||
|
import "leaflet/dist/leaflet.css";
|
||||||
|
import { onMount } from "svelte";
|
||||||
|
|
||||||
|
let L: any;
|
||||||
|
let map: Map;
|
||||||
|
let gpxLayers: Record<string, GPX> = {};
|
||||||
|
|
||||||
|
onMount(async () => {
|
||||||
|
L = (await import("leaflet")).default;
|
||||||
|
await import("leaflet-gpx");
|
||||||
|
await import("leaflet.awesome-markers");
|
||||||
|
|
||||||
|
map = L.map("map").setView([0, 0], 4);
|
||||||
|
|
||||||
|
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
|
||||||
|
attribution: "© OpenStreetMap contributors",
|
||||||
|
}).addTo(map);
|
||||||
|
|
||||||
|
map.on("moveend", async (e) => {
|
||||||
|
const bounds = map.getBounds();
|
||||||
|
await searchTrails(bounds.getNorthEast(), bounds.getSouthWest());
|
||||||
|
});
|
||||||
|
|
||||||
|
navigator.geolocation.getCurrentPosition(
|
||||||
|
(position) => {
|
||||||
|
const lat = position.coords.latitude;
|
||||||
|
const lon = position.coords.longitude;
|
||||||
|
|
||||||
|
// map.setView([lat, lon], 15);
|
||||||
|
},
|
||||||
|
(error) => {
|
||||||
|
console.error("Error getting user location:", error);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
async function searchTrails(northEast: LatLng, southWest: LatLng) {
|
||||||
|
const changes = await trails_search_bounding_box(northEast, southWest);
|
||||||
|
|
||||||
|
for (const newTrail of changes.added) {
|
||||||
|
const gpxLayer = await addGPXLayer(newTrail);
|
||||||
|
|
||||||
|
if (gpxLayer) {
|
||||||
|
gpxLayers[newTrail.id!] = gpxLayer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const deletedTrail of changes.deleted) {
|
||||||
|
map.removeLayer(gpxLayers[deletedTrail.id!]);
|
||||||
|
delete gpxLayers[deletedTrail.id!];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function addGPXLayer(trail: Trail) {
|
||||||
|
return new Promise<GPX>(function (resolve, reject) {
|
||||||
|
if (!trail.expand.gpx_data) {
|
||||||
|
reject();
|
||||||
|
}
|
||||||
|
const gpxLayer = new L.GPX(trail.expand.gpx_data!, {
|
||||||
|
async: true,
|
||||||
|
gpx_options: {
|
||||||
|
parseElements: ["track"],
|
||||||
|
},
|
||||||
|
marker_options: {
|
||||||
|
startIcon: L.AwesomeMarkers.icon({
|
||||||
|
icon: "circle-half-stroke",
|
||||||
|
prefix: "fa",
|
||||||
|
markerColor: "cadetblue",
|
||||||
|
iconColor: "white",
|
||||||
|
}) as Icon,
|
||||||
|
startIconUrl: "",
|
||||||
|
endIconUrl: "",
|
||||||
|
shadowUrl: "",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.on("addpoint", function (e: any) {
|
||||||
|
if (e.point_type === "start") {
|
||||||
|
const marker: Marker = e.point as Marker;
|
||||||
|
marker.bindPopup(
|
||||||
|
`<a href="/trail/view/${trail.id}">
|
||||||
|
<li class="flex items-center gap-4 cursor-pointer text-black">
|
||||||
|
<div class="shrink-0"><img class="h-14 w-14 object-cover rounded-xl" src="${
|
||||||
|
trail.thumbnail
|
||||||
|
}" alt="">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h4 class="font-semibold text-lg">${trail.name}</h4>
|
||||||
|
<h5><i class="fa fa-location-dot mr-3"></i>${trail.location}</h5>
|
||||||
|
<div class="flex mt-2 gap-4 text-sm text-gray-500"><span class="shrink-0"><i
|
||||||
|
class="fa fa-left-right mr-2"></i>${formatMeters(
|
||||||
|
trail.distance,
|
||||||
|
)}</span> <span class="shrink-0"><i class="fa fa-up-down mr-2"></i>${formatMeters(
|
||||||
|
trail.elevation_gain,
|
||||||
|
)}</span> <span class="shrink-0"><i class="fa fa-clock mr-2"></i>${formatTimeHHMM(
|
||||||
|
trail.duration,
|
||||||
|
)}</span></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</a>`,
|
||||||
|
);
|
||||||
|
|
||||||
|
// marker.on("mouseover", (e) => {
|
||||||
|
// marker.openPopup();
|
||||||
|
// });
|
||||||
|
// marker.on("mouseout", (e) => {
|
||||||
|
// marker.closePopup();
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.on("loaded", function (e: LeafletEvent) {
|
||||||
|
resolve(gpxLayer);
|
||||||
|
})
|
||||||
|
.on("error", reject)
|
||||||
|
.addTo(map);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<main class="grid grid-cols-[400px_1fr]">
|
||||||
|
<div
|
||||||
|
class="overflow-y-scroll overflow-x-hidden flex flex-col items-center gap-4 px-8"
|
||||||
|
>
|
||||||
|
{#each $trails as trail}
|
||||||
|
<TrailCard {trail} mode="edit"></TrailCard>
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
|
<div class="rounded-xl" id="map"></div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
#map {
|
||||||
|
height: calc(100vh - 124px);
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.leaflet-popup-content) {
|
||||||
|
width: max-content !important;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
6
web/src/routes/map/+page.ts
Normal file
6
web/src/routes/map/+page.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import { trails } from "$lib/stores/trail_store";
|
||||||
|
import type { ServerLoad } from "@sveltejs/kit";
|
||||||
|
|
||||||
|
export const load: ServerLoad = async ({ params, locals }) => {
|
||||||
|
trails.set([])
|
||||||
|
};
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
import type { Category } from "$lib/models/category";
|
import type { Category } from "$lib/models/category";
|
||||||
import type { TrailFilter } from "$lib/models/trail";
|
import type { TrailFilter } from "$lib/models/trail";
|
||||||
import { categories } from "$lib/stores/category_store";
|
import { categories } from "$lib/stores/category_store";
|
||||||
import { trails, trails_search } from "$lib/stores/trail_store";
|
import { trails, trails_search_filter } from "$lib/stores/trail_store";
|
||||||
import { country_codes } from "$lib/util/country_code_util";
|
import { country_codes } from "$lib/util/country_code_util";
|
||||||
import { formatMeters } from "$lib/util/format_util";
|
import { formatMeters } from "$lib/util/format_util";
|
||||||
import { onMount } from "svelte";
|
import { onMount } from "svelte";
|
||||||
@@ -71,15 +71,21 @@
|
|||||||
|
|
||||||
let citySearchQuery: string = "";
|
let citySearchQuery: string = "";
|
||||||
|
|
||||||
|
let filterExpanded: boolean = true;
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
const storedDisplayOption = localStorage.getItem("displayOption")
|
const storedDisplayOption = localStorage.getItem("displayOption");
|
||||||
if(storedDisplayOption) {
|
if (storedDisplayOption) {
|
||||||
selectedDisplayOption = storedDisplayOption;
|
selectedDisplayOption = storedDisplayOption;
|
||||||
}
|
}
|
||||||
})
|
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
filterExpanded = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
async function searchTrails() {
|
async function searchTrails() {
|
||||||
await trails_search(filter);
|
await trails_search_filter(filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setCategoryFilter(category: Category) {
|
function setCategoryFilter(category: Category) {
|
||||||
@@ -165,86 +171,99 @@
|
|||||||
class="grid grid-cols-1 md:grid-cols-[300px_1fr] gap-8 max-w-7xl mx-6 md:mx-auto"
|
class="grid grid-cols-1 md:grid-cols-[300px_1fr] gap-8 max-w-7xl mx-6 md:mx-auto"
|
||||||
>
|
>
|
||||||
<div class="trail-filters p-8 border rounded-xl">
|
<div class="trail-filters p-8 border rounded-xl">
|
||||||
<Search
|
<div class="flex gap-2 items-center">
|
||||||
bind:value={filter.q}
|
<div class="basis-full">
|
||||||
on:update={searchTrails}
|
<Search
|
||||||
placeholder="Search trails..."
|
bind:value={filter.q}
|
||||||
></Search>
|
on:update={searchTrails}
|
||||||
<hr class="my-4" />
|
placeholder="Search trails..."
|
||||||
<p class="text-sm font-medium pb-4">Category</p>
|
></Search>
|
||||||
{#each $categories as category, i}
|
|
||||||
<div class="flex items-center mb-4">
|
|
||||||
<input
|
|
||||||
id="{category.name}-checkbox"
|
|
||||||
type="checkbox"
|
|
||||||
value={category.id}
|
|
||||||
class="w-4 h-4 text-primary bg-gray-100 border-gray-300 focus:ring-gray-400 focus:ring-2"
|
|
||||||
on:change={() => setCategoryFilter(category)}
|
|
||||||
/>
|
|
||||||
<label
|
|
||||||
for="{category.name}-checkbox"
|
|
||||||
class="ms-2 text-sm text-gray-900 dark:text-gray-300"
|
|
||||||
>{category.name}</label
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
<button
|
||||||
<hr class="my-4" />
|
id="sort-order-btn"
|
||||||
<p class="text-sm font-medium pb-4">Near</p>
|
class="rounded-full py-1 px-2 hover:bg-gray-100 focus:ring-4 ring-gray-200 transition-colors md:hidden"
|
||||||
<div class="mb-8">
|
on:click={() => (filterExpanded = !filterExpanded)}
|
||||||
<Search
|
><i class="fa fa-sliders"></i></button
|
||||||
items={searchDropdownItems}
|
>
|
||||||
placeholder="Search cities..."
|
|
||||||
bind:value={citySearchQuery}
|
|
||||||
on:update={(e) => searchCities(e.detail)}
|
|
||||||
on:click={(e) => handleSearchClick(e.detail)}
|
|
||||||
></Search>
|
|
||||||
</div>
|
</div>
|
||||||
<Slider
|
|
||||||
maxValue={10000}
|
{#if filterExpanded}
|
||||||
bind:currentValue={filter.near.radius}
|
<hr class="my-4" />
|
||||||
on:set={() => searchTrails()}
|
<p class="text-sm font-medium pb-4">Category</p>
|
||||||
></Slider>
|
{#each $categories as category, i}
|
||||||
<p>
|
<div class="flex items-center mb-4">
|
||||||
<span class="text-gray-500 text-sm">Radius:</span>
|
<input
|
||||||
{formatMeters(filter.near.radius)}
|
id="{category.name}-checkbox"
|
||||||
</p>
|
type="checkbox"
|
||||||
<hr class="my-4" />
|
value={category.id}
|
||||||
<p class="text-sm font-medium pb-4">Distance</p>
|
class="w-4 h-4 text-primary bg-gray-100 border-gray-300 focus:ring-gray-400 focus:ring-2"
|
||||||
<DoubleSlider
|
on:change={() => setCategoryFilter(category)}
|
||||||
minValue={minDistance}
|
/>
|
||||||
maxValue={maxDistance}
|
<label
|
||||||
bind:currentMin={filter.distanceMin}
|
for="{category.name}-checkbox"
|
||||||
bind:currentMax={filter.distanceMax}
|
class="ms-2 text-sm text-gray-900 dark:text-gray-300"
|
||||||
on:set={() => searchTrails()}
|
>{category.name}</label
|
||||||
></DoubleSlider>
|
>
|
||||||
<div class="flex justify-between">
|
</div>
|
||||||
<span>{formatMeters(filter.distanceMin)}</span>
|
{/each}
|
||||||
<span>{formatMeters(filter.distanceMax)}</span>
|
<hr class="my-4" />
|
||||||
</div>
|
<p class="text-sm font-medium pb-4">Near</p>
|
||||||
<hr class="my-4" />
|
<div class="mb-8">
|
||||||
<p class="text-sm font-medium pb-4">Elevation Gain</p>
|
<Search
|
||||||
<DoubleSlider
|
items={searchDropdownItems}
|
||||||
minValue={minElevationGain}
|
placeholder="Search cities..."
|
||||||
maxValue={maxElevationGain}
|
bind:value={citySearchQuery}
|
||||||
bind:currentMin={filter.eleavationGainMin}
|
on:update={(e) => searchCities(e.detail)}
|
||||||
bind:currentMax={filter.elevationGainMax}
|
on:click={(e) => handleSearchClick(e.detail)}
|
||||||
on:set={() => searchTrails()}
|
></Search>
|
||||||
></DoubleSlider>
|
</div>
|
||||||
<div class="flex justify-between">
|
<Slider
|
||||||
<span>{formatMeters(filter.eleavationGainMin)}</span>
|
maxValue={10000}
|
||||||
<span>{formatMeters(filter.elevationGainMax)}</span>
|
bind:currentValue={filter.near.radius}
|
||||||
</div>
|
on:set={() => searchTrails()}
|
||||||
<hr class="my-4" />
|
></Slider>
|
||||||
<p class="text-sm font-medium pb-4">Completed</p>
|
<p>
|
||||||
<RadioGroup
|
<span class="text-gray-500 text-sm">Radius:</span>
|
||||||
name="completed"
|
{formatMeters(filter.near.radius)}
|
||||||
items={radioGroupItems}
|
</p>
|
||||||
selected={2}
|
<hr class="my-4" />
|
||||||
on:change={(e) => setCompletedFilter(e.detail)}
|
<p class="text-sm font-medium pb-4">Distance</p>
|
||||||
></RadioGroup>
|
<DoubleSlider
|
||||||
|
minValue={minDistance}
|
||||||
|
maxValue={maxDistance}
|
||||||
|
bind:currentMin={filter.distanceMin}
|
||||||
|
bind:currentMax={filter.distanceMax}
|
||||||
|
on:set={() => searchTrails()}
|
||||||
|
></DoubleSlider>
|
||||||
|
<div class="flex justify-between">
|
||||||
|
<span>{formatMeters(filter.distanceMin)}</span>
|
||||||
|
<span>{formatMeters(filter.distanceMax)}</span>
|
||||||
|
</div>
|
||||||
|
<hr class="my-4" />
|
||||||
|
<p class="text-sm font-medium pb-4">Elevation Gain</p>
|
||||||
|
<DoubleSlider
|
||||||
|
minValue={minElevationGain}
|
||||||
|
maxValue={maxElevationGain}
|
||||||
|
bind:currentMin={filter.eleavationGainMin}
|
||||||
|
bind:currentMax={filter.elevationGainMax}
|
||||||
|
on:set={() => searchTrails()}
|
||||||
|
></DoubleSlider>
|
||||||
|
<div class="flex justify-between">
|
||||||
|
<span>{formatMeters(filter.eleavationGainMin)}</span>
|
||||||
|
<span>{formatMeters(filter.elevationGainMax)}</span>
|
||||||
|
</div>
|
||||||
|
<hr class="my-4" />
|
||||||
|
<p class="text-sm font-medium pb-4">Completed</p>
|
||||||
|
<RadioGroup
|
||||||
|
name="completed"
|
||||||
|
items={radioGroupItems}
|
||||||
|
selected={2}
|
||||||
|
on:change={(e) => setCompletedFilter(e.detail)}
|
||||||
|
></RadioGroup>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<div class="min-w-0">
|
<div class="min-w-0">
|
||||||
<div class="flex items-start gap-8 justify-end">
|
<div class="flex items-start gap-8 justify-end mx-4">
|
||||||
<div>
|
<div>
|
||||||
<p class="text-sm text-gray-500 pb-2">Sort</p>
|
<p class="text-sm text-gray-500 pb-2">Sort</p>
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
@@ -255,7 +274,7 @@
|
|||||||
></Select>
|
></Select>
|
||||||
<button
|
<button
|
||||||
id="sort-order-btn"
|
id="sort-order-btn"
|
||||||
class="rounded-full py-1 px-[10px] hover:bg-gray-100 focus:ring-4 ring-gray-200"
|
class="rounded-full py-1 px-[10px] hover:bg-gray-100 focus:ring-4 ring-gray-200 transition-colors"
|
||||||
on:click={() => setSortOrder()}
|
on:click={() => setSortOrder()}
|
||||||
><i class="fa fa-arrow-up"></i></button
|
><i class="fa fa-arrow-up"></i></button
|
||||||
>
|
>
|
||||||
@@ -272,7 +291,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="trails" class="flex items-start flex-wrap gap-8 py-8 max-w-full">
|
<div
|
||||||
|
id="trails"
|
||||||
|
class="flex items-start flex-wrap gap-8 py-8 max-w-full"
|
||||||
|
>
|
||||||
{#each $trails as trail}
|
{#each $trails as trail}
|
||||||
<a class="max-w-full" href="/trail/view/{trail.id}">
|
<a class="max-w-full" href="/trail/view/{trail.id}">
|
||||||
{#if selectedDisplayOption === "cards"}
|
{#if selectedDisplayOption === "cards"}
|
||||||
|
|||||||
Reference in New Issue
Block a user