caee9535f1
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
213 lines
5.1 KiB
Vue
Executable file
213 lines
5.1 KiB
Vue
Executable file
<template>
|
|
<div
|
|
class="chat-message--input is-focused"
|
|
:class="$dm('bg-white ', 'dark:bg-slate-600')"
|
|
@keydown.esc="hideEmojiPicker"
|
|
>
|
|
<resizable-text-area
|
|
id="chat-input"
|
|
ref="chatInput"
|
|
v-model="userInput"
|
|
:aria-label="$t('CHAT_PLACEHOLDER')"
|
|
:placeholder="$t('CHAT_PLACEHOLDER')"
|
|
class="form-input user-message-input is-focused"
|
|
:class="inputColor"
|
|
@typing-off="onTypingOff"
|
|
@typing-on="onTypingOn"
|
|
@focus="onFocus"
|
|
@blur="onBlur"
|
|
/>
|
|
<div class="button-wrap">
|
|
<chat-attachment-button
|
|
v-if="showAttachment"
|
|
:class="$dm('text-black-900', 'dark:text-slate-100')"
|
|
:on-attach="onSendAttachment"
|
|
/>
|
|
<button
|
|
v-if="hasEmojiPickerEnabled"
|
|
class="icon-button flex justify-center items-center"
|
|
aria-label="Emoji picker"
|
|
@click="toggleEmojiPicker"
|
|
>
|
|
<fluent-icon icon="emoji" :class="emojiIconColor" />
|
|
</button>
|
|
<emoji-input
|
|
v-if="showEmojiPicker"
|
|
v-on-clickaway="hideEmojiPicker"
|
|
:on-click="emojiOnClick"
|
|
@keydown.esc="hideEmojiPicker"
|
|
/>
|
|
<chat-send-button
|
|
v-if="showSendButton"
|
|
:on-click="handleButtonClick"
|
|
:color="widgetColor"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import { mixin as clickaway } from 'vue-clickaway';
|
|
|
|
import ChatAttachmentButton from 'widget/components/ChatAttachment.vue';
|
|
import ChatSendButton from 'widget/components/ChatSendButton.vue';
|
|
import configMixin from '../mixins/configMixin';
|
|
import EmojiInput from 'shared/components/emoji/EmojiInput';
|
|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
|
|
import ResizableTextArea from 'shared/components/ResizableTextArea';
|
|
import darkModeMixin from 'widget/mixins/darkModeMixin.js';
|
|
|
|
export default {
|
|
name: 'ChatInputWrap',
|
|
components: {
|
|
ChatAttachmentButton,
|
|
ChatSendButton,
|
|
EmojiInput,
|
|
FluentIcon,
|
|
ResizableTextArea,
|
|
},
|
|
mixins: [clickaway, configMixin, darkModeMixin],
|
|
props: {
|
|
onSendMessage: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
onSendAttachment: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
userInput: '',
|
|
showEmojiPicker: false,
|
|
isFocused: false,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters({
|
|
widgetColor: 'appConfig/getWidgetColor',
|
|
isWidgetOpen: 'appConfig/getIsWidgetOpen',
|
|
}),
|
|
showAttachment() {
|
|
return this.hasAttachmentsEnabled && this.userInput.length === 0;
|
|
},
|
|
showSendButton() {
|
|
return this.userInput.length > 0;
|
|
},
|
|
inputColor() {
|
|
return `${this.$dm('bg-white', 'dark:bg-slate-600')}
|
|
${this.$dm('text-black-900', 'dark:text-slate-50')}`;
|
|
},
|
|
emojiIconColor() {
|
|
return this.showEmojiPicker
|
|
? `text-woot-500 ${this.$dm('text-black-900', 'dark:text-slate-100')}`
|
|
: `${this.$dm('text-black-900', 'dark:text-slate-100')}`;
|
|
},
|
|
},
|
|
watch: {
|
|
isWidgetOpen(isWidgetOpen) {
|
|
if (isWidgetOpen) {
|
|
this.focusInput();
|
|
}
|
|
},
|
|
},
|
|
destroyed() {
|
|
document.removeEventListener('keypress', this.handleEnterKeyPress);
|
|
},
|
|
mounted() {
|
|
document.addEventListener('keypress', this.handleEnterKeyPress);
|
|
if (this.isWidgetOpen) {
|
|
this.focusInput();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onBlur() {
|
|
this.isFocused = false;
|
|
},
|
|
onFocus() {
|
|
this.isFocused = true;
|
|
},
|
|
handleButtonClick() {
|
|
if (this.userInput && this.userInput.trim()) {
|
|
this.onSendMessage(this.userInput);
|
|
}
|
|
this.userInput = '';
|
|
this.focusInput();
|
|
},
|
|
handleEnterKeyPress(e) {
|
|
if (e.keyCode === 13 && !e.shiftKey) {
|
|
e.preventDefault();
|
|
this.handleButtonClick();
|
|
}
|
|
},
|
|
toggleEmojiPicker() {
|
|
this.showEmojiPicker = !this.showEmojiPicker;
|
|
},
|
|
hideEmojiPicker(e) {
|
|
if (this.showEmojiPicker) {
|
|
e.stopPropagation();
|
|
this.toggleEmojiPicker();
|
|
}
|
|
},
|
|
emojiOnClick(emoji) {
|
|
this.userInput = `${this.userInput}${emoji} `;
|
|
},
|
|
onTypingOff() {
|
|
this.toggleTyping('off');
|
|
},
|
|
onTypingOn() {
|
|
this.toggleTyping('on');
|
|
},
|
|
toggleTyping(typingStatus) {
|
|
this.$store.dispatch('conversation/toggleUserTyping', { typingStatus });
|
|
},
|
|
focusInput() {
|
|
this.$refs.chatInput.focus();
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '~widget/assets/scss/variables.scss';
|
|
@import '~widget/assets/scss/mixins.scss';
|
|
|
|
.chat-message--input {
|
|
align-items: center;
|
|
display: flex;
|
|
padding: 0 $space-small 0 $space-slab;
|
|
border-radius: 7px;
|
|
|
|
&.is-focused {
|
|
box-shadow: 0 0 0 1px $color-woot, 0 0 2px 3px $color-primary-light;
|
|
}
|
|
}
|
|
|
|
.emoji-dialog {
|
|
right: $space-one;
|
|
}
|
|
|
|
.button-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: $space-small;
|
|
}
|
|
|
|
.user-message-input {
|
|
border: 0;
|
|
height: $space-large;
|
|
min-height: $space-large;
|
|
max-height: 2.4 * $space-mega;
|
|
resize: none;
|
|
padding: 0;
|
|
padding-top: $space-smaller;
|
|
padding-bottom: $space-smaller;
|
|
margin-top: $space-small;
|
|
margin-bottom: $space-small;
|
|
}
|
|
</style>
|