Create a message for search disabled error

This commit is contained in:
JeDaYoshi 2021-07-07 23:00:44 +00:00
parent 162b42d9b0
commit 0a6c33af57
No known key found for this signature in database
GPG Key ID: 8060B288C274219D

View File

@ -2,22 +2,22 @@
import store from "../store"; import store from "../store";
import {router} from "../router"; import {router} from "../router";
const Msg = require("../../../src/models/msg");
function input(args) { function input(args) {
const {channel} = store.state.activeChannel;
if (!store.state.settings.searchEnabled) { if (!store.state.settings.searchEnabled) {
const disabled = "Search is currently not enabled."; const message = new Msg({
store.commit("currentUserVisibleError", disabled); type: Msg.Type.ERROR,
setTimeout( text: "Search is currently not enabled.",
() => });
store.state.currentUserVisibleError === disabled && channel.messages.push(message);
store.commit("currentUserVisibleError", null),
5000
);
} else { } else {
router.push({ router.push({
name: "SearchResults", name: "SearchResults",
params: { params: {
id: store.state.activeChannel.channel.id, id: channel.id,
}, },
query: { query: {
q: args.join(" "), q: args.join(" "),