d2575d8f00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
96 lines
2.8 KiB
Svelte
96 lines
2.8 KiB
Svelte
<script lang="ts">
|
|
import { IconButton } from '@immich/ui';
|
|
import Dropdown from '$lib/components/elements/dropdown.svelte';
|
|
import SearchBar from '$lib/components/elements/search-bar.svelte';
|
|
import { PlacesGroupBy, placesViewSettings } from '$lib/stores/preferences.store';
|
|
import {
|
|
mdiFolderArrowUpOutline,
|
|
mdiFolderRemoveOutline,
|
|
mdiUnfoldLessHorizontal,
|
|
mdiUnfoldMoreHorizontal,
|
|
} from '@mdi/js';
|
|
import {
|
|
type PlacesGroupOptionMetadata,
|
|
findGroupOptionMetadata,
|
|
getSelectedPlacesGroupOption,
|
|
groupOptionsMetadata,
|
|
expandAllPlacesGroups,
|
|
collapseAllPlacesGroups,
|
|
} from '$lib/utils/places-utils';
|
|
import { fly } from 'svelte/transition';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
placesGroups: string[];
|
|
searchQuery: string;
|
|
}
|
|
|
|
let { placesGroups, searchQuery = $bindable() }: Props = $props();
|
|
|
|
const handleChangeGroupBy = ({ id }: PlacesGroupOptionMetadata) => {
|
|
$placesViewSettings.groupBy = id;
|
|
};
|
|
|
|
let groupIcon = $derived.by(() => {
|
|
return selectedGroupOption.id === PlacesGroupBy.None ? mdiFolderRemoveOutline : mdiFolderArrowUpOutline; // OR mdiFolderArrowDownOutline
|
|
});
|
|
|
|
let selectedGroupOption = $derived(findGroupOptionMetadata($placesViewSettings.groupBy));
|
|
|
|
let placesGroupByNames: Record<PlacesGroupBy, string> = $derived({
|
|
[PlacesGroupBy.None]: $t('group_no'),
|
|
[PlacesGroupBy.Country]: $t('group_country'),
|
|
});
|
|
</script>
|
|
|
|
<!-- Search Places -->
|
|
<div class="hidden md:block h-10 xl:w-60 2xl:w-80">
|
|
<SearchBar placeholder={$t('search_places')} bind:name={searchQuery} showLoadingSpinner={false} />
|
|
</div>
|
|
|
|
<!-- Group Places -->
|
|
<Dropdown
|
|
position="bottom-right"
|
|
title={$t('group_places_by')}
|
|
options={Object.values(groupOptionsMetadata)}
|
|
selectedOption={selectedGroupOption}
|
|
onSelect={handleChangeGroupBy}
|
|
render={({ id, isDisabled }) => ({
|
|
title: placesGroupByNames[id],
|
|
icon: groupIcon,
|
|
disabled: isDisabled(),
|
|
})}
|
|
/>
|
|
|
|
{#if getSelectedPlacesGroupOption($placesViewSettings) !== PlacesGroupBy.None}
|
|
<span in:fly={{ x: -50, duration: 250 }}>
|
|
<!-- Expand Countries Groups -->
|
|
<div class="hidden xl:flex gap-0">
|
|
<div class="block">
|
|
<IconButton
|
|
title={$t('expand_all')}
|
|
onclick={() => expandAllPlacesGroups()}
|
|
variant="ghost"
|
|
color="secondary"
|
|
shape="round"
|
|
icon={mdiUnfoldMoreHorizontal}
|
|
aria-label={$t('expand_all')}
|
|
/>
|
|
</div>
|
|
|
|
<!-- Collapse Countries Groups -->
|
|
<div class="block">
|
|
<IconButton
|
|
title={$t('collapse_all')}
|
|
onclick={() => collapseAllPlacesGroups(placesGroups)}
|
|
variant="ghost"
|
|
color="secondary"
|
|
shape="round"
|
|
icon={mdiUnfoldLessHorizontal}
|
|
aria-label={$t('collapse_all')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</span>
|
|
{/if}
|