mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
70 lines
1.6 KiB
Svelte
70 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import { t } from 'svelte-i18n';
|
|
import Button from './button.svelte';
|
|
import { getTabbable } from '$lib/utils/focus-util';
|
|
|
|
interface Props {
|
|
/**
|
|
* Target for the skip link to move focus to.
|
|
*/
|
|
target?: string;
|
|
/**
|
|
* Text for the skip link button.
|
|
*/
|
|
text?: string;
|
|
/**
|
|
* Breakpoint at which the skip link is visible. Defaults to always being visible.
|
|
*/
|
|
breakpoint?: 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
}
|
|
|
|
let { target = 'main', text = $t('skip_to_content'), breakpoint }: Props = $props();
|
|
|
|
let isFocused = $state(false);
|
|
|
|
const moveFocus = () => {
|
|
const targetEl = document.querySelector<HTMLElement>(target);
|
|
if (targetEl) {
|
|
const element = getTabbable(targetEl)[0];
|
|
if (element) {
|
|
element.focus();
|
|
}
|
|
}
|
|
};
|
|
|
|
const getBreakpoint = () => {
|
|
if (!breakpoint) {
|
|
return '';
|
|
}
|
|
switch (breakpoint) {
|
|
case 'sm': {
|
|
return 'hidden sm:block';
|
|
}
|
|
case 'md': {
|
|
return 'hidden md:block';
|
|
}
|
|
case 'lg': {
|
|
return 'hidden lg:block';
|
|
}
|
|
case 'xl': {
|
|
return 'hidden xl:block';
|
|
}
|
|
case '2xl': {
|
|
return 'hidden 2xl:block';
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<div class="absolute z-50 top-2 start-2 transition-transform {isFocused ? 'translate-y-0' : '-translate-y-10 sr-only'}">
|
|
<Button
|
|
size="sm"
|
|
rounded="none"
|
|
onclick={moveFocus}
|
|
class={getBreakpoint()}
|
|
onfocus={() => (isFocused = true)}
|
|
onblur={() => (isFocused = false)}
|
|
>
|
|
{text}
|
|
</Button>
|
|
</div>
|