2019-11-09 22:21:34 +00:00
|
|
|
"use strict";
|
2019-11-16 17:24:03 +00:00
|
|
|
|
2019-11-09 22:21:34 +00:00
|
|
|
import socket from "../socket";
|
2020-03-16 17:58:40 +00:00
|
|
|
import eventbus from "../eventbus";
|
2019-11-09 22:21:34 +00:00
|
|
|
|
|
|
|
export function generateChannelContextMenu($root, channel, network) {
|
|
|
|
const typeMap = {
|
|
|
|
lobby: "network",
|
|
|
|
channel: "chan",
|
|
|
|
query: "query",
|
|
|
|
special: "chan",
|
|
|
|
};
|
|
|
|
|
|
|
|
const closeMap = {
|
|
|
|
lobby: "Remove",
|
|
|
|
channel: "Leave",
|
|
|
|
query: "Close",
|
|
|
|
special: "Close",
|
|
|
|
};
|
|
|
|
|
|
|
|
let items = [
|
|
|
|
{
|
|
|
|
label: channel.name,
|
|
|
|
type: "item",
|
|
|
|
class: typeMap[channel.type],
|
|
|
|
link: `/chan-${channel.id}`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "divider",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
// Add menu items for lobbies
|
|
|
|
if (channel.type === "lobby") {
|
|
|
|
items = [
|
|
|
|
...items,
|
|
|
|
{
|
|
|
|
label: "Edit this network…",
|
|
|
|
type: "item",
|
|
|
|
class: "edit",
|
|
|
|
link: `/edit-network/${network.uuid}`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Join a channel…",
|
|
|
|
type: "item",
|
|
|
|
class: "join",
|
|
|
|
action: () => (network.isJoinChannelShown = true),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "List all channels",
|
|
|
|
type: "item",
|
|
|
|
class: "list",
|
|
|
|
action: () =>
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/list",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "List ignored users",
|
|
|
|
type: "item",
|
|
|
|
class: "list",
|
|
|
|
action: () =>
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/ignorelist",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
network.status.connected
|
|
|
|
? {
|
|
|
|
label: "Disconnect",
|
|
|
|
type: "item",
|
|
|
|
class: "disconnect",
|
|
|
|
action: () =>
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/disconnect",
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
: {
|
|
|
|
label: "Connect",
|
|
|
|
type: "item",
|
|
|
|
class: "connect",
|
|
|
|
action: () =>
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/connect",
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add menu items for channels
|
|
|
|
if (channel.type === "channel") {
|
2019-11-23 14:26:20 +00:00
|
|
|
items.push({
|
|
|
|
label: "Edit topic",
|
|
|
|
type: "item",
|
|
|
|
class: "edit",
|
|
|
|
action() {
|
|
|
|
channel.editTopic = true;
|
|
|
|
$root.switchToChannel(channel);
|
2019-11-09 22:21:34 +00:00
|
|
|
},
|
2019-11-23 14:26:20 +00:00
|
|
|
});
|
|
|
|
items.push({
|
|
|
|
label: "List banned users",
|
|
|
|
type: "item",
|
|
|
|
class: "list",
|
|
|
|
action() {
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/banlist",
|
|
|
|
});
|
2019-11-09 22:21:34 +00:00
|
|
|
},
|
2019-11-23 14:26:20 +00:00
|
|
|
});
|
2019-11-09 22:21:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add menu items for queries
|
|
|
|
if (channel.type === "query") {
|
2019-11-23 14:26:20 +00:00
|
|
|
items.push({
|
|
|
|
label: "User information",
|
|
|
|
type: "item",
|
|
|
|
class: "action-whois",
|
|
|
|
action() {
|
|
|
|
$root.switchToChannel(channel);
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/whois " + channel.name,
|
|
|
|
});
|
2019-11-09 22:21:34 +00:00
|
|
|
},
|
2019-11-23 14:26:20 +00:00
|
|
|
});
|
2019-11-09 22:21:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 08:57:38 +00:00
|
|
|
if (channel.type === "channel" || channel.type === "query") {
|
|
|
|
items.push({
|
|
|
|
label: "Clear history",
|
|
|
|
type: "item",
|
|
|
|
class: "clear-history",
|
|
|
|
action() {
|
2020-03-16 17:58:40 +00:00
|
|
|
eventbus.emit(
|
2020-02-25 09:16:05 +00:00
|
|
|
"confirm-dialog",
|
|
|
|
{
|
|
|
|
title: "Clear history",
|
|
|
|
text: `Are you sure you want to clear history for ${channel.name}? This cannot be undone.`,
|
|
|
|
button: "Clear history",
|
|
|
|
},
|
|
|
|
(result) => {
|
|
|
|
if (!result) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-30 08:57:38 +00:00
|
|
|
|
2020-02-25 09:16:05 +00:00
|
|
|
socket.emit("history:clear", {
|
|
|
|
target: channel.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
2020-01-30 08:57:38 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-09 22:21:34 +00:00
|
|
|
// Add close menu item
|
|
|
|
items.push({
|
|
|
|
label: closeMap[channel.type],
|
|
|
|
type: "item",
|
|
|
|
class: "close",
|
|
|
|
action() {
|
2019-11-23 16:44:23 +00:00
|
|
|
$root.closeChannel(channel);
|
2019-11-09 22:21:34 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function generateUserContextMenu($root, channel, network, user) {
|
2019-11-23 14:26:20 +00:00
|
|
|
const currentChannelUser = channel.users.find((u) => u.nick === network.nick) || {};
|
2020-09-01 08:39:36 +00:00
|
|
|
const currentChannelModes = currentChannelUser.modes || [];
|
2019-11-09 22:21:34 +00:00
|
|
|
|
|
|
|
const whois = () => {
|
|
|
|
const chan = $root.$store.getters.findChannelOnCurrentNetwork(user.nick);
|
|
|
|
|
|
|
|
if (chan) {
|
|
|
|
$root.switchToChannel(chan);
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/whois " + user.nick,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const items = [
|
|
|
|
{
|
|
|
|
label: user.nick,
|
|
|
|
type: "item",
|
|
|
|
class: "user",
|
|
|
|
action: whois,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "divider",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "User information",
|
|
|
|
type: "item",
|
|
|
|
class: "action-whois",
|
|
|
|
action: whois,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: "Direct messages",
|
|
|
|
type: "item",
|
|
|
|
class: "action-query",
|
|
|
|
action() {
|
|
|
|
const chan = $root.$store.getters.findChannelOnCurrentNetwork(user.nick);
|
|
|
|
|
|
|
|
if (chan) {
|
|
|
|
$root.switchToChannel(chan);
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/query " + user.nick,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2020-09-01 08:39:36 +00:00
|
|
|
if (currentChannelModes.includes("@")) {
|
2019-11-09 22:21:34 +00:00
|
|
|
items.push({
|
|
|
|
label: "Kick",
|
|
|
|
type: "item",
|
|
|
|
class: "action-kick",
|
|
|
|
action() {
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/kick " + user.nick,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2020-09-01 08:39:36 +00:00
|
|
|
if (user.modes.includes("@")) {
|
2019-11-09 22:21:34 +00:00
|
|
|
items.push({
|
|
|
|
label: "Revoke operator (-o)",
|
|
|
|
type: "item",
|
|
|
|
class: "action-op",
|
|
|
|
action() {
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/deop " + user.nick,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
|
|
|
label: "Give operator (+o)",
|
|
|
|
type: "item",
|
|
|
|
class: "action-op",
|
|
|
|
action() {
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/op " + user.nick,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-09-01 08:39:36 +00:00
|
|
|
if (user.modes.includes("+")) {
|
2019-11-09 22:21:34 +00:00
|
|
|
items.push({
|
|
|
|
label: "Revoke voice (-v)",
|
|
|
|
type: "item",
|
|
|
|
class: "action-voice",
|
|
|
|
action() {
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/devoice " + user.nick,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
items.push({
|
|
|
|
label: "Give voice (+v)",
|
|
|
|
type: "item",
|
|
|
|
class: "action-voice",
|
|
|
|
action() {
|
|
|
|
socket.emit("input", {
|
|
|
|
target: channel.id,
|
|
|
|
text: "/voice " + user.nick,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|