b049633db7
* fix(client): refactor widgets and fix lint issues * Apply review suggestions from @Johann150 Co-authored-by: Johann150 <johann@qwertqwefsday.eu> Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
74 lines
1.2 KiB
Vue
74 lines
1.2 KiB
Vue
<template>
|
|
<div class="zlxnikvl">
|
|
<XPie class="pie" :value="usage"/>
|
|
<div>
|
|
<p><i class="fas fa-memory"></i>RAM</p>
|
|
<p>Total: {{ bytes(total, 1) }}</p>
|
|
<p>Used: {{ bytes(used, 1) }}</p>
|
|
<p>Free: {{ bytes(free, 1) }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, onBeforeUnmount } from 'vue';
|
|
import XPie from './pie.vue';
|
|
import bytes from '@/filters/bytes';
|
|
|
|
const props = defineProps<{
|
|
connection: any,
|
|
meta: any
|
|
}>();
|
|
|
|
let usage: number = $ref(0);
|
|
let total: number = $ref(0);
|
|
let used: number = $ref(0);
|
|
let free: number = $ref(0);
|
|
|
|
function onStats(stats) {
|
|
usage = stats.mem.active / props.meta.mem.total;
|
|
total = props.meta.mem.total;
|
|
used = stats.mem.active;
|
|
free = total - used;
|
|
}
|
|
|
|
onMounted(() => {
|
|
props.connection.on('stats', onStats);
|
|
});
|
|
|
|
onBeforeUnmount(() => {
|
|
props.connection.off('stats', onStats);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.zlxnikvl {
|
|
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 {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|