thelounge/client/js/hooks/use-close-channel.ts
Max Leiter dd05ee3a65
TypeScript and Vue 3 (#4559)
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00

39 lines
759 B
TypeScript

import eventbus from "../eventbus";
import socket from "../socket";
import {ClientChan} from "../types";
export default function useCloseChannel(channel: ClientChan) {
return () => {
if (channel.type === "lobby") {
eventbus.emit(
"confirm-dialog",
{
title: "Remove network",
text: `Are you sure you want to quit and remove ${channel.name}? This cannot be undone.`,
button: "Remove network",
},
(result: boolean) => {
if (!result) {
return;
}
channel.closed = true;
socket.emit("input", {
target: Number(channel.id),
text: "/quit",
});
}
);
return;
}
channel.closed = true;
socket.emit("input", {
target: Number(channel.id),
text: "/close",
});
};
}