web/remux: move drop area and open file button into own components

This commit is contained in:
wukko
2024-08-11 18:30:42 +06:00
parent b33bd39484
commit 3fd05891e6
3 changed files with 82 additions and 74 deletions

View File

@@ -0,0 +1,29 @@
<script lang="ts">
export let file: File;
export let draggedOver = false;
const openFile = async () => {
const fileInput = document.createElement("input");
fileInput.type = "file";
fileInput.accept = "video/*,audio/*";
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>
<button on:click={() => openFile()}>
{#if draggedOver}
drop the file!
{:else}
open the file
{/if}
</button>