mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
7717535b63
* 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>
66 lines
953 B
Vue
66 lines
953 B
Vue
<template>
|
|
<div class="vrvdvrys">
|
|
<XPie class="pie" :value="usage"/>
|
|
<div>
|
|
<p><i class="fas fa-microchip"></i>CPU</p>
|
|
<p>{{ meta.cpu.cores }} Logical cores</p>
|
|
<p>{{ meta.cpu.model }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, onBeforeUnmount } from 'vue';
|
|
import XPie from './pie.vue';
|
|
|
|
const props = defineProps<{
|
|
connection: any,
|
|
meta: any
|
|
}>();
|
|
|
|
let usage: number = $ref(0);
|
|
|
|
function onStats(stats) {
|
|
usage = stats.cpu;
|
|
}
|
|
|
|
onMounted(() => {
|
|
props.connection.on('stats', onStats);
|
|
});
|
|
|
|
onBeforeUnmount(() => {
|
|
props.connection.off('stats', onStats);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.vrvdvrys {
|
|
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>
|