hardlounge/client/js/hooks/use-close-channel.ts

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",
});
};
}