17587d8a0c
* Remove thumbnail * Show grouped messages
89 lines
1.8 KiB
Vue
Executable file
89 lines
1.8 KiB
Vue
Executable file
<template>
|
|
<div class="agent-message">
|
|
<div class="avatar-wrap">
|
|
<thumbnail
|
|
v-if="showAvatar"
|
|
:src="avatarUrl"
|
|
size="24px"
|
|
:username="agentName"
|
|
/>
|
|
</div>
|
|
<div class="message-wrap">
|
|
<AgentMessageBubble :message="message" />
|
|
<p v-if="showAvatar" class="agent-name">
|
|
{{ agentName }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AgentMessageBubble from 'widget/components/AgentMessageBubble.vue';
|
|
import Thumbnail from 'dashboard/components/widgets/Thumbnail.vue';
|
|
|
|
export default {
|
|
name: 'AgentMessage',
|
|
components: {
|
|
AgentMessageBubble,
|
|
Thumbnail,
|
|
},
|
|
props: {
|
|
message: String,
|
|
avatarUrl: String,
|
|
agentName: String,
|
|
showAvatar: Boolean,
|
|
createdAt: Number,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style lang="scss">
|
|
@import '~widget/assets/scss/variables.scss';
|
|
.conversation-wrap {
|
|
.agent-message {
|
|
align-items: flex-end;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
margin: 0 0 $space-micro $space-small;
|
|
max-width: 88%;
|
|
|
|
& + .agent-message {
|
|
margin-bottom: $space-smaller;
|
|
|
|
.chat-bubble {
|
|
border-top-left-radius: $space-smaller;
|
|
}
|
|
}
|
|
|
|
& + .user-message {
|
|
margin-top: $space-normal;
|
|
}
|
|
|
|
.avatar-wrap {
|
|
height: $space-medium;
|
|
width: $space-medium;
|
|
|
|
.user-thumbnail-box {
|
|
margin-top: -$space-large;
|
|
}
|
|
}
|
|
|
|
.message-wrap {
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
margin-left: $space-small;
|
|
max-width: 90%;
|
|
}
|
|
}
|
|
|
|
.agent-name {
|
|
color: $color-body;
|
|
font-size: $font-size-default;
|
|
font-weight: $font-weight-medium;
|
|
margin-bottom: $space-small;
|
|
margin-top: $space-small;
|
|
}
|
|
}
|
|
</style>
|