mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
81 lines
2.5 KiB
Svelte
81 lines
2.5 KiB
Svelte
<script lang="ts">
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { deleteAllSessions, deleteSession, getSessions, type SessionResponseDto } from '@immich/sdk';
|
|
import { Button, modalManager, toastManager } from '@immich/ui';
|
|
import { t } from 'svelte-i18n';
|
|
import DeviceCard from './device-card.svelte';
|
|
|
|
interface Props {
|
|
devices: SessionResponseDto[];
|
|
}
|
|
|
|
let { devices = $bindable() }: Props = $props();
|
|
|
|
const refresh = () => getSessions().then((_devices) => (devices = _devices));
|
|
|
|
let currentSession = $derived(devices.find((device) => device.current));
|
|
let otherSessions = $derived(devices.filter((device) => !device.current));
|
|
|
|
const handleDelete = async (device: SessionResponseDto) => {
|
|
const isConfirmed = await modalManager.showDialog({ prompt: $t('logout_this_device_confirmation') });
|
|
if (!isConfirmed) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await deleteSession({ id: device.id });
|
|
toastManager.success($t('logged_out_device'));
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_log_out_device'));
|
|
} finally {
|
|
await refresh();
|
|
}
|
|
};
|
|
|
|
const handleDeleteAll = async () => {
|
|
const isConfirmed = await modalManager.showDialog({ prompt: $t('logout_all_device_confirmation') });
|
|
if (!isConfirmed) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await deleteAllSessions();
|
|
toastManager.success($t('logged_out_all_devices'));
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_log_out_all_devices'));
|
|
} finally {
|
|
await refresh();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<section class="my-4">
|
|
{#if currentSession}
|
|
<div class="mb-6">
|
|
<h3 class="uppercase mb-2 text-xs font-medium text-primary">
|
|
{$t('current_device')}
|
|
</h3>
|
|
<DeviceCard session={currentSession} />
|
|
</div>
|
|
{/if}
|
|
{#if otherSessions.length > 0}
|
|
<div class="mb-6">
|
|
<h3 class="uppercase mb-2 text-xs font-medium text-primary">
|
|
{$t('other_devices')}
|
|
</h3>
|
|
{#each otherSessions as session, index (session.id)}
|
|
<DeviceCard {session} onDelete={() => handleDelete(session)} />
|
|
{#if index !== otherSessions.length - 1}
|
|
<hr class="my-3" />
|
|
{/if}
|
|
{/each}
|
|
</div>
|
|
<h3 class="uppercase mb-2 text-xs font-medium text-primary">
|
|
{$t('log_out_all_devices')}
|
|
</h3>
|
|
<div class="flex justify-end">
|
|
<Button shape="round" color="danger" size="small" onclick={handleDeleteAll}>{$t('log_out_all_devices')}</Button>
|
|
</div>
|
|
{/if}
|
|
</section>
|