mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
* feat(web): add keyboard shortcut to stack selected photos * refactor(web): deduplicate logic to stack assets * Fix linting errors * fix(web): incorrect count of stacked photos * chore: cleanup --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
101 lines
3.7 KiB
Svelte
101 lines
3.7 KiB
Svelte
<script lang="ts">
|
|
import CircleIconButton from '../elements/buttons/circle-icon-button.svelte';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import FullScreenModal from './full-screen-modal.svelte';
|
|
import { mdiClose, mdiInformationOutline } from '@mdi/js';
|
|
import Icon from '../elements/icon.svelte';
|
|
|
|
interface Shortcuts {
|
|
general: ExplainedShortcut[];
|
|
actions: ExplainedShortcut[];
|
|
}
|
|
|
|
interface ExplainedShortcut {
|
|
key: string[];
|
|
action: string;
|
|
info?: string;
|
|
}
|
|
|
|
const shortcuts: Shortcuts = {
|
|
general: [
|
|
{ key: ['←', '→'], action: 'Previous or next photo' },
|
|
{ key: ['Esc'], action: 'Back, close, or deselect' },
|
|
{ key: ['/'], action: 'Search your photos' },
|
|
],
|
|
actions: [
|
|
{ key: ['f'], action: 'Favorite or unfavorite photo' },
|
|
{ key: ['i'], action: 'Show or hide info' },
|
|
{ key: ['s'], action: 'Stack selected photos' },
|
|
{ key: ['⇧', 'a'], action: 'Archive or unarchive photo' },
|
|
{ key: ['⇧', 'd'], action: 'Download' },
|
|
{ key: ['Space'], action: 'Play or pause video' },
|
|
{ key: ['Del'], action: 'Trash/Delete Asset', info: 'press ⇧ to permanently delete asset' },
|
|
],
|
|
};
|
|
const dispatch = createEventDispatcher<{
|
|
close: void;
|
|
}>();
|
|
</script>
|
|
|
|
<FullScreenModal onClose={() => dispatch('close')}>
|
|
<div class="flex h-full w-full place-content-center place-items-center overflow-hidden">
|
|
<div
|
|
class="w-[400px] max-w-[125vw] rounded-3xl border bg-immich-bg shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray dark:text-immich-dark-fg md:w-[650px]"
|
|
>
|
|
<div class="relative px-4 pt-4">
|
|
<h1 class="px-4 py-4 font-medium text-immich-primary dark:text-immich-dark-primary">Keyboard Shortcuts</h1>
|
|
<div class="absolute inset-y-0 right-0 px-4 py-4">
|
|
<CircleIconButton title="Close" icon={mdiClose} on:click={() => dispatch('close')} />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-1 gap-4 px-4 pb-4 md:grid-cols-2">
|
|
<div class="px-4 py-4">
|
|
<h2>General</h2>
|
|
<div class="text-sm">
|
|
{#each shortcuts.general as shortcut}
|
|
<div class="grid grid-cols-[20%_80%] items-center gap-4 pt-4 text-sm">
|
|
<div class="flex justify-self-end">
|
|
{#each shortcut.key as key}
|
|
<p
|
|
class="mr-1 flex items-center justify-center justify-self-end rounded-lg bg-immich-primary/25 p-2"
|
|
>
|
|
{key}
|
|
</p>
|
|
{/each}
|
|
</div>
|
|
<p class="mb-1 mt-1 flex">{shortcut.action}</p>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="px-4 py-4">
|
|
<h2>Actions</h2>
|
|
<div class="text-sm">
|
|
{#each shortcuts.actions as shortcut}
|
|
<div class="grid grid-cols-[20%_80%] items-center gap-4 pt-4 text-sm">
|
|
<div class="flex justify-self-end">
|
|
{#each shortcut.key as key}
|
|
<p
|
|
class="mr-1 flex items-center justify-center justify-self-end rounded-lg bg-immich-primary/25 p-2"
|
|
>
|
|
{key}
|
|
</p>
|
|
{/each}
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<p class="mb-1 mt-1 flex">{shortcut.action}</p>
|
|
{#if shortcut.info}
|
|
<Icon path={mdiInformationOutline} title={shortcut.info} />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</FullScreenModal>
|