Files
chatwoot/app/javascript/shared/components/CustomerSatisfaction.vue
Sivin Varghese 3a693947b5 feat: Add RTL Support to Widget (#11022)
This PR adds RTL support to the web widget for improved right-to-left language compatibility, updates colors, and cleans up code.

Fixes https://linear.app/chatwoot/issue/CW-4089/rtl-issues-on-widget

https://github.com/chatwoot/chatwoot/issues/9791

Other PR: https://github.com/chatwoot/chatwoot/pull/11016
2025-03-21 09:39:03 -07:00

184 lines
4.7 KiB
Vue

<script>
import { mapGetters } from 'vuex';
import Spinner from 'shared/components/Spinner.vue';
import { CSAT_RATINGS } from 'shared/constants/messages';
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
import { getContrastingTextColor } from '@chatwoot/utils';
export default {
components: {
Spinner,
FluentIcon,
},
props: {
messageContentAttributes: {
type: Object,
default: () => {},
},
messageId: {
type: Number,
required: true,
},
},
data() {
return {
email: '',
ratings: CSAT_RATINGS,
selectedRating: null,
isUpdating: false,
feedback: '',
};
},
computed: {
...mapGetters({ widgetColor: 'appConfig/getWidgetColor' }),
isRatingSubmitted() {
return this.messageContentAttributes?.csat_survey_response?.rating;
},
isFeedbackSubmitted() {
return this.messageContentAttributes?.csat_survey_response
?.feedback_message;
},
isButtonDisabled() {
return !(this.selectedRating && this.feedback);
},
textColor() {
return getContrastingTextColor(this.widgetColor);
},
title() {
return this.isRatingSubmitted
? this.$t('CSAT.SUBMITTED_TITLE')
: this.$t('CSAT.TITLE');
},
},
mounted() {
if (this.isRatingSubmitted) {
const {
csat_survey_response: { rating, feedback_message },
} = this.messageContentAttributes;
this.selectedRating = rating;
this.feedback = feedback_message;
}
},
methods: {
buttonClass(rating) {
return [
{ selected: rating.value === this.selectedRating },
{ disabled: this.isRatingSubmitted },
{ hover: this.isRatingSubmitted },
'emoji-button',
];
},
async onSubmit() {
this.isUpdating = true;
try {
await this.$store.dispatch('message/update', {
submittedValues: {
csat_survey_response: {
rating: this.selectedRating,
feedback_message: this.feedback,
},
},
messageId: this.messageId,
});
} catch (error) {
// Ignore error
} finally {
this.isUpdating = false;
}
},
selectRating(rating) {
this.selectedRating = rating.value;
this.onSubmit();
},
},
};
</script>
<template>
<div
class="customer-satisfaction w-full bg-n-background dark:bg-n-solid-3 shadow-[0_0.25rem_6px_rgba(50,50,93,0.08),0_1px_3px_rgba(0,0,0,0.05)] ltr:rounded-bl-[0.25rem] rtl:rounded-br-[0.25rem] rounded-lg inline-block leading-[1.5] mt-1 border-t-2 border-t-n-brand border-solid"
:style="{ borderColor: widgetColor }"
>
<h6 class="text-n-slate-12 text-sm font-medium pt-5 px-2.5 text-center">
{{ title }}
</h6>
<div class="ratings flex justify-around py-5 px-4">
<button
v-for="rating in ratings"
:key="rating.key"
:class="buttonClass(rating)"
@click="selectRating(rating)"
>
{{ rating.emoji }}
</button>
</div>
<form
v-if="!isFeedbackSubmitted"
class="feedback-form flex"
@submit.prevent="onSubmit()"
>
<input
v-model="feedback"
:placeholder="$t('CSAT.PLACEHOLDER')"
@keydown.enter="onSubmit"
/>
<button
class="button small"
:disabled="isButtonDisabled"
:style="{
background: widgetColor,
borderColor: widgetColor,
color: textColor,
}"
>
<Spinner v-if="isUpdating && feedback" />
<FluentIcon v-else icon="chevron-right" />
</button>
</form>
</div>
</template>
<style lang="scss" scoped>
.customer-satisfaction {
.ratings {
.emoji-button {
@apply shadow-none grayscale text-2xl outline-none transition-all duration-200;
&.selected,
&:hover,
&:focus,
&:active {
@apply grayscale-0 scale-[1.32];
}
&.disabled {
@apply cursor-not-allowed opacity-50 pointer-events-none;
}
}
}
.feedback-form {
input {
@apply h-10 dark:bg-n-alpha-black1 rtl:rounded-tl-[0] rtl:rounded-tr-[0] ltr:rounded-tr-[0] ltr:rounded-tl-[0] rtl:rounded-bl-[0] ltr:rounded-br-[0] ltr:rounded-bl-[0.25rem] rtl:rounded-br-[0.25rem] rounded-lg p-2.5 w-full focus:ring-0 focus:outline-n-brand;
&::placeholder {
@apply text-n-slate-10;
}
}
.button {
@apply rtl:rounded-tr-[0] rtl:rounded-tl-[0] appearance-none ltr:rounded-tl-[0] ltr:rounded-tr-[0] rtl:rounded-br-[0] ltr:rounded-bl-[0] rounded-lg h-auto ltr:-ml-px rtl:-mr-px text-xl;
.spinner {
display: block;
padding: 0;
height: auto;
width: auto;
}
}
}
}
</style>