69 lines
964 B
Vue
69 lines
964 B
Vue
|
<template>
|
||
|
<div class="cpu">
|
||
|
<x-pie class="pie" :value="usage"/>
|
||
|
<div>
|
||
|
<p>%fa:microchip%CPU</p>
|
||
|
<p>{{ cores }} Cores</p>
|
||
|
<p>{{ model }}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import XPie from './server.pie.vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
components: {
|
||
|
'x-pie': XPie
|
||
|
},
|
||
|
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>
|
||
|
.cpu
|
||
|
> .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
|
||
|
color #505050
|
||
|
|
||
|
&:first-child
|
||
|
font-weight bold
|
||
|
|
||
|
> [data-fa]
|
||
|
margin-right 4px
|
||
|
|
||
|
&:after
|
||
|
content ""
|
||
|
display block
|
||
|
clear both
|
||
|
|
||
|
</style>
|