mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
70 lines
1.3 KiB
Vue
Executable File
70 lines
1.3 KiB
Vue
Executable File
<script>
|
|
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
|
|
import { getContrastingTextColor } from '@chatwoot/utils';
|
|
|
|
export default {
|
|
name: 'UserMessageBubble',
|
|
props: {
|
|
message: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
widgetColor: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
setup() {
|
|
const { formatMessage } = useMessageFormatter();
|
|
return {
|
|
formatMessage,
|
|
};
|
|
},
|
|
computed: {
|
|
textColor() {
|
|
return getContrastingTextColor(this.widgetColor);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-dompurify-html="formatMessage(message, false)"
|
|
class="chat-bubble user"
|
|
:style="{ background: widgetColor, color: textColor }"
|
|
/>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import 'widget/assets/scss/variables.scss';
|
|
|
|
.chat-bubble.user::v-deep {
|
|
p code {
|
|
background-color: var(--w-600);
|
|
color: var(--white);
|
|
}
|
|
|
|
pre {
|
|
background-color: var(--w-800);
|
|
border-color: var(--w-700);
|
|
color: var(--white);
|
|
|
|
code {
|
|
background-color: transparent;
|
|
color: var(--white);
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
border-left: $space-micro solid var(--w-400);
|
|
background: var(--s-25);
|
|
border-color: var(--s-200);
|
|
|
|
p {
|
|
color: var(--s-800);
|
|
}
|
|
}
|
|
}
|
|
</style>
|