uptime-kuma/src/components/Status.vue
Louis Lam 90761cf831 Merge remote-tracking branch 'origin/master' into karelkryda_master
# Conflicts:
#	server/database.js
#	server/model/monitor.js
#	server/routers/api-router.js
#	server/server.js
#	src/components/HeartbeatBar.vue
#	src/components/MonitorList.vue
#	src/icon.js
#	src/layouts/Layout.vue
#	src/mixins/datetime.js
#	src/mixins/socket.js
#	src/router.js
#	src/util.js
2022-09-17 16:12:57 +08:00

64 lines
1.2 KiB
Vue

<template>
<span class="badge rounded-pill" :class=" 'bg-' + color ">{{ text }}</span>
</template>
<script>
export default {
props: {
/** Current status of monitor */
status: {
type: Number,
default: 0,
}
},
computed: {
color() {
if (this.status === 0) {
return "danger";
}
if (this.status === 1) {
return "primary";
}
if (this.status === 2) {
return "warning";
}
if (this.status === 3) {
return "maintenance";
}
return "secondary";
},
text() {
if (this.status === 0) {
return this.$t("Down");
}
if (this.status === 1) {
return this.$t("Up");
}
if (this.status === 2) {
return this.$t("Pending");
}
if (this.status === 3) {
return this.$t("Maintenance");
}
return this.$t("Unknown");
},
},
};
</script>
<style scoped>
span {
min-width: 64px;
}
</style>