Sharkey/src/client/app/common/views/widgets/server.cpu.vue

69 lines
995 B
Vue
Raw Normal View History

2018-02-20 00:56:39 +02:00
<template>
<div class="cpu">
<x-pie class="pie" :value="usage"/>
<div>
<p><fa icon="microchip"/>CPU</p>
2018-02-21 17:07:37 +02:00
<p>{{ meta.cpu.cores }} Cores</p>
<p>{{ meta.cpu.model }}</p>
2018-02-20 00:56:39 +02:00
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import XPie from './server.pie.vue';
export default Vue.extend({
components: {
2018-02-20 18:39:51 +02:00
XPie
2018-02-20 00:56:39 +02:00
},
props: ['connection', 'meta'],
data() {
return {
usage: 0
};
},
mounted() {
this.connection.on('stats', this.onStats);
},
beforeDestroy() {
this.connection.off('stats', this.onStats);
},
methods: {
onStats(stats) {
this.usage = stats.cpu_usage;
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 13:59:19 +03:00
.cpu
2018-02-20 00:56:39 +02:00
> .pie
padding 10px
height 100px
float left
> div
float left
width calc(100% - 100px)
padding 10px 10px 10px 0
> p
margin 0
font-size 12px
2018-09-28 13:59:19 +03:00
color var(--chartCaption)
2018-02-20 00:56:39 +02:00
&:first-child
font-weight bold
> [data-icon]
2018-02-20 00:56:39 +02:00
margin-right 4px
&:after
content ""
display block
clear both
</style>