mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/remux: improve accessibility
This commit is contained in:
parent
3232c4a51b
commit
7cd572954f
1 changed files with 42 additions and 28 deletions
|
@ -2,7 +2,7 @@
|
|||
import mime from "mime";
|
||||
import LibAVWrapper from "$lib/libav";
|
||||
import { browser } from "$app/environment";
|
||||
import { beforeNavigate } from '$app/navigation';
|
||||
import { beforeNavigate } from "$app/navigation";
|
||||
|
||||
import { openURL } from "$lib/download";
|
||||
import { t } from "$lib/i18n/translations";
|
||||
|
@ -23,7 +23,10 @@
|
|||
|
||||
$: {
|
||||
if (totalDuration && processedDuration) {
|
||||
const percentage = Math.max(0, Math.min(100, (processedDuration / totalDuration) * 100)).toFixed(2);
|
||||
const percentage = Math.max(
|
||||
0,
|
||||
Math.min(100, (processedDuration / totalDuration) * 100)
|
||||
).toFixed(2);
|
||||
progress = percentage;
|
||||
} else if (processing) {
|
||||
progress = undefined;
|
||||
|
@ -102,16 +105,18 @@
|
|||
|
||||
if (file instanceof File && !file.type) {
|
||||
file = new Blob([file], {
|
||||
type: mime.getType(file.name) ?? undefined
|
||||
type: mime.getType(file.name) ?? undefined,
|
||||
});
|
||||
}
|
||||
|
||||
const render = await ff.render({
|
||||
const render = await ff
|
||||
.render({
|
||||
blob: file,
|
||||
args: ['-c', 'copy', '-map', '0']
|
||||
}).catch(e => {
|
||||
console.error("uh-oh! render error")
|
||||
console.error(e)
|
||||
args: ["-c", "copy", "-map", "0"],
|
||||
})
|
||||
.catch((e) => {
|
||||
console.error("uh-oh! render error");
|
||||
console.error(e);
|
||||
return createDialog({
|
||||
id: "remux-error",
|
||||
type: "small",
|
||||
|
@ -132,7 +137,6 @@
|
|||
} else {
|
||||
console.log("not a valid file");
|
||||
}
|
||||
|
||||
} finally {
|
||||
processing = false;
|
||||
file = undefined;
|
||||
|
@ -150,7 +154,7 @@
|
|||
event.cancel();
|
||||
//TODO: show a popup with an option to kill ongoing processing
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
$: if (browser && processing) {
|
||||
window.addEventListener("beforeunload", beforeUnloadHandler);
|
||||
|
@ -168,7 +172,13 @@
|
|||
</svelte:head>
|
||||
|
||||
<DropReceiver id="remux-container" bind:draggedOver bind:file>
|
||||
<div id="remux-open" class:processing>
|
||||
<div
|
||||
id="remux-open"
|
||||
class:processing
|
||||
tabindex="-1"
|
||||
data-first-focus
|
||||
data-focus-ring-hidden
|
||||
>
|
||||
<FileReceiver
|
||||
bind:draggedOver
|
||||
bind:file
|
||||
|
@ -188,11 +198,15 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="remux-processing" class:processing>
|
||||
<div id="remux-processing" class:processing aria-hidden={!processing}>
|
||||
{#if processing}
|
||||
{#if progress && speed}
|
||||
<div class="progress-bar">
|
||||
<Skeleton width="{progress}%" height="20px" class="elevated" />
|
||||
<Skeleton
|
||||
width="{progress}%"
|
||||
height="20px"
|
||||
class="elevated"
|
||||
/>
|
||||
</div>
|
||||
<div class="progress-text">
|
||||
processing ({progress}%, {speed}x)...
|
||||
|
|
Loading…
Reference in a new issue