Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/web/src/components/misc/FileReceiver.svelte
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
163 lines (140 sloc)
4.02 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
import { t } from '$lib/i18n/translations'; | |
import Meowbalt from '$components/misc/Meowbalt.svelte'; | |
import IconFileImport from '@tabler/icons-svelte/IconFileImport.svelte'; | |
import IconUpload from '@tabler/icons-svelte/IconUpload.svelte'; | |
export let file: File | undefined; | |
export let draggedOver = false; | |
export let acceptTypes: string[]; | |
export let acceptExtensions: string[]; | |
let fileInput: HTMLInputElement; | |
const openFile = async () => { | |
fileInput = document.createElement('input'); | |
fileInput.type = 'file'; | |
fileInput.accept = acceptTypes.join(','); | |
fileInput.click(); | |
fileInput.onchange = async () => { | |
if (fileInput.files?.length === 1) { | |
file = fileInput.files[0]; | |
return file; | |
} | |
}; | |
}; | |
</script> | |
<div class="open-file-container" class:dragged-over={draggedOver}> | |
<button class="open-file-button" on:click={openFile}> | |
<div class="dashed-stroke"> | |
<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"> | |
<rect width="100%" height="100%" fill="none" rx="24" ry="24" /> | |
</svg> | |
</div> | |
<div class="open-file-icon"> | |
{#if draggedOver} | |
<IconUpload /> | |
{:else} | |
<IconFileImport /> | |
{/if} | |
</div> | |
<div class="open-file-text"> | |
<div class="open-title"> | |
{#if draggedOver} | |
{$t('receiver.title.drop')} | |
{:else} | |
{$t('receiver.title')} | |
{/if} | |
</div> | |
<div class="subtext accept-list"> | |
{$t('receiver.accept', { | |
formats: acceptExtensions.join(', '), | |
})} | |
</div> | |
</div> | |
</button> | |
</div> | |
<style> | |
.open-file-button { | |
position: relative; | |
flex-direction: column; | |
gap: 4px; | |
padding: 26px 28px; | |
transition: box-shadow 0.2s; | |
} | |
.open-file-button:not(:focus-visible) { | |
box-shadow: none; | |
} | |
.open-file-button, | |
.dashed-stroke :global(svg) { | |
border-radius: 24px; | |
} | |
.dragged-over .open-file-button { | |
background-image: none; | |
box-shadow: 0 0 50px 10px var(--button-hover); | |
} | |
.open-file-container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
} | |
.dashed-stroke { | |
position: absolute; | |
height: 100%; | |
width: 100%; | |
bottom: 0; | |
pointer-events: none; | |
} | |
.dashed-stroke :global(svg rect) { | |
width: 100%; | |
height: 100%; | |
stroke-width: 5; | |
stroke-dashoffset: 3; | |
stroke-linecap: square; | |
stroke-dasharray: 10, 15; | |
stroke: var(--input-border); | |
transition: | |
stroke-dasharray 0.2s, | |
stroke-dashoffset 0.2s; | |
} | |
.dragged-over .dashed-stroke :global(svg rect), | |
.open-file-button:focus-visible .dashed-stroke :global(svg rect) { | |
stroke-dasharray: 20, 5; | |
stroke-dashoffset: 8; | |
} | |
.open-file-button:focus-visible .dashed-stroke :global(svg rect) { | |
stroke: var(--blue); | |
} | |
.open-file-container :global(.meowbalt) { | |
z-index: 2; | |
clip-path: inset(0px 0px 16px 0px); | |
margin-bottom: -16px; | |
transition: | |
clip-path 0.2s, | |
margin-bottom 0.2s; | |
} | |
.dragged-over :global(.meowbalt) { | |
clip-path: inset(0px 0px 9px 0px); | |
margin-bottom: -9px; | |
} | |
.open-file-icon { | |
display: flex; | |
} | |
.open-file-icon :global(svg) { | |
width: 32px; | |
height: 32px; | |
stroke-width: 1.8px; | |
} | |
.open-file-text { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
gap: 6px; | |
max-width: 300px; | |
} | |
.open-title { | |
font-size: 18px; | |
} | |
.accept-list { | |
max-width: 250px; | |
font-size: 14px; | |
padding: 0; | |
} | |
</style> |