60 lines
1.2 KiB
Vue
Executable file
60 lines
1.2 KiB
Vue
Executable file
<template>
|
|
<div class="home">
|
|
<div class="header-wrap">
|
|
<ChatHeaderExpanded />
|
|
</div>
|
|
<ConversationWrap :messages="getConversation" />
|
|
<div class="footer-wrap">
|
|
<ChatFooter :on-send-message="handleSendMessage" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions, mapGetters } from 'vuex';
|
|
|
|
import ChatFooter from 'widget/components/ChatFooter.vue';
|
|
import ChatHeaderExpanded from 'widget/components/ChatHeaderExpanded.vue';
|
|
import ConversationWrap from 'widget/components/ConversationWrap.vue';
|
|
|
|
export default {
|
|
name: 'Home',
|
|
components: {
|
|
ChatFooter,
|
|
ChatHeaderExpanded,
|
|
ConversationWrap,
|
|
},
|
|
methods: {
|
|
...mapActions('conversation', ['sendMessage']),
|
|
handleSendMessage(content) {
|
|
this.sendMessage({
|
|
content,
|
|
});
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters('conversation', ['getConversation']),
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '~widget/assets/scss/woot.scss';
|
|
|
|
.home {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
background: $color-background;
|
|
|
|
.header-wrap {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.footer-wrap {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
</style>
|