hippofish/packages/client/src/widgets/server-metric/disk.vue

58 lines
1 KiB
Vue
Raw Normal View History

2021-01-03 14:38:32 +01:00
<template>
2023-04-08 02:01:42 +02:00
<div class="zbwaqsat">
<XPie class="pie" :value="usage" />
<div>
<p><i class="ph-hard-drives ph-bold ph-lg"></i>Disk</p>
<p>Total: {{ bytes(total, 1) }}</p>
<p>Free: {{ bytes(available, 1) }}</p>
<p>Used: {{ bytes(used, 1) }}</p>
</div>
2021-01-03 14:38:32 +01:00
</div>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import {} from "vue";
import XPie from "./pie.vue";
import bytes from "@/filters/bytes";
2021-01-03 14:38:32 +01:00
const props = defineProps<{
meta: any; // TODO
}>();
const usage = $computed(() => props.meta.fs.used / props.meta.fs.total);
const total = $computed(() => props.meta.fs.total);
const used = $computed(() => props.meta.fs.used);
const available = $computed(() => props.meta.fs.total - props.meta.fs.used);
2021-01-03 14:38:32 +01:00
</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;
> i {
2021-01-03 14:38:32 +01:00
margin-right: 4px;
}
}
}
}
}
</style>