Chatwoot/app/javascript/widget/components/ChatMessage.vue

38 lines
739 B
Vue
Raw Normal View History

<template>
2020-03-30 06:45:06 +00:00
<UserMessage v-if="isUserMessage" :message="message" />
<AgentMessage v-else :message="message" />
</template>
<script>
import AgentMessage from 'widget/components/AgentMessage.vue';
import UserMessage from 'widget/components/UserMessage.vue';
import { MESSAGE_TYPE } from 'widget/helpers/constants';
export default {
components: {
AgentMessage,
UserMessage,
},
props: {
message: {
type: Object,
default: () => {},
},
},
computed: {
isUserMessage() {
return this.message.message_type === MESSAGE_TYPE.INCOMING;
},
},
};
</script>
<style scoped lang="scss">
.message-wrap {
display: flex;
flex-direction: row;
align-items: flex-end;
max-width: 90%;
}
</style>