2021-01-03 07:38:32 -06:00
|
|
|
<template>
|
|
|
|
<div class="zbwaqsat">
|
|
|
|
<XPie class="pie" :value="usage"/>
|
|
|
|
<div>
|
2021-04-20 09:22:59 -05:00
|
|
|
<p><i class="fas fa-hdd"></i>Disk</p>
|
2021-01-03 07:38:32 -06:00
|
|
|
<p>Total: {{ bytes(total, 1) }}</p>
|
|
|
|
<p>Free: {{ bytes(available, 1) }}</p>
|
|
|
|
<p>Used: {{ bytes(used, 1) }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import XPie from './pie.vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import bytes from '@client/filters/bytes';
|
2021-01-03 07:38:32 -06:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XPie
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
meta: {
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
usage: this.meta.fs.used / this.meta.fs.total,
|
|
|
|
total: this.meta.fs.total,
|
|
|
|
used: this.meta.fs.used,
|
|
|
|
available: this.meta.fs.total - this.meta.fs.used,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.zbwaqsat {
|
|
|
|
display: flex;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .pie {
|
|
|
|
height: 82px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
2021-04-20 09:22:59 -05:00
|
|
|
> i {
|
2021-01-03 07:38:32 -06:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|