8cf05f1d9f
Ability to edit contact information in conversation sidebar Co-authored-by: Sojan <sojan@pepalo.com>
89 lines
2.1 KiB
Vue
89 lines
2.1 KiB
Vue
<template>
|
|
<ul
|
|
v-if="cannedMessages.length"
|
|
id="canned-list"
|
|
class="vertical dropdown menu canned"
|
|
:style="{ top: getTopPadding() + 'rem' }"
|
|
>
|
|
<li
|
|
v-for="(item, index) in cannedMessages"
|
|
:id="`canned-${index}`"
|
|
:key="item.short_code"
|
|
:class="{ active: index === selectedIndex }"
|
|
@click="onListItemSelection(index)"
|
|
@mouseover="onHover(index)"
|
|
>
|
|
<a class="text-truncate">
|
|
<strong>{{ item.short_code }}</strong> - {{ item.content }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
|
|
export default {
|
|
props: ['onKeyenter', 'onClick'],
|
|
data() {
|
|
return {
|
|
selectedIndex: 0,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
cannedMessages: 'getCannedResponses',
|
|
}),
|
|
},
|
|
mounted() {
|
|
document.addEventListener('keydown', this.keyListener);
|
|
},
|
|
beforeDestroy() {
|
|
document.removeEventListener('keydown', this.keyListener);
|
|
},
|
|
methods: {
|
|
getTopPadding() {
|
|
if (this.cannedMessages.length <= 4) {
|
|
return -this.cannedMessages.length * 3.5;
|
|
}
|
|
return -14;
|
|
},
|
|
isUp(e) {
|
|
return e.keyCode === 38 || (e.ctrlKey && e.keyCode === 80); // UP, Ctrl-P
|
|
},
|
|
isDown(e) {
|
|
return e.keyCode === 40 || (e.ctrlKey && e.keyCode === 78); // DOWN, Ctrl-N
|
|
},
|
|
isEnter(e) {
|
|
return e.keyCode === 13;
|
|
},
|
|
keyListener(e) {
|
|
if (this.isUp(e)) {
|
|
if (!this.selectedIndex) {
|
|
this.selectedIndex = this.cannedMessages.length - 1;
|
|
} else {
|
|
this.selectedIndex -= 1;
|
|
}
|
|
}
|
|
if (this.isDown(e)) {
|
|
if (this.selectedIndex === this.cannedMessages.length - 1) {
|
|
this.selectedIndex = 0;
|
|
} else {
|
|
this.selectedIndex += 1;
|
|
}
|
|
}
|
|
if (this.isEnter(e)) {
|
|
this.onKeyenter(this.cannedMessages[this.selectedIndex].content);
|
|
}
|
|
this.$el.scrollTop = 34 * this.selectedIndex;
|
|
},
|
|
onHover(index) {
|
|
this.selectedIndex = index;
|
|
},
|
|
onListItemSelection(index) {
|
|
this.selectedIndex = index;
|
|
this.onClick(this.cannedMessages[this.selectedIndex].content);
|
|
},
|
|
},
|
|
};
|
|
</script>
|