mirror of https://github.com/VERT-sh/VERT.git
fix: loading bars reversed
This commit is contained in:
parent
549c61a108
commit
7dc08088a2
|
@ -77,7 +77,7 @@
|
||||||
for (let i = 0; i < files.files.length; i++) {
|
for (let i = 0; i < files.files.length; i++) {
|
||||||
promises.push(
|
promises.push(
|
||||||
(async (i) => {
|
(async (i) => {
|
||||||
await convert(files.files[i]);
|
await convert(files.files[i], i);
|
||||||
})(i),
|
})(i),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -88,9 +88,8 @@
|
||||||
log(["converter"], `converted all files in ${seconds}s`);
|
log(["converter"], `converted all files in ${seconds}s`);
|
||||||
};
|
};
|
||||||
|
|
||||||
const convert = async (file: VertFile) => {
|
const convert = async (file: VertFile, index: number) => {
|
||||||
file.progress = 0;
|
file.progress = 0;
|
||||||
const index = files.files.findIndex((f) => f === file);
|
|
||||||
processings[index] = true;
|
processings[index] = true;
|
||||||
await file.convert();
|
await file.convert();
|
||||||
processings[index] = false;
|
processings[index] = false;
|
||||||
|
@ -236,8 +235,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="w-full lg:grid flex flex-col lg:gap-8 gap-4"
|
class="w-full flex flex-col gap-4 lg:grid"
|
||||||
style="grid-template-columns: 1fr 1fr;"
|
style="grid-template-columns: repeat(2, 1fr)"
|
||||||
>
|
>
|
||||||
{#each reversedFiles as file, i (file.id)}
|
{#each reversedFiles as file, i (file.id)}
|
||||||
{@const converter = (() => {
|
{@const converter = (() => {
|
||||||
|
@ -246,7 +245,7 @@
|
||||||
);
|
);
|
||||||
})()}
|
})()}
|
||||||
<div
|
<div
|
||||||
class="w-full rounded-xl relative lg:h-48"
|
class="rounded-xl relative lg:h-48"
|
||||||
animate:flip={{ duration, easing: quintOut }}
|
animate:flip={{ duration, easing: quintOut }}
|
||||||
out:blur={{
|
out:blur={{
|
||||||
duration,
|
duration,
|
||||||
|
@ -287,7 +286,7 @@
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
class="lg:flex-grow flex-shrink whitespace-nowrap overflow-hidden text-ellipsis sm:max-w-96 lg:max-w-none"
|
class="lg:flex-grow flex-shrink whitespace-nowrap overflow-hidden text-ellipsis sm:max-w-96"
|
||||||
>
|
>
|
||||||
{file.file.name}
|
{file.file.name}
|
||||||
</h3>
|
</h3>
|
||||||
|
@ -313,7 +312,7 @@
|
||||||
<div
|
<div
|
||||||
class="flex flex-col items-center gap-3 w-full"
|
class="flex flex-col items-center gap-3 w-full"
|
||||||
>
|
>
|
||||||
{#if processings[i]}
|
{#if processings[files.files.length - i - 1]}
|
||||||
<div
|
<div
|
||||||
class="w-full lg:block hidden"
|
class="w-full lg:block hidden"
|
||||||
transition:blur={{
|
transition:blur={{
|
||||||
|
|
Loading…
Reference in New Issue