2019-10-29 07:20:54 +00:00
|
|
|
<template>
|
2019-11-25 18:40:27 +00:00
|
|
|
<div
|
|
|
|
class="chat-bubble user"
|
|
|
|
:style="{ background: widgetColor }"
|
|
|
|
v-html="formatMessage(message)"
|
|
|
|
></div>
|
2019-10-29 07:20:54 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-11-23 18:59:55 +00:00
|
|
|
import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
|
2019-11-25 18:40:27 +00:00
|
|
|
import { mapGetters } from 'vuex';
|
2019-11-23 18:59:55 +00:00
|
|
|
|
2019-10-29 07:20:54 +00:00
|
|
|
export default {
|
|
|
|
name: 'UserMessageBubble',
|
2019-11-25 18:40:27 +00:00
|
|
|
computed: {
|
|
|
|
...mapGetters({
|
|
|
|
widgetColor: 'appConfig/getWidgetColor',
|
|
|
|
}),
|
|
|
|
},
|
2019-11-23 18:59:55 +00:00
|
|
|
mixins: [messageFormatterMixin],
|
2019-10-29 07:20:54 +00:00
|
|
|
props: {
|
|
|
|
message: String,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import '~widget/assets/scss/variables.scss';
|
|
|
|
@import '~widget/assets/scss/mixins.scss';
|
|
|
|
|
|
|
|
.chat-bubble {
|
|
|
|
@include light-shadow;
|
|
|
|
background: $color-woot;
|
|
|
|
border-radius: $space-two;
|
|
|
|
color: $color-white;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: $font-size-default;
|
|
|
|
line-height: 1.5;
|
|
|
|
max-width: 80%;
|
|
|
|
padding: $space-small $space-two;
|
2019-11-23 18:59:55 +00:00
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $color-white;
|
|
|
|
}
|
2019-10-29 07:20:54 +00:00
|
|
|
|
|
|
|
&.user {
|
|
|
|
border-bottom-right-radius: $space-smaller;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|