6fdd4a2996
- Devise auth tokens are reset on password update - Avatar attachment file type is limited to jpeg,gif and png - Avatar attachment file size is limited to 15 mb - Widget Message attachments are limited to types ['image/png', 'image/jpeg', 'image/gif', 'image/bmp', 'image/tiff', 'application/pdf', 'audio/mpeg', 'video/mp4', 'audio/ogg', 'text/csv'] - Widget Message attachments are limited to 40Mb size limit.
244 lines
5.2 KiB
Vue
244 lines
5.2 KiB
Vue
<template>
|
|
<div class="bottom-box" :class="wrapClass">
|
|
<div class="left-wrap">
|
|
<woot-button
|
|
:title="$t('CONVERSATION.REPLYBOX.TIP_EMOJI_ICON')"
|
|
icon="ion-happy-outline"
|
|
emoji="😊"
|
|
color-scheme="secondary"
|
|
variant="smooth"
|
|
size="small"
|
|
@click="toggleEmojiPicker"
|
|
/>
|
|
|
|
<!-- ensure the same validations for attachment types are implemented in backend models as well -->
|
|
<file-upload
|
|
ref="upload"
|
|
:size="4096 * 4096"
|
|
accept="image/png, image/jpeg, image/gif, image/bmp, image/tiff, application/pdf, audio/mpeg, video/mp4, audio/ogg, text/csv"
|
|
:drop="true"
|
|
:drop-directory="false"
|
|
@input-file="onFileUpload"
|
|
>
|
|
<woot-button
|
|
v-if="showAttachButton"
|
|
class-names="button--upload"
|
|
:title="$t('CONVERSATION.REPLYBOX.TIP_ATTACH_ICON')"
|
|
icon="ion-android-attach"
|
|
emoji="📎"
|
|
color-scheme="secondary"
|
|
variant="smooth"
|
|
size="small"
|
|
/>
|
|
</file-upload>
|
|
<woot-button
|
|
v-if="enableRichEditor && !isOnPrivateNote"
|
|
icon="ion-quote"
|
|
emoji="🖊️"
|
|
color-scheme="secondary"
|
|
variant="smooth"
|
|
size="small"
|
|
:title="$t('CONVERSATION.REPLYBOX.TIP_FORMAT_ICON')"
|
|
@click="toggleFormatMode"
|
|
/>
|
|
<transition name="modal-fade">
|
|
<div
|
|
v-show="$refs.upload && $refs.upload.dropActive"
|
|
class="modal-mask"
|
|
>
|
|
<i class="ion-ios-cloud-upload-outline icon"></i>
|
|
<h4 class="page-sub-title">
|
|
{{ $t('CONVERSATION.REPLYBOX.DRAG_DROP') }}
|
|
</h4>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
<div class="right-wrap">
|
|
<div v-if="isFormatMode" class="enter-to-send--checkbox">
|
|
<input
|
|
:checked="enterToSendEnabled"
|
|
type="checkbox"
|
|
value="enterToSend"
|
|
@input="toggleEnterToSend"
|
|
/>
|
|
<label for="enterToSend">
|
|
{{ $t('CONVERSATION.REPLYBOX.ENTER_TO_SEND') }}
|
|
</label>
|
|
</div>
|
|
<woot-button
|
|
size="small"
|
|
:class-names="buttonClass"
|
|
:is-disabled="isSendDisabled"
|
|
@click="onSend"
|
|
>
|
|
{{ sendButtonText }}
|
|
</woot-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import FileUpload from 'vue-upload-component';
|
|
import {
|
|
hasPressedAltAndWKey,
|
|
hasPressedAltAndAKey,
|
|
} from 'shared/helpers/KeyboardHelpers';
|
|
import eventListenerMixins from 'shared/mixins/eventListenerMixins';
|
|
|
|
import { REPLY_EDITOR_MODES } from './constants';
|
|
export default {
|
|
name: 'ReplyTopPanel',
|
|
components: { FileUpload },
|
|
mixins: [eventListenerMixins],
|
|
props: {
|
|
mode: {
|
|
type: String,
|
|
default: REPLY_EDITOR_MODES.REPLY,
|
|
},
|
|
onSend: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
sendButtonText: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
showFileUpload: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
onFileUpload: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
showEmojiPicker: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
toggleEmojiPicker: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
isSendDisabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
setFormatMode: {
|
|
type: Function,
|
|
default: () => {},
|
|
},
|
|
isFormatMode: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
isOnPrivateNote: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
enableRichEditor: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
enterToSendEnabled: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
computed: {
|
|
isNote() {
|
|
return this.mode === REPLY_EDITOR_MODES.NOTE;
|
|
},
|
|
wrapClass() {
|
|
return {
|
|
'is-note-mode': this.isNote,
|
|
};
|
|
},
|
|
buttonClass() {
|
|
return {
|
|
warning: this.isNote,
|
|
};
|
|
},
|
|
showAttachButton() {
|
|
return this.showFileUpload || this.isNote;
|
|
},
|
|
},
|
|
methods: {
|
|
handleKeyEvents(e) {
|
|
if (hasPressedAltAndWKey(e)) {
|
|
this.toggleFormatMode();
|
|
}
|
|
if (hasPressedAltAndAKey(e)) {
|
|
this.$refs.upload.$children[1].$el.click();
|
|
}
|
|
},
|
|
toggleFormatMode() {
|
|
this.setFormatMode(!this.isFormatMode);
|
|
},
|
|
toggleEnterToSend() {
|
|
this.$emit('toggleEnterToSend', !this.enterToSendEnabled);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.bottom-box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: var(--space-slab) var(--space-normal);
|
|
|
|
&.is-note-mode {
|
|
background: var(--y-50);
|
|
}
|
|
}
|
|
|
|
.left-wrap .button {
|
|
margin-right: var(--space-small);
|
|
}
|
|
|
|
.left-wrap {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
|
|
.right-wrap {
|
|
display: flex;
|
|
|
|
.enter-to-send--checkbox {
|
|
align-items: center;
|
|
display: flex;
|
|
|
|
input {
|
|
margin: 0;
|
|
}
|
|
|
|
label {
|
|
color: var(--s-500);
|
|
font-size: var(--font-size-mini);
|
|
}
|
|
}
|
|
}
|
|
|
|
::v-deep .file-uploads {
|
|
label {
|
|
cursor: pointer;
|
|
}
|
|
&:hover .button {
|
|
background: var(--s-100);
|
|
}
|
|
}
|
|
|
|
.modal-mask {
|
|
color: var(--s-600);
|
|
background: var(--white-transparent);
|
|
flex-direction: column;
|
|
}
|
|
|
|
.page-sub-title {
|
|
color: var(--s-600);
|
|
}
|
|
|
|
.icon {
|
|
font-size: 8rem;
|
|
}
|
|
</style>
|