mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-11 08:06:56 +00:00
* refactor(frontend): 非推奨となったReactivity Transformを使わないように * refactor: 不要な括弧を除去 * fix: 不要なアノテーションを除去 * fix: Refの配列をrefしている部分の対応 * refactor: 不要な括弧を除去 * fix: lint * refactor: Ref、ShallowRef、ComputedRefの変数の宣言をletからconstに置換 * fix: type error * chore: drop reactivity transform from eslint configuration * refactor: remove unnecessary import * fix: 対応漏れ
70 lines
1 KiB
Vue
70 lines
1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="vrvdvrys">
|
|
<XPie class="pie" :value="usage"/>
|
|
<div>
|
|
<p><i class="ti ti-cpu"></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, ref } from 'vue';
|
|
import XPie from './pie.vue';
|
|
|
|
const props = defineProps<{
|
|
connection: any,
|
|
meta: any
|
|
}>();
|
|
|
|
const usage = ref<number>(0);
|
|
|
|
function onStats(stats) {
|
|
usage.value = 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>
|