mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-13 12:47:28 +01:00
239 lines
6.3 KiB
Vue
239 lines
6.3 KiB
Vue
<template lang="pug">
|
|
.row.chat-row
|
|
.col-12
|
|
h3(v-once) {{ label }}
|
|
|
|
.row
|
|
textarea(:placeholder='placeholder',
|
|
v-model='newMessage',
|
|
ref='user-entry',
|
|
:class='{"user-entry": newMessage}',
|
|
@keydown='updateCarretPosition',
|
|
@keyup.ctrl.enter='sendMessageShortcut()',
|
|
@paste='disableMessageSendShortcut()',
|
|
maxlength='3000'
|
|
)
|
|
span {{ currentLength }} / 3000
|
|
autocomplete(
|
|
:text='newMessage',
|
|
v-on:select="selectedAutocomplete",
|
|
:textbox='textbox',
|
|
:coords='coords',
|
|
:caretPosition = 'caretPosition',
|
|
:chat='group.chat')
|
|
|
|
.row.chat-actions
|
|
.col-6.chat-receive-actions
|
|
button.btn.btn-secondary.float-left.fetch(v-once, @click='fetchRecentMessages()') {{ $t('fetchRecentMessages') }}
|
|
button.btn.btn-secondary.float-left(v-once, @click='reverseChat()') {{ $t('reverseChat') }}
|
|
.col-6.chat-send-actions
|
|
button.btn.btn-secondary.send-chat.float-right(v-once, @click='sendMessage()') {{ $t('send') }}
|
|
|
|
community-guidelines
|
|
|
|
slot(
|
|
name="additionRow",
|
|
)
|
|
|
|
.row
|
|
.hr.col-12
|
|
chat-message(:chat.sync='group.chat', :group-type='group.type', :group-id='group._id', :group-name='group.name')
|
|
</template>
|
|
|
|
<script>
|
|
import debounce from 'lodash/debounce';
|
|
|
|
import autocomplete from '../chat/autoComplete';
|
|
import communityGuidelines from './communityGuidelines';
|
|
import chatMessage from '../chat/chatMessages';
|
|
|
|
export default {
|
|
props: ['label', 'group', 'placeholder'],
|
|
components: {
|
|
autocomplete,
|
|
communityGuidelines,
|
|
chatMessage,
|
|
},
|
|
data () {
|
|
return {
|
|
newMessage: '',
|
|
sending: false,
|
|
caretPosition: 0,
|
|
chat: {
|
|
submitDisable: false,
|
|
submitTimeout: null,
|
|
},
|
|
coords: {
|
|
TOP: 0,
|
|
LEFT: 0,
|
|
},
|
|
textbox: this.$refs,
|
|
};
|
|
},
|
|
computed: {
|
|
currentLength () {
|
|
return this.newMessage.length;
|
|
},
|
|
},
|
|
methods: {
|
|
// https://medium.com/@_jh3y/how-to-where-s-the-caret-getting-the-xy-position-of-the-caret-a24ba372990a
|
|
getCoord (e, text) {
|
|
this.caretPosition = text.selectionEnd;
|
|
let div = document.createElement('div');
|
|
let span = document.createElement('span');
|
|
let copyStyle = getComputedStyle(text);
|
|
|
|
[].forEach.call(copyStyle, (prop) => {
|
|
div.style[prop] = copyStyle[prop];
|
|
});
|
|
|
|
div.style.position = 'absolute';
|
|
document.body.appendChild(div);
|
|
div.textContent = text.value.substr(0, this.caretPosition);
|
|
span.textContent = text.value.substr(this.caretPosition) || '.';
|
|
div.appendChild(span);
|
|
this.coords = {
|
|
TOP: span.offsetTop,
|
|
LEFT: span.offsetLeft,
|
|
};
|
|
document.body.removeChild(div);
|
|
},
|
|
updateCarretPosition: debounce(function updateCarretPosition (eventUpdate) {
|
|
this._updateCarretPosition(eventUpdate);
|
|
}, 250),
|
|
_updateCarretPosition (eventUpdate) {
|
|
let text = eventUpdate.target;
|
|
this.getCoord(eventUpdate, text);
|
|
},
|
|
async sendMessageShortcut () {
|
|
// If the user recently pasted in the text field, don't submit
|
|
if (!this.chat.submitDisable) {
|
|
this.sendMessage();
|
|
}
|
|
},
|
|
async sendMessage () {
|
|
if (this.sending) return;
|
|
this.sending = true;
|
|
let response = await this.$store.dispatch('chat:postChat', {
|
|
group: this.group,
|
|
message: this.newMessage,
|
|
});
|
|
this.group.chat.unshift(response.message);
|
|
this.newMessage = '';
|
|
this.sending = false;
|
|
|
|
// @TODO: I would like to not reload everytime we send. Why are we reloading?
|
|
// The response has all the necessary data...
|
|
let chat = await this.$store.dispatch('chat:getChat', {groupId: this.group._id});
|
|
this.group.chat = chat;
|
|
},
|
|
|
|
disableMessageSendShortcut () {
|
|
// Some users were experiencing accidental sending of messages after pasting
|
|
// So, after pasting, disable the shortcut for a second.
|
|
this.chat.submitDisable = true;
|
|
|
|
if (this.chat.submitTimeout) {
|
|
// If someone pastes during the disabled period, prevent early re-enable
|
|
clearTimeout(this.chat.submitTimeout);
|
|
this.chat.submitTimeout = null;
|
|
}
|
|
|
|
this.chat.submitTimeout = window.setTimeout(() => {
|
|
this.chat.submitTimeout = null;
|
|
this.chat.submitDisable = false;
|
|
}, 500);
|
|
},
|
|
|
|
selectedAutocomplete (newText) {
|
|
this.newMessage = newText;
|
|
},
|
|
|
|
fetchRecentMessages () {
|
|
this.$emit('fetchRecentMessages');
|
|
},
|
|
reverseChat () {
|
|
this.group.chat.reverse();
|
|
},
|
|
},
|
|
beforeRouteUpdate (to, from, next) {
|
|
// Reset chat
|
|
this.newMessage = '';
|
|
this.coords = {
|
|
TOP: 0,
|
|
LEFT: 0,
|
|
};
|
|
|
|
next();
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '~client/assets/scss/colors.scss';
|
|
@import '~client/assets/scss/variables.scss';
|
|
|
|
.chat-actions {
|
|
margin-top: 1em;
|
|
|
|
.chat-receive-actions {
|
|
padding-left: 0;
|
|
|
|
button {
|
|
margin-bottom: 1em;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 1em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chat-send-actions {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
.chat-row {
|
|
position: relative;
|
|
|
|
textarea {
|
|
min-height: 150px;
|
|
width: 100%;
|
|
background-color: $white;
|
|
border: solid 1px $gray-400;
|
|
font-style: italic;
|
|
line-height: 1.43;
|
|
color: $gray-300;
|
|
padding: .5em;
|
|
}
|
|
|
|
.user-entry {
|
|
font-style: normal;
|
|
color: $black;
|
|
}
|
|
|
|
.hr {
|
|
width: 100%;
|
|
height: 20px;
|
|
border-bottom: 1px solid $gray-500;
|
|
text-align: center;
|
|
margin: 2em 0;
|
|
}
|
|
|
|
.hr-middle {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
font-family: 'Roboto Condensed';
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
color: $gray-200;
|
|
background-color: $gray-700;
|
|
padding: .2em;
|
|
margin-top: .2em;
|
|
display: inline-block;
|
|
width: 100px;
|
|
}
|
|
}
|
|
|
|
</style>
|