Close search results with escape
This commit is contained in:
parent
c439e51617
commit
371ebfb810
@ -93,6 +93,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import socket from "../../js/socket";
|
import socket from "../../js/socket";
|
||||||
|
import eventbus from "../../js/eventbus";
|
||||||
|
|
||||||
import SidebarToggle from "../SidebarToggle.vue";
|
import SidebarToggle from "../SidebarToggle.vue";
|
||||||
import Message from "../Message.vue";
|
import Message from "../Message.vue";
|
||||||
@ -171,11 +172,16 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.setActiveChannel();
|
this.setActiveChannel();
|
||||||
this.doSearch();
|
this.doSearch();
|
||||||
|
|
||||||
|
eventbus.on("escapekey", this.closeSearch);
|
||||||
this.$root.$on("re-search", this.doSearch); // Enable MessageSearchForm to search for the same query again
|
this.$root.$on("re-search", this.doSearch); // Enable MessageSearchForm to search for the same query again
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
this.$root.$off("re-search");
|
this.$root.$off("re-search");
|
||||||
},
|
},
|
||||||
|
destroyed() {
|
||||||
|
eventbus.off("escapekey", this.closeSearch);
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
setActiveChannel() {
|
setActiveChannel() {
|
||||||
this.$store.commit("activeChannel", this.chan);
|
this.$store.commit("activeChannel", this.chan);
|
||||||
|
Loading…
Reference in New Issue
Block a user