sharkey/packages/frontend/src/widgets/server-metric/cpu.vue

72 lines
1.2 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2021-01-03 22:38:32 +09:00
<template>
<div class="vrvdvrys">
<XPie class="pie" :value="usage"/>
<div>
<p><i class="ti ti-cpu"></i>CPU</p>
2021-01-03 22:38:32 +09:00
<p>{{ meta.cpu.cores }} Logical cores</p>
<p>{{ meta.cpu.model }}</p>
</div>
</div>
</template>
<script lang="ts" setup>
import { onMounted, onBeforeUnmount, ref } from 'vue';
import * as Misskey from 'misskey-js';
2021-01-03 22:38:32 +09:00
import XPie from './pie.vue';
const props = defineProps<{
connection: Misskey.ChannelConnection<Misskey.Channels['serverStats']>,
meta: Misskey.entities.ServerInfoResponse
}>();
const usage = ref<number>(0);
function onStats(stats: Misskey.entities.ServerStats) {
usage.value = stats.cpu;
}
onMounted(() => {
props.connection.on('stats', onStats);
});
onBeforeUnmount(() => {
props.connection.off('stats', onStats);
2021-01-03 22:38:32 +09:00
});
</script>
<style lang="scss" scoped>
2021-01-03 22:38:32 +09:00
.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 {
2021-01-03 22:38:32 +09:00
margin-right: 4px;
}
}
}
}
}
</style>