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.
51 lines
1.6 KiB
51 lines
1.6 KiB
<script setup lang="ts"> |
|
import { computed, inject } from '#imports' |
|
import { ColumnInj, IsFormInj } from '~/context' |
|
import MdiStarIcon from '~icons/mdi/star' |
|
import MdiStarOutlineIcon from '~icons/mdi/star-outline' |
|
|
|
interface Props { |
|
modelValue?: string | number |
|
readOnly?: boolean |
|
} |
|
|
|
const { modelValue: value, readOnly } = defineProps<Props>() |
|
const emit = defineEmits(['update:modelValue']) |
|
const column = inject(ColumnInj) |
|
const isForm = inject(IsFormInj) |
|
|
|
const ratingMeta = computed(() => { |
|
return { |
|
icon: { |
|
full: 'mdi-star', |
|
empty: 'mdi-star-outline', |
|
}, |
|
color: '#fcb401', |
|
max: 5, |
|
// ...(column?.meta || {}) |
|
} |
|
}) |
|
const localState = computed({ |
|
get: () => value, |
|
set: (val) => emit('update:modelValue', val), |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div class="d-100 h-100" :class="{ 'nc-cell-hover-show': localState === 0 || !localState }"> |
|
<v-rating v-model="localState" :length="ratingMeta.max" dense x-small :readonly="readOnly" clearable> |
|
<!-- todo: use the proper slot --> |
|
<template #item="{ isFilled, click }"> |
|
<!-- todo : custom color and icon --> |
|
<!-- <v-icon v-if="isFilled"- :size="15" :color="ratingMeta.color" @click="click"> --> |
|
<MdiStarIcon v-if="isFilled" :class="`text-[${ratingMeta.color}]`" @click="click" /> |
|
<!-- </v-icon> --> |
|
<!-- <v-icon v-else :color="ratingMeta.color" :size="15" class="nc-cell-hover-show" @click="click"> --> |
|
<MdiStarOutlineIcon v-else :class="`text-[${ratingMeta.color}]`" @click="click" /> |
|
<!-- </v-icon> --> |
|
</template> |
|
</v-rating> |
|
</div> |
|
</template> |
|
|
|
<style scoped></style>
|
|
|