mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 01:11:20 +03:00
31 lines
990 B
Svelte
31 lines
990 B
Svelte
<script lang="ts">
|
|
import { getAssetControlContext } from '$lib/components/photos-page/asset-select-control-bar.svelte';
|
|
import QrCodeModal from '$lib/modals/QrCodeModal.svelte';
|
|
import SharedLinkCreateModal from '$lib/modals/SharedLinkCreateModal.svelte';
|
|
import { makeSharedLinkUrl } from '$lib/utils';
|
|
import { IconButton, modalManager } from '@immich/ui';
|
|
import { mdiShareVariantOutline } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
const { getAssets } = getAssetControlContext();
|
|
|
|
const handleClick = async () => {
|
|
const sharedLink = await modalManager.show(SharedLinkCreateModal, {
|
|
assetIds: [...getAssets()].map(({ id }) => id),
|
|
});
|
|
|
|
if (sharedLink) {
|
|
await modalManager.show(QrCodeModal, { title: $t('view_link'), value: makeSharedLinkUrl(sharedLink.key) });
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<IconButton
|
|
shape="round"
|
|
color="secondary"
|
|
variant="ghost"
|
|
aria-label={$t('share')}
|
|
icon={mdiShareVariantOutline}
|
|
onclick={handleClick}
|
|
/>
|