4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 20:56:36 +00:00
AzuraCast/frontend/vue/components/Common/Badges/RunningBadge.vue

27 lines
545 B
Vue

<template>
<small class="badge badge-pill ml-2" :class="badgeClass">{{ badgeText }}</small>
</template>
<script setup>
import {computed} from "vue";
import {useGettext} from "vue3-gettext";
const props = defineProps({
running: Boolean
});
const badgeClass = computed(() => {
return (props.running)
? 'badge-success'
: 'badge-danger';
});
const {$gettext} = useGettext();
const badgeText = computed(() => {
return (props.running)
? $gettext('Running')
: $gettext('Not Running');
});
</script>