🔥 Filter locations from clicked continent on Locations

This commit is contained in:
2021-10-16 15:41:26 +02:00
parent 8839684494
commit 3e358843fd
6 changed files with 86 additions and 17 deletions

View File

@@ -1,5 +1,9 @@
<script lang="ts">
import { getContext } from 'svelte'
import { flip } from 'svelte/animate'
import { quartOut } from 'svelte/easing'
import { send, receive } from '$animations/crossfade'
import { throttle } from '$utils/functions'
// Components
import Button from '$components/atoms/Button.svelte'
import Location from '$components/molecules/Location.svelte'
@@ -7,6 +11,30 @@
export let locations: any
const { continents, settings: { explore_list }} = getContext('global')
// Continents filtering logic
let currentContinent: string = undefined
$: filteredLocations = locations.filter(({ country: { continent }}: any) => {
if (!currentContinent) {
// Show all locations by default
return true
} else {
// Location's continent matches the clicked continent
return continent.slug === currentContinent
}
})
/**
* Filter locations from continent
*/
const filterLocation = throttle((continent: string) => {
if (continent !== currentContinent) {
currentContinent = continent
} else {
currentContinent = undefined
}
}, 700)
</script>
<div class="browse" id="locations">
@@ -16,17 +44,24 @@
<ul class="browse__continents" role="navigation">
{#each continents as { name, slug }}
<li>
<Button tag="button" text={name} class="button--small" />
<li class:is-disabled={currentContinent && currentContinent !== slug}>
<Button
tag="button" text={name} class="button--small"
on:click={() => filterLocation(slug)}
/>
</li>
{/each}
</ul>
<div class="browse__locations" role="list">
{#each locations as location}
<Location
location={location}
/>
<ul class="browse__locations" role="list">
{#each filteredLocations as location (location)}
<li
animate:flip={{ duration: 1000, easing: quartOut }}
in:receive={{ key: location.slug }}
out:send={{ key: location.slug }}
>
<Location {location} />
</li>
{/each}
</div>
</ul>
</div>