mirror of
https://github.com/immich-app/immich
synced 2025-06-11 00:39:48 +00:00
35 lines
1.3 KiB
Svelte
35 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import { mdiPartyPopper } from '@mdi/js';
|
|
import SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
|
import { preferences } from '$lib/stores/user.store';
|
|
import { setSupportBadgeVisibility } from '$lib/utils/purchase-utils';
|
|
|
|
interface Props {
|
|
onDone: () => void;
|
|
}
|
|
|
|
let { onDone }: Props = $props();
|
|
</script>
|
|
|
|
<div class="m-auto w-3/4 text-center flex flex-col place-content-center place-items-center dark:text-white my-6">
|
|
<Icon path={mdiPartyPopper} class="text-immich-primary dark:text-immich-dark-primary" size="96" />
|
|
<p class="text-4xl mt-8 font-bold">{$t('purchase_activated_title')}</p>
|
|
<p class="text-lg mt-6">{$t('purchase_activated_subtitle')}</p>
|
|
|
|
<div class="mb-4 w-full mt-6 border rounded-xl p-4 bg-gray-50 dark:bg-gray-900 dark:border-gray-600">
|
|
<SettingSwitch
|
|
title={$t('show_supporter_badge')}
|
|
subtitle={$t('show_supporter_badge_description')}
|
|
bind:checked={$preferences.purchase.showSupportBadge}
|
|
onToggle={setSupportBadgeVisibility}
|
|
/>
|
|
</div>
|
|
|
|
<div class="mt-6 w-full">
|
|
<Button fullwidth onclick={onDone}>{$t('ok')}</Button>
|
|
</div>
|
|
</div>
|