mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
# Pull Request Template
## Description
This PR allows users to dynamically pass custom welcome and availability
messages, along with UI feature toggles, via `window.chatwootSettings`.
If any of the following settings are provided, the widget will use them;
otherwise, it falls back to default behavior.
**New options:**
```
window.chatwootSettings = {
welcomeTitle: 'Need help?', // Custom widget title
welcomeDescription: 'We’re here to support you.', // Subtitle in the header
availableMessage: 'We’re online and ready to chat!', // Shown when team is online
unavailableMessage: 'We’re currently offline.', // Shown when team is unavailable
enableFileUpload: true, // Enable file attachments
enableEmojiPicker: true, // Enable emoji picker in chat input
enableEndConversation: true // Allow users to end the conversation
}
```
Fixes
https://linear.app/chatwoot/issue/CW-4589/add-options-to-windowchatwootsettings
## Type of change
- [x] New feature (non-breaking change which adds functionality)
## How Has This Been Tested?
### Loom video
https://www.loom.com/share/413fc4aa59384366b071450bd19d1bf8?sid=ff30fb4c-267c-4beb-80ab-d6f583aa960d
## Checklist:
- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my code
- [ ] I have commented on my code, particularly in hard-to-understand
areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [x] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream
modules
---------
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
58 lines
1.3 KiB
Vue
Executable File
58 lines
1.3 KiB
Vue
Executable File
<script setup>
|
|
import HeaderActions from './HeaderActions.vue';
|
|
import { computed } from 'vue';
|
|
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
|
|
|
|
const props = defineProps({
|
|
avatarUrl: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
introHeading: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
introBody: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
showPopoutButton: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
});
|
|
|
|
const { formatMessage } = useMessageFormatter();
|
|
|
|
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 line-clamp-4"
|
|
/>
|
|
<p
|
|
v-dompurify-html="formatMessage(introBody)"
|
|
class="text-lg leading-normal text-n-slate-11 [&_a]:underline line-clamp-6"
|
|
/>
|
|
</header>
|
|
</template>
|