mirror of
https://github.com/wukko/cobalt.git
synced 2025-03-30 22:31:41 +02:00
153 lines
3.7 KiB
Svelte
153 lines
3.7 KiB
Svelte
<script lang="ts">
|
|
import { t } from "$lib/i18n/translations";
|
|
|
|
import Meowbalt from "$components/misc/Meowbalt.svelte";
|
|
import IconFileUpload from "@tabler/icons-svelte/IconFileUpload.svelte";
|
|
|
|
export let file: File | undefined;
|
|
export let draggedOver = false;
|
|
export let acceptTypes: string[];
|
|
export let acceptExtensions: string[];
|
|
|
|
const openFile = async () => {
|
|
const fileInput = document.createElement("input");
|
|
fileInput.type = "file";
|
|
fileInput.accept = acceptTypes.join(",");
|
|
|
|
fileInput.click();
|
|
|
|
fileInput.onchange = async (e: Event) => {
|
|
const target = e.target as HTMLInputElement;
|
|
|
|
if (target.files?.length === 1) {
|
|
file = target.files[0];
|
|
return file;
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
|
|
<div class="open-file-container" class:dragged-over={draggedOver}>
|
|
<Meowbalt emotion="question" />
|
|
|
|
<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">
|
|
<IconFileUpload />
|
|
</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 {
|
|
flex-direction: column;
|
|
padding: 32px;
|
|
transition: box-shadow 0.2s;
|
|
position: relative;
|
|
}
|
|
|
|
.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) {
|
|
stroke-dasharray: 20, 5;
|
|
stroke-dashoffset: 8;
|
|
}
|
|
|
|
.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: 52px;
|
|
height: 52px;
|
|
stroke-width: 1.5px;
|
|
}
|
|
|
|
.open-file-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.open-title {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.accept-list {
|
|
max-width: 250px;
|
|
font-size: 14px;
|
|
}
|
|
</style>
|