mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 11:46:56 +01:00
78 lines
1.3 KiB
Vue
78 lines
1.3 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="zlxnikvl">
|
|
<XPie class="pie" :value="usage"/>
|
|
<div>
|
|
<p><i class="ph-selection-all ph-bold ph-lg"></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.js';
|
|
|
|
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>
|