43 lines
1.1 KiB
Vue
43 lines
1.1 KiB
Vue
|
|
<script setup>
|
||
|
|
import { computed } from 'vue';
|
||
|
|
import { useI18n } from 'vue-i18n';
|
||
|
|
import Icon from 'dashboard/components-next/icon/Icon.vue';
|
||
|
|
|
||
|
|
const props = defineProps({
|
||
|
|
type: {
|
||
|
|
type: String,
|
||
|
|
default: 'resolution',
|
||
|
|
validator: value => ['pre-chat', 'resolution'].includes(value),
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
const { t } = useI18n();
|
||
|
|
|
||
|
|
const attributeConfig = {
|
||
|
|
'pre-chat': {
|
||
|
|
colorClass: 'text-n-blue-11',
|
||
|
|
icon: 'i-lucide-message-circle',
|
||
|
|
labelKey: 'ATTRIBUTES_MGMT.BADGES.PRE_CHAT',
|
||
|
|
},
|
||
|
|
resolution: {
|
||
|
|
colorClass: 'text-n-teal-11',
|
||
|
|
icon: 'i-lucide-circle-check-big',
|
||
|
|
labelKey: 'ATTRIBUTES_MGMT.BADGES.RESOLUTION',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
const config = computed(
|
||
|
|
() => attributeConfig[props.type] || attributeConfig.resolution
|
||
|
|
);
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div
|
||
|
|
class="flex gap-1 justify-center items-center px-1.5 py-1 rounded-md shadow outline-1 outline outline-n-container bg-n-solid-2"
|
||
|
|
>
|
||
|
|
<Icon :icon="config.icon" class="size-4" :class="config.colorClass" />
|
||
|
|
<span class="text-xs" :class="config.colorClass">{{
|
||
|
|
t(config.labelKey)
|
||
|
|
}}</span>
|
||
|
|
</div>
|
||
|
|
</template>
|