adding in updates
This commit is contained in:
parent
7634992946
commit
05ea73bffe
@ -11,7 +11,7 @@
|
|||||||
<div class="upload-speed">{{ uploadSpeed.toFixed(2) }} MB/s</div>
|
<div class="upload-speed">{{ uploadSpeed.toFixed(2) }} MB/s</div>
|
||||||
<div class="upload-eta">{{ formattedETA }} remaining</div>
|
<div class="upload-eta">{{ formattedETA }} remaining</div>
|
||||||
<div class="upload-percentage"> {{ getProgress }} % Completed </div>
|
<div class="upload-percentage"> {{ getProgress }} % Completed </div>
|
||||||
<div class="upload-fraction"> / {{ getTotalSize }} </div>
|
<div class="upload-fraction"> {{ getTotalProgressBytes }} / {{ getTotalSize }} </div>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
class="action"
|
class="action"
|
||||||
@ -75,6 +75,7 @@ export default {
|
|||||||
"uploadSpeed",
|
"uploadSpeed",
|
||||||
"getETA",
|
"getETA",
|
||||||
"getProgress",
|
"getProgress",
|
||||||
|
"getTotalProgressBytes",
|
||||||
"getTotalSize"
|
"getTotalSize"
|
||||||
]),
|
]),
|
||||||
...mapWritableState(useFileStore, ["reload"]),
|
...mapWritableState(useFileStore, ["reload"]),
|
||||||
|
|||||||
@ -47,6 +47,20 @@ export const useUploadStore = defineStore("upload", {
|
|||||||
const sum = state.progress.reduce((acc, val) => +acc + +val) as number;
|
const sum = state.progress.reduce((acc, val) => +acc + +val) as number;
|
||||||
return Math.ceil((sum / totalSize) * 100);
|
return Math.ceil((sum / totalSize) * 100);
|
||||||
},
|
},
|
||||||
|
getTotalProgressBytes: (state) => {
|
||||||
|
if (state.progress.length === 0 || state.sizes.length === 0) {
|
||||||
|
return '0 Bytes';
|
||||||
|
}
|
||||||
|
|
||||||
|
const totalSize = state.sizes.reduce((a, b) => a + b, 0);
|
||||||
|
|
||||||
|
// TODO: this looks ugly but it works with ts now
|
||||||
|
const sum = state.progress.reduce((acc, val) => +acc + +val) as number;
|
||||||
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
||||||
|
const i = Math.floor(Math.log(sum) / Math.log(1024));
|
||||||
|
return parseFloat((sum / Math.pow(1024, i)).toFixed(2)) + ' ' + sizes[i];
|
||||||
|
|
||||||
|
},
|
||||||
getTotalSize: (state) => {
|
getTotalSize: (state) => {
|
||||||
if (state.sizes.length === 0) {
|
if (state.sizes.length === 0) {
|
||||||
return '0 Bytes';
|
return '0 Bytes';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user