Skip to content

Commit

Permalink
Fix sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis committed Dec 12, 2024
1 parent 08f22c1 commit 4e7d763
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 40 deletions.
60 changes: 21 additions & 39 deletions src/components/data-flash/DataFlash.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,48 +34,30 @@ export default defineComponent({
},
computed: {
supportDataflash() {
if (this.fcTotalSize > 0) return true;
else return false;
return this.fcTotalSize > 0;
},
computed: {
supportDataflash() {
if (this.fcTotalSize > 0) return true;
else return false;
},
freeSpace() {
if (!this.supportDataflash) return;
const bytes = this.fcTotalSize - this.fcUsedSize;
if (this.fcUsedSize >= this.fcTotalSize) {
return "0B";
}
if (bytes < 1024) {
return `${bytes}B`;
}
const kilobytes = bytes / 1024;
if (kilobytes < 1024) {
return `${Math.round(kilobytes)}KB`;
}
const megabytes = kilobytes / 1024;
if (megabytes < 1024) {
return `${megabytes.toFixed(1)}MB`;
}
const gigabytes = megabytes / 1024;
return `${gigabytes.toFixed(1)}GB`;
},
indicatorWidth() {
if (!this.supportDataflash) return;
return `${Math.min(
(this.fcUsedSize / this.fcTotalSize) * 100,
100,
)}%`;
},
freeSpace() {
if (!this.supportDataflash) { return; }
const bytes = this.fcTotalSize - this.fcUsedSize;
if (this.fcUsedSize >= this.fcTotalSize) {
return "0B";
}
if (bytes < 1024) {
return `${bytes}B`;
}
const kilobytes = bytes / 1024;
if (kilobytes < 1024) {
return `${Math.round(kilobytes)}KB`;
}
const megabytes = kilobytes / 1024;
if (megabytes < 1024) {
return `${megabytes.toFixed(1)}MB`;
}
const gigabytes = megabytes / 1024;
return `${gigabytes.toFixed(1)}GB`;
},
indicatorWidth() {
if (!this.supportDataflash) return;
return `${Math.min(
(this.fcUsedSize / this.fcTotalSize) * 100,
100,
)}%`;
return this.supportDataflash ? `${Math.min((this.fcUsedSize / this.fcTotalSize) * 100, 100)}%` : "0%";
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion src/components/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ i18next.on('initialized', function() {

if (process.env.NODE_ENV === 'development') {
console.log("Development mode enabled, installing Vue tools");
// Vue.config.devtools = true;
// TODO Vue.config.devtools = true;
app.config.performance = true;
}
});
Expand Down

0 comments on commit 4e7d763

Please sign in to comment.