diff --git a/client/src/Main-old.svelte b/client/src/Main-old.svelte deleted file mode 100644 index 36cd6351..00000000 --- a/client/src/Main-old.svelte +++ /dev/null @@ -1,162 +0,0 @@ - - -
-
- - - - {#if playing > -1} - - {:else} - - {/if} -
- - {$address} ({$online ? "online" : "offline"}) - {#if generated} - {@const { assets, stopset, duration } = generated} - -
-
-
- {stopset.name} [{formatDuration(dayjs.duration(duration, "seconds"))}] -
- {#each assets as { asset, rotator, loaded, audio, error, progress }, index} -
index} - > -
- {#if error} -
ERROR
- {:else} -
- {formatDuration( - progress === null ? asset.duration : dayjs.duration(Math.ceil(audio.duration) - progress, "seconds") - )} -
- {/if} -
-

{asset.name}

-

{rotator.name}

-
-
- {#if asset} - - {formatDuration(asset.duration)} - - {:else} - No asset in this rotator - {/if} -
-
-
- {/each} -
-
- {:else} - No stopset generated! - {/if} -