Various bugfixes (#40)
continuous-integration/drone/push Build is passing Details

- Fix download state not being synced correctly
- Fix double-flicker by only loading the placeholder if needed
- Fix fractional part of download numbers so they flicker less

Closes #38
This commit is contained in:
Hamcha 2019-09-21 08:54:21 +00:00 committed by Gitea
parent 70fe698c22
commit 9ce4dd67f5
2 changed files with 18 additions and 5 deletions

View File

@ -17,16 +17,23 @@ export default class CardImage extends Vue {
private loaded!: boolean;
private loadedURL!: string;
private loadedTimeout!: boolean;
private data() {
return {
loaded: false,
loadedURL: ""
loadedURL: "",
loadedTimeout: false
};
}
private mounted() {
this.fetchImage();
setTimeout(() => {
if (!this.loaded) {
this.loadedTimeout = true;
}
}, 100);
this.$watch("id", () => {
this.loaded = false;
this.fetchImage();
@ -43,7 +50,10 @@ export default class CardImage extends Vue {
if (this.loaded) {
return this.loadedURL;
}
return require("@/assets/images/cardback.webp");
if (this.loadedTimeout) {
return require("@/assets/images/cardback.webp");
}
return "";
}
}
</script>

View File

@ -126,6 +126,7 @@ export default class SettingsView extends Vue {
worker.on("finish", async _ => {
this.downloadState = null;
await refreshCardSource();
this.cardImageSource = cardImageSource();
});
}
@ -175,9 +176,11 @@ export default class SettingsView extends Vue {
current = `${(this.downloadProgress.progress / 2) | 0}`;
total = `${(this.downloadProgress.total / 2) | 0}`;
} else {
current = `${Math.round(this.downloadProgress.progress / 10485.76) /
100}`;
total = `${Math.round(this.downloadProgress.total / 10485.76) / 100} MB`;
const currentNum =
Math.round(this.downloadProgress.progress / 10485.76) / 100;
current = currentNum.toString().padEnd(currentNum < 10 ? 4 : 5, "0");
const totalNum = Math.round(this.downloadProgress.total / 10485.76) / 100;
total = totalNum.toString().padEnd(totalNum < 10 ? 4 : 5, "0") + " MB";
}
const percent = Math.round(
(this.downloadProgress.progress / this.downloadProgress.total) * 100