Add context menu when clicking inline channel name (#4376)
This commit is contained in:
parent
172cd63739
commit
1d5291929c
@ -39,7 +39,11 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {generateUserContextMenu, generateChannelContextMenu} from "../js/helpers/contextMenu.js";
|
import {
|
||||||
|
generateUserContextMenu,
|
||||||
|
generateChannelContextMenu,
|
||||||
|
generateInlineChannelContextMenu,
|
||||||
|
} from "../js/helpers/contextMenu.js";
|
||||||
import eventbus from "../js/eventbus";
|
import eventbus from "../js/eventbus";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -65,12 +69,14 @@ export default {
|
|||||||
eventbus.on("contextmenu:cancel", this.close);
|
eventbus.on("contextmenu:cancel", this.close);
|
||||||
eventbus.on("contextmenu:user", this.openUserContextMenu);
|
eventbus.on("contextmenu:user", this.openUserContextMenu);
|
||||||
eventbus.on("contextmenu:channel", this.openChannelContextMenu);
|
eventbus.on("contextmenu:channel", this.openChannelContextMenu);
|
||||||
|
eventbus.on("contextmenu:inline-channel", this.openInlineChannelContextMenu);
|
||||||
},
|
},
|
||||||
destroyed() {
|
destroyed() {
|
||||||
eventbus.off("escapekey", this.close);
|
eventbus.off("escapekey", this.close);
|
||||||
eventbus.off("contextmenu:cancel", this.close);
|
eventbus.off("contextmenu:cancel", this.close);
|
||||||
eventbus.off("contextmenu:user", this.openUserContextMenu);
|
eventbus.off("contextmenu:user", this.openUserContextMenu);
|
||||||
eventbus.off("contextmenu:channel", this.openChannelContextMenu);
|
eventbus.off("contextmenu:channel", this.openChannelContextMenu);
|
||||||
|
eventbus.off("contextmenu:inline-channel", this.openInlineChannelContextMenu);
|
||||||
|
|
||||||
this.close();
|
this.close();
|
||||||
},
|
},
|
||||||
@ -94,6 +100,11 @@ export default {
|
|||||||
const items = generateChannelContextMenu(this.$root, data.channel, data.network);
|
const items = generateChannelContextMenu(this.$root, data.channel, data.network);
|
||||||
this.open(data.event, items);
|
this.open(data.event, items);
|
||||||
},
|
},
|
||||||
|
openInlineChannelContextMenu(data) {
|
||||||
|
const {network} = this.$store.state.activeChannel;
|
||||||
|
const items = generateInlineChannelContextMenu(this.$root, data.channel, network);
|
||||||
|
this.open(data.event, items);
|
||||||
|
},
|
||||||
openUserContextMenu(data) {
|
openUserContextMenu(data) {
|
||||||
const {network, channel} = this.$store.state.activeChannel;
|
const {network, channel} = this.$store.state.activeChannel;
|
||||||
|
|
||||||
|
@ -1,11 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<span class="inline-channel" dir="auto" role="button" tabindex="0" @click="onClick"
|
<span
|
||||||
|
class="inline-channel"
|
||||||
|
dir="auto"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
@click.prevent="openContextMenu"
|
||||||
|
@contextmenu.prevent="openContextMenu"
|
||||||
><slot></slot
|
><slot></slot
|
||||||
></span>
|
></span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import socket from "../js/socket";
|
import eventbus from "../js/eventbus";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "InlineChannel",
|
name: "InlineChannel",
|
||||||
@ -13,16 +19,10 @@ export default {
|
|||||||
channel: String,
|
channel: String,
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
openContextMenu() {
|
||||||
const existingChannel = this.$store.getters.findChannelOnCurrentNetwork(this.channel);
|
eventbus.emit("contextmenu:inline-channel", {
|
||||||
|
event: event,
|
||||||
if (existingChannel) {
|
channel: this.channel,
|
||||||
this.$root.switchToChannel(existingChannel);
|
|
||||||
}
|
|
||||||
|
|
||||||
socket.emit("input", {
|
|
||||||
target: this.$store.state.activeChannel.channel.id,
|
|
||||||
text: "/join " + this.channel,
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -183,6 +183,43 @@ export function generateChannelContextMenu($root, channel, network) {
|
|||||||
return items;
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function generateInlineChannelContextMenu($root, chan, network) {
|
||||||
|
const join = () => {
|
||||||
|
const channel = network.channels.find((c) => c.name === chan);
|
||||||
|
|
||||||
|
if (channel) {
|
||||||
|
$root.switchToChannel(channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
socket.emit("input", {
|
||||||
|
target: $root.$store.state.activeChannel.channel.id,
|
||||||
|
text: "/join " + chan,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const channel = network.channels.find((c) => c.name === chan);
|
||||||
|
|
||||||
|
if (channel) {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
label: "Go to channel",
|
||||||
|
type: "item",
|
||||||
|
class: "chan",
|
||||||
|
link: `/chan-${channel.id}`,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
label: "Join channel",
|
||||||
|
type: "item",
|
||||||
|
class: "join",
|
||||||
|
action: join,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
export function generateUserContextMenu($root, channel, network, user) {
|
export function generateUserContextMenu($root, channel, network, user) {
|
||||||
const currentChannelUser = channel
|
const currentChannelUser = channel
|
||||||
? channel.users.find((u) => u.nick === network.nick) || {}
|
? channel.users.find((u) => u.nick === network.nick) || {}
|
||||||
|
Loading…
Reference in New Issue
Block a user