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

83 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-20 00:56:39 +02:00
<template>
<div class="memory">
<x-pie class="pie" :value="usage"/>
<div>
<p>%fa:flask%Memory</p>
<p>Total: {{ total | bytes(1) }}</p>
<p>Used: {{ used | bytes(1) }}</p>
<p>Free: {{ free | bytes(1) }}</p>
</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'],
data() {
return {
usage: 0,
total: 0,
used: 0,
free: 0
};
},
mounted() {
this.connection.on('stats', this.onStats);
},
beforeDestroy() {
this.connection.off('stats', this.onStats);
},
methods: {
onStats(stats) {
2018-07-27 12:18:05 +03:00
stats.mem.free = stats.mem.total - stats.mem.used;
2018-02-20 00:56:39 +02:00
this.usage = stats.mem.used / stats.mem.total;
this.total = stats.mem.total;
this.used = stats.mem.used;
this.free = stats.mem.free;
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-20 01:50:49 +03:00
root(isDark)
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-04-20 01:50:49 +03:00
color isDark ? #a8b4bd : #505050
2018-02-20 00:56:39 +02:00
&:first-child
font-weight bold
> [data-fa]
margin-right 4px
&:after
content ""
display block
clear both
2018-04-20 01:50:49 +03:00
.memory[data-darkmode]
root(true)
.memory:not([data-darkmode])
root(false)
2018-02-20 00:56:39 +02:00
</style>