{#if status === Status.Compressing || status === Status.CompressDone}
| Speed |
Progress |
Time elapsed |
Time remaining |
| {stats.speed} |
{Math.round(stats.progress * 100)}% |
{upload_stats.time_elapsed.toFixed(2)}s |
{(stats.time_elapsed / stats.progress - upload_stats.time_elapsed).toFixed(
2
)}s |
{:else if status === Status.Uploading}
| Progress |
Time elapsed |
Time remaining |
| {Math.round(upload_stats.progress * 100)}% |
{stats.time_elapsed.toFixed(2)}s |
{(stats.time_elapsed / stats.progress - stats.time_elapsed).toFixed(2)}s |
{/if}