mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
<script setup lang="ts"> |
|
import { computed, inject } from '#imports' |
|
import { ColumnInj } from '~/context' |
|
import MdiStarIcon from '~icons/mdi/star' |
|
import MdiHeartIcon from '~icons/mdi/heart' |
|
import MdiMoonFullIcon from '~icons/mdi/moon-full' |
|
import MdiThumbUpIcon from '~icons/mdi/thumb-up' |
|
import MdiFlagIcon from '~icons/mdi/flag' |
|
|
|
interface Props { |
|
modelValue?: number |
|
readOnly?: boolean |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits(['update:modelValue']) |
|
|
|
const column = inject(ColumnInj) |
|
|
|
const ratingMeta = computed(() => { |
|
return { |
|
icon: { |
|
full: 'mdi-star', |
|
empty: 'mdi-star-outline', |
|
}, |
|
color: '#fcb401', |
|
max: 5, |
|
...(column?.meta || {}), |
|
} |
|
}) |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
</script> |
|
|
|
<template> |
|
<a-rate v-model:value="vModel" :count="ratingMeta.max" :style="`color: ${ratingMeta.color}`" :disabled="props.readOnly"> |
|
<template #character> |
|
<MdiStarIcon v-if="ratingMeta.icon.full === 'mdi-star'" class="text-sm" /> |
|
<MdiHeartIcon v-if="ratingMeta.icon.full === 'mdi-heart'" class="text-sm" /> |
|
<MdiMoonFullIcon v-if="ratingMeta.icon.full === 'mdi-moon-full'" class="text-sm" /> |
|
<MdiThumbUpIcon v-if="ratingMeta.icon.full === 'mdi-thumb-up'" class="text-sm" /> |
|
<MdiFlagIcon v-if="ratingMeta.icon.full === 'mdi-flag'" class="text-sm" /> |
|
</template> |
|
</a-rate> |
|
</template>
|
|
|