mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
7134f93eb8
* Added album page * Refactor sidebar * Added album assets count info * Added album viewer page * Refactor album sorting * Fixed incorrectly showing selected asset in album selection * Improve fetching speed with prefetch * Refactor to use ImmichThubmnail component for all * Update to the latest version of Svelte * Implement fixed app bar in album viewer * Added shared user avatar * Correctly get all owned albums, including shared
22 lines
1.1 KiB
Svelte
22 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher } from 'svelte';
|
|
|
|
import ArrowLeft from 'svelte-material-icons/ArrowLeft.svelte';
|
|
import DotsVertical from 'svelte-material-icons/DotsVertical.svelte';
|
|
import CloudDownloadOutline from 'svelte-material-icons/CloudDownloadOutline.svelte';
|
|
import TrashCanOutline from 'svelte-material-icons/TrashCanOutline.svelte';
|
|
import InformationOutline from 'svelte-material-icons/InformationOutline.svelte';
|
|
import CircleIconButton from '../shared/circle-icon-button.svelte';
|
|
const dispatch = createEventDispatcher();
|
|
</script>
|
|
|
|
<div class="h-16 bg-black/5 flex justify-between place-items-center px-3 transition-transform duration-200 z-[9999]">
|
|
<div>
|
|
<CircleIconButton logo={ArrowLeft} on:click={() => dispatch('goBack')} />
|
|
</div>
|
|
<div class="text-white flex gap-2">
|
|
<CircleIconButton logo={CloudDownloadOutline} on:click={() => dispatch('download')} />
|
|
<!-- <CircleIconButton logo={DotsVertical} on:click={() => console.log('Options')} /> -->
|
|
<CircleIconButton logo={InformationOutline} on:click={() => dispatch('showDetail')} />
|
|
</div>
|
|
</div>
|