mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
These fixes are all auto generated and can be merged directly Fixes the following issues 1. Event used on components should be hypenated 2. Attribute orders in components 3. Use `unmounted` instead of `destroyed` 4. Add explicit `emits` declarations for components, autofixed [using this script](https://gist.github.com/scmmishra/6f549109b96400006bb69bbde392eddf) We ignore the top level v-if for now, we will fix it later
68 lines
1.3 KiB
Vue
68 lines
1.3 KiB
Vue
<script>
|
|
import { CSAT_RATINGS } from 'shared/constants/messages';
|
|
|
|
export default {
|
|
props: {
|
|
selectedRating: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
},
|
|
emits: ['selectRating'],
|
|
data() {
|
|
return {
|
|
ratings: CSAT_RATINGS,
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
buttonClass(rating) {
|
|
return [
|
|
{ selected: rating.value === this.selectedRating },
|
|
{ disabled: !!this.selectedRating },
|
|
{ hover: !!this.selectedRating },
|
|
'emoji-button shadow-none text-3xl lg:text-4xl outline-none mr-8',
|
|
];
|
|
},
|
|
onClick(rating) {
|
|
this.$emit('selectRating', rating.value);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="customer-satisfcation mb-2">
|
|
<div class="ratings flex py-5 px-0">
|
|
<button
|
|
v-for="rating in ratings"
|
|
:key="rating.key"
|
|
:class="buttonClass(rating)"
|
|
@click="onClick(rating)"
|
|
>
|
|
{{ rating.emoji }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.emoji-button {
|
|
filter: grayscale(100%);
|
|
&.selected,
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
filter: grayscale(0%);
|
|
transform: scale(1.32);
|
|
transition: transform 300ms;
|
|
}
|
|
|
|
&.disabled {
|
|
cursor: default;
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
</style>
|