mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
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
55 lines
1.1 KiB
Vue
Executable File
55 lines
1.1 KiB
Vue
Executable File
<script setup>
|
|
import HeaderActions from './HeaderActions.vue';
|
|
import { computed } from 'vue';
|
|
|
|
const props = defineProps({
|
|
avatarUrl: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
introHeading: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
introBody: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
showPopoutButton: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
});
|
|
|
|
const containerClasses = computed(() => [
|
|
props.avatarUrl ? 'justify-between' : 'justify-end',
|
|
]);
|
|
</script>
|
|
|
|
<template>
|
|
<header
|
|
class="header-expanded pt-6 pb-4 px-5 relative box-border w-full bg-transparent"
|
|
>
|
|
<div class="flex items-start" :class="containerClasses">
|
|
<img
|
|
v-if="avatarUrl"
|
|
class="h-12 rounded-full"
|
|
:src="avatarUrl"
|
|
alt="Avatar"
|
|
/>
|
|
<HeaderActions
|
|
:show-popout-button="showPopoutButton"
|
|
:show-end-conversation-button="false"
|
|
/>
|
|
</div>
|
|
<h2
|
|
v-dompurify-html="introHeading"
|
|
class="mt-4 text-2xl mb-1.5 font-medium text-n-slate-12"
|
|
/>
|
|
<p
|
|
v-dompurify-html="introBody"
|
|
class="text-lg leading-normal text-n-slate-11"
|
|
/>
|
|
</header>
|
|
</template>
|