Create a message for search disabled error
This commit is contained in:
parent
162b42d9b0
commit
0a6c33af57
@ -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(" "),
|
||||||
|
Loading…
Reference in New Issue
Block a user