2021-03-02 16:46:48 -05:00
|
|
|
|
import * as irc from "../lib/irc.js";
|
|
|
|
|
import Client from "../lib/client.js";
|
|
|
|
|
import Buffer from "./buffer.js";
|
|
|
|
|
import BufferList from "./buffer-list.js";
|
|
|
|
|
import BufferHeader from "./buffer-header.js";
|
|
|
|
|
import MemberList from "./member-list.js";
|
2021-03-09 07:25:31 -05:00
|
|
|
|
import ConnectForm from "./connect-form.js";
|
|
|
|
|
import JoinForm from "./join-form.js";
|
2021-03-08 11:05:48 -05:00
|
|
|
|
import Help from "./help.js";
|
2021-03-08 12:15:04 -05:00
|
|
|
|
import NetworkForm from "./network-form.js";
|
2021-03-02 16:46:48 -05:00
|
|
|
|
import Composer from "./composer.js";
|
|
|
|
|
import ScrollManager from "./scroll-manager.js";
|
2021-03-08 10:23:16 -05:00
|
|
|
|
import Dialog from "./dialog.js";
|
2021-03-02 16:46:48 -05:00
|
|
|
|
import { html, Component, createRef } from "../lib/index.js";
|
|
|
|
|
import { strip as stripANSI } from "../lib/ansi.js";
|
2021-06-04 12:03:03 -04:00
|
|
|
|
import { SERVER_BUFFER, BufferType, ReceiptType, ServerStatus, Unread, State } from "../state.js";
|
2021-03-02 16:46:48 -05:00
|
|
|
|
import commands from "../commands.js";
|
|
|
|
|
import { setup as setupKeybindings } from "../keybindings.js";
|
2021-05-26 12:43:11 -04:00
|
|
|
|
import * as store from "../store.js";
|
2020-06-26 04:35:38 -04:00
|
|
|
|
|
2021-06-10 12:34:34 -04:00
|
|
|
|
const baseConfig = {
|
|
|
|
|
server: {},
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-26 17:17:23 -04:00
|
|
|
|
const configPromise = fetch("./config.json")
|
2021-05-25 06:33:22 -04:00
|
|
|
|
.then((resp) => {
|
|
|
|
|
if (resp.ok) {
|
|
|
|
|
return resp.json();
|
|
|
|
|
}
|
|
|
|
|
if (resp.status !== 404) {
|
|
|
|
|
console.error("Failed to fetch config: HTTP error:", resp.status, resp.statusText);
|
|
|
|
|
}
|
|
|
|
|
return {};
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
console.error("Failed to fetch config:", err);
|
|
|
|
|
return {};
|
2021-06-10 12:34:34 -04:00
|
|
|
|
})
|
|
|
|
|
.then((config) => {
|
|
|
|
|
return {
|
|
|
|
|
...baseConfig,
|
|
|
|
|
...config,
|
|
|
|
|
};
|
2021-05-25 06:33:22 -04:00
|
|
|
|
});
|
|
|
|
|
|
2020-07-15 12:21:09 -04:00
|
|
|
|
const CHATHISTORY_MAX_SIZE = 4000;
|
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
function parseQueryString() {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let query = window.location.search.substring(1);
|
|
|
|
|
let params = {};
|
2020-06-18 08:23:08 -04:00
|
|
|
|
query.split('&').forEach((s) => {
|
|
|
|
|
if (!s) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let pair = s.split('=');
|
2020-06-18 08:23:08 -04:00
|
|
|
|
params[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || "");
|
|
|
|
|
});
|
|
|
|
|
return params;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-31 11:57:17 -04:00
|
|
|
|
function fillConnectParams(params) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let host = window.location.host || "localhost:8080";
|
|
|
|
|
let proto = "wss:";
|
2021-05-31 12:11:33 -04:00
|
|
|
|
if (window.location.protocol != "https:") {
|
|
|
|
|
proto = "ws:";
|
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let path = window.location.pathname || "/";
|
2021-05-31 12:11:33 -04:00
|
|
|
|
if (!window.location.host) {
|
|
|
|
|
path = "/";
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-31 11:57:17 -04:00
|
|
|
|
params = { ...params };
|
2021-05-31 12:11:33 -04:00
|
|
|
|
if (!params.url) {
|
|
|
|
|
params.url = proto + "//" + host + path + "socket";
|
|
|
|
|
}
|
|
|
|
|
if (params.url.startsWith("/")) {
|
|
|
|
|
params.url = proto + "//" + host + params.url;
|
|
|
|
|
}
|
2021-06-20 14:51:49 -04:00
|
|
|
|
if (params.url.indexOf("://") < 0) {
|
|
|
|
|
params.url = proto + "//" + params.url;
|
|
|
|
|
}
|
2021-05-31 11:57:17 -04:00
|
|
|
|
if (!params.username) {
|
|
|
|
|
params.username = params.nick;
|
|
|
|
|
}
|
|
|
|
|
if (!params.realname) {
|
|
|
|
|
params.realname = params.nick;
|
|
|
|
|
}
|
|
|
|
|
return params;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 12:21:09 -04:00
|
|
|
|
function debounce(f, delay) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let timeout = null;
|
2020-07-15 12:21:09 -04:00
|
|
|
|
return (...args) => {
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
|
timeout = setTimeout(() => {
|
|
|
|
|
timeout = null;
|
|
|
|
|
f(...args);
|
|
|
|
|
}, delay);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 11:01:26 -04:00
|
|
|
|
function showNotification(title, options) {
|
|
|
|
|
if (!window.Notification || Notification.permission !== "granted") {
|
|
|
|
|
return new EventTarget();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This can still fail due to:
|
|
|
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=481856
|
|
|
|
|
try {
|
|
|
|
|
return new Notification(title, options);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error("Failed to show notification: ", err);
|
|
|
|
|
return new EventTarget();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
export default class App extends Component {
|
|
|
|
|
state = {
|
2021-09-21 06:33:22 -04:00
|
|
|
|
...State.create(),
|
2020-06-18 08:23:08 -04:00
|
|
|
|
connectParams: {
|
2021-05-31 12:04:02 -04:00
|
|
|
|
url: null,
|
|
|
|
|
pass: null,
|
2020-06-18 08:23:08 -04:00
|
|
|
|
username: null,
|
|
|
|
|
realname: null,
|
|
|
|
|
nick: null,
|
|
|
|
|
saslPlain: null,
|
2021-10-12 11:29:56 -04:00
|
|
|
|
saslExternal: false,
|
2020-06-24 12:14:46 -04:00
|
|
|
|
autoconnect: false,
|
2020-06-18 08:23:08 -04:00
|
|
|
|
autojoin: [],
|
|
|
|
|
},
|
2021-01-22 15:01:03 -05:00
|
|
|
|
bouncerNetworks: new Map(),
|
2021-06-06 05:33:00 -04:00
|
|
|
|
connectForm: true,
|
2021-07-04 15:29:15 -04:00
|
|
|
|
loading: true,
|
2021-03-08 10:23:16 -05:00
|
|
|
|
dialog: null,
|
2021-07-04 15:41:36 -04:00
|
|
|
|
dialogData: null,
|
2020-08-08 00:08:51 -04:00
|
|
|
|
error: null,
|
2021-05-27 10:35:33 -04:00
|
|
|
|
openPanels: {
|
|
|
|
|
bufferList: false,
|
|
|
|
|
memberList: false,
|
|
|
|
|
},
|
2020-06-18 08:23:08 -04:00
|
|
|
|
};
|
2021-06-10 12:34:34 -04:00
|
|
|
|
config = { ...baseConfig };
|
2021-01-22 11:36:53 -05:00
|
|
|
|
clients = new Map();
|
2020-06-29 03:06:47 -04:00
|
|
|
|
endOfHistory = new Map();
|
2020-07-15 12:21:09 -04:00
|
|
|
|
receipts = new Map();
|
2020-06-25 06:03:05 -04:00
|
|
|
|
buffer = createRef();
|
2020-06-18 08:23:08 -04:00
|
|
|
|
composer = createRef();
|
2021-05-25 06:40:33 -04:00
|
|
|
|
switchToChannel = null;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
this.handleConnectSubmit = this.handleConnectSubmit.bind(this);
|
2021-03-08 10:23:16 -05:00
|
|
|
|
this.handleJoinSubmit = this.handleJoinSubmit.bind(this);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
this.handleBufferListClick = this.handleBufferListClick.bind(this);
|
2021-05-27 10:35:33 -04:00
|
|
|
|
this.toggleBufferList = this.toggleBufferList.bind(this);
|
|
|
|
|
this.toggleMemberList = this.toggleMemberList.bind(this);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
this.handleComposerSubmit = this.handleComposerSubmit.bind(this);
|
2021-05-31 22:39:35 -04:00
|
|
|
|
this.handleChannelClick = this.handleChannelClick.bind(this);
|
2020-06-25 12:45:41 -04:00
|
|
|
|
this.handleNickClick = this.handleNickClick.bind(this);
|
2020-06-29 06:36:17 -04:00
|
|
|
|
this.autocomplete = this.autocomplete.bind(this);
|
2020-06-29 03:06:47 -04:00
|
|
|
|
this.handleBufferScrollTop = this.handleBufferScrollTop.bind(this);
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.dismissDialog = this.dismissDialog.bind(this);
|
2021-03-08 12:15:04 -05:00
|
|
|
|
this.handleAddNetworkClick = this.handleAddNetworkClick.bind(this);
|
2021-03-09 13:10:22 -05:00
|
|
|
|
this.handleNetworkSubmit = this.handleNetworkSubmit.bind(this);
|
|
|
|
|
this.handleNetworkRemove = this.handleNetworkRemove.bind(this);
|
2020-08-08 00:08:51 -04:00
|
|
|
|
this.dismissError = this.dismissError.bind(this);
|
2020-06-24 12:14:46 -04:00
|
|
|
|
|
2020-07-15 12:21:09 -04:00
|
|
|
|
this.saveReceipts = debounce(this.saveReceipts.bind(this), 500);
|
|
|
|
|
|
2021-05-26 12:43:11 -04:00
|
|
|
|
this.receipts = store.receipts.load();
|
2021-08-23 06:02:36 -04:00
|
|
|
|
this.bufferStore = new store.Buffer();
|
2020-07-01 06:25:57 -04:00
|
|
|
|
|
2021-05-25 06:33:22 -04:00
|
|
|
|
configPromise.then((config) => {
|
|
|
|
|
this.handleConfig(config);
|
|
|
|
|
return config;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-27 04:36:03 -04:00
|
|
|
|
/**
|
|
|
|
|
* Handle configuration data and populate the connection parameters.
|
|
|
|
|
*
|
|
|
|
|
* The priority order is:
|
|
|
|
|
*
|
|
|
|
|
* - URL params
|
|
|
|
|
* - Saved parameters in local storage
|
|
|
|
|
* - Configuration data (fetched from the config.json file)
|
2021-10-09 04:10:51 -04:00
|
|
|
|
* - Default server URL constructed from the current URL location (this is
|
|
|
|
|
* done in fillConnectParams)
|
2021-05-27 04:36:03 -04:00
|
|
|
|
*/
|
2021-05-25 06:33:22 -04:00
|
|
|
|
handleConfig(config) {
|
2021-07-04 15:29:15 -04:00
|
|
|
|
this.setState({ loading: false });
|
|
|
|
|
|
2021-10-09 04:10:51 -04:00
|
|
|
|
let connectParams = { ...this.state.connectParams };
|
2021-05-25 06:33:22 -04:00
|
|
|
|
|
|
|
|
|
if (config.server) {
|
2021-10-09 03:57:54 -04:00
|
|
|
|
if (typeof config.server.url === "string") {
|
|
|
|
|
connectParams.url = config.server.url;
|
|
|
|
|
}
|
2021-05-25 06:33:22 -04:00
|
|
|
|
if (Array.isArray(config.server.autojoin)) {
|
|
|
|
|
connectParams.autojoin = config.server.autojoin;
|
2021-10-09 03:57:54 -04:00
|
|
|
|
} else if (typeof config.server.autojoin === "string") {
|
2021-05-25 06:33:22 -04:00
|
|
|
|
connectParams.autojoin = [config.server.autojoin];
|
2020-06-24 12:14:46 -04:00
|
|
|
|
}
|
2021-10-09 04:17:52 -04:00
|
|
|
|
if (typeof config.server.nick === "string") {
|
|
|
|
|
connectParams.nick = config.server.nick;
|
|
|
|
|
}
|
2021-10-09 04:14:27 -04:00
|
|
|
|
if (typeof config.server.autoconnect === "boolean") {
|
|
|
|
|
connectParams.autoconnect = config.server.autoconnect;
|
|
|
|
|
}
|
2021-10-12 11:29:56 -04:00
|
|
|
|
if (config.server.auth === "external") {
|
|
|
|
|
connectParams.saslExternal = true;
|
|
|
|
|
}
|
2021-05-25 06:33:22 -04:00
|
|
|
|
}
|
2020-06-24 12:14:46 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let autoconnect = store.autoconnect.load();
|
2021-05-27 04:36:03 -04:00
|
|
|
|
if (autoconnect) {
|
|
|
|
|
connectParams = {
|
|
|
|
|
...connectParams,
|
|
|
|
|
...autoconnect,
|
|
|
|
|
autoconnect: true,
|
2021-09-21 13:25:12 -04:00
|
|
|
|
autojoin: [], // handled by store.Buffer
|
2021-05-27 04:36:03 -04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let queryParams = parseQueryString();
|
2021-10-09 07:33:01 -04:00
|
|
|
|
// Don't allow to silently override the server URL if there's one in
|
|
|
|
|
// config.json, because this has security implications. But still allow
|
|
|
|
|
// setting server to an empty string to reveal the server field in the
|
|
|
|
|
// connect form.
|
|
|
|
|
if (typeof queryParams.server === "string" && (!connectParams.url || !queryParams.server)) {
|
2021-05-31 12:11:33 -04:00
|
|
|
|
connectParams.url = queryParams.server;
|
2021-06-10 12:28:01 -04:00
|
|
|
|
|
|
|
|
|
// When using a custom server, some configuration options don't
|
|
|
|
|
// make sense anymore.
|
2021-06-10 12:34:34 -04:00
|
|
|
|
config.server.auth = null;
|
2020-06-24 12:14:46 -04:00
|
|
|
|
}
|
2021-06-22 04:44:20 -04:00
|
|
|
|
if (typeof queryParams.nick === "string") {
|
2021-05-27 06:32:22 -04:00
|
|
|
|
connectParams.nick = queryParams.nick;
|
|
|
|
|
}
|
2021-10-09 04:34:51 -04:00
|
|
|
|
if (typeof queryParams.channels === "string") {
|
2021-05-25 06:33:22 -04:00
|
|
|
|
connectParams.autojoin = queryParams.channels.split(",");
|
2020-07-15 12:21:09 -04:00
|
|
|
|
}
|
2021-05-25 06:33:22 -04:00
|
|
|
|
|
2021-05-26 16:57:21 -04:00
|
|
|
|
if (window.location.hash) {
|
|
|
|
|
connectParams.autojoin = window.location.hash.split(",");
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:28:01 -04:00
|
|
|
|
this.config = config;
|
|
|
|
|
|
2021-10-09 04:10:51 -04:00
|
|
|
|
this.setState({ connectParams: connectParams });
|
2021-05-27 04:36:03 -04:00
|
|
|
|
|
|
|
|
|
if (connectParams.autoconnect) {
|
2021-06-06 05:33:00 -04:00
|
|
|
|
this.setState({ connectForm: false });
|
2021-05-27 04:36:03 -04:00
|
|
|
|
this.connect(connectParams);
|
|
|
|
|
}
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-08 00:08:51 -04:00
|
|
|
|
dismissError(event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
this.setState({ error: null });
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
setServerState(id, updater, callback) {
|
2021-01-21 13:01:50 -05:00
|
|
|
|
this.setState((state) => {
|
2021-06-04 12:03:03 -04:00
|
|
|
|
return State.updateServer(state, id, updater);
|
2021-01-21 13:01:50 -05:00
|
|
|
|
}, callback);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 14:41:44 -05:00
|
|
|
|
setBufferState(id, updater, callback) {
|
2020-06-18 08:23:08 -04:00
|
|
|
|
this.setState((state) => {
|
2021-06-04 12:03:03 -04:00
|
|
|
|
return State.updateBuffer(state, id, updater);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}, callback);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-23 08:17:58 -04:00
|
|
|
|
syncBufferUnread(serverID, name) {
|
|
|
|
|
let client = this.clients.get(serverID);
|
|
|
|
|
|
|
|
|
|
let stored = this.bufferStore.get({ name, server: client.params });
|
|
|
|
|
if (client.enabledCaps["draft/chathistory"] && stored) {
|
|
|
|
|
this.setBufferState({ server: serverID, name }, { unread: stored.unread });
|
|
|
|
|
}
|
|
|
|
|
if (!stored) {
|
|
|
|
|
this.bufferStore.put({
|
|
|
|
|
name,
|
|
|
|
|
server: client.params,
|
|
|
|
|
unread: Unread.NONE,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 04:56:18 -04:00
|
|
|
|
createBuffer(serverID, name) {
|
2021-08-23 06:02:36 -04:00
|
|
|
|
let client = this.clients.get(serverID);
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let id = null;
|
2021-09-21 12:41:14 -04:00
|
|
|
|
let isNew = false;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let updated;
|
2021-06-04 12:37:34 -04:00
|
|
|
|
[id, updated] = State.createBuffer(state, name, serverID, client);
|
2021-09-21 12:41:14 -04:00
|
|
|
|
isNew = !!updated;
|
2021-06-04 12:37:34 -04:00
|
|
|
|
return updated;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
});
|
2021-09-21 12:41:14 -04:00
|
|
|
|
if (isNew) {
|
|
|
|
|
this.syncBufferUnread(serverID, name);
|
|
|
|
|
}
|
2021-06-10 04:56:18 -04:00
|
|
|
|
return id;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 16:15:33 -05:00
|
|
|
|
switchBuffer(id) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buf;
|
2021-01-21 14:41:44 -05:00
|
|
|
|
this.setState((state) => {
|
2021-06-04 12:03:03 -04:00
|
|
|
|
buf = State.getBuffer(state, id);
|
2021-01-21 14:41:44 -05:00
|
|
|
|
if (!buf) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
return { activeBuffer: buf.id };
|
|
|
|
|
}, () => {
|
2021-01-21 16:15:33 -05:00
|
|
|
|
if (!buf) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-24 08:01:57 -04:00
|
|
|
|
let prevReadReceipt = this.getReceipt(buf.name, ReceiptType.READ);
|
2021-01-21 16:15:33 -05:00
|
|
|
|
// TODO: only mark as read if user scrolled at the bottom
|
|
|
|
|
this.setBufferState(buf.id, {
|
|
|
|
|
unread: Unread.NONE,
|
2021-08-24 08:01:57 -04:00
|
|
|
|
prevReadReceipt,
|
2021-01-21 16:15:33 -05:00
|
|
|
|
});
|
|
|
|
|
|
2021-06-22 08:44:20 -04:00
|
|
|
|
if (this.buffer.current) {
|
|
|
|
|
this.buffer.current.focus();
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
2020-07-15 12:21:09 -04:00
|
|
|
|
|
2021-01-21 16:15:33 -05:00
|
|
|
|
if (buf.messages.length == 0) {
|
2020-07-15 12:21:09 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let lastMsg = buf.messages[buf.messages.length - 1];
|
2021-01-21 16:15:33 -05:00
|
|
|
|
this.setReceipt(buf.name, ReceiptType.READ, lastMsg);
|
2021-08-23 06:25:43 -04:00
|
|
|
|
|
|
|
|
|
let client = this.clients.get(buf.server);
|
|
|
|
|
this.bufferStore.put({
|
|
|
|
|
name: buf.name,
|
|
|
|
|
server: client.params,
|
|
|
|
|
unread: Unread.NONE,
|
|
|
|
|
});
|
2021-09-21 11:06:32 -04:00
|
|
|
|
|
|
|
|
|
let server = this.state.servers.get(buf.server);
|
|
|
|
|
if (buf.type === BufferType.NICK && !server.users.has(buf.name)) {
|
|
|
|
|
this.whoUserBuffer(buf.name, buf.server);
|
|
|
|
|
}
|
2020-07-15 12:21:09 -04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
saveReceipts() {
|
2021-05-26 12:43:11 -04:00
|
|
|
|
store.receipts.put(this.receipts);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getReceipt(target, type) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let receipts = this.receipts.get(target);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
if (!receipts) {
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
|
|
|
|
return receipts[type];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hasReceipt(target, type, msg) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let receipt = this.getReceipt(target, type);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
return receipt && msg.tags.time <= receipt.time;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setReceipt(target, type, msg) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let receipt = this.getReceipt(target, type);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
if (this.hasReceipt(target, type, msg)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-06-03 05:04:32 -04:00
|
|
|
|
// TODO: this doesn't trigger a redraw
|
2020-07-15 12:21:09 -04:00
|
|
|
|
this.receipts.set(target, {
|
|
|
|
|
...this.receipts.get(target),
|
|
|
|
|
[type]: { time: msg.tags.time },
|
2020-06-18 08:23:08 -04:00
|
|
|
|
});
|
2020-07-15 12:21:09 -04:00
|
|
|
|
this.saveReceipts();
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-18 10:53:52 -04:00
|
|
|
|
latestReceipt(type) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let last = null;
|
2021-05-18 10:53:52 -04:00
|
|
|
|
this.receipts.forEach((receipts, target) => {
|
2021-08-24 07:49:25 -04:00
|
|
|
|
if (target === "*") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let delivery = receipts[type];
|
2021-08-23 08:17:58 -04:00
|
|
|
|
if (!delivery || !delivery.time) {
|
2021-05-18 10:53:52 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!last || delivery.time > last.time) {
|
|
|
|
|
last = delivery;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return last;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
addMessage(serverID, bufName, msg) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(serverID);
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-06-23 13:52:45 -04:00
|
|
|
|
// Treat server-wide broadcasts as highlights. They're sent by server
|
|
|
|
|
// operators and can contain important information.
|
|
|
|
|
msg.isHighlight = irc.isHighlight(msg, client.nick, client.cm) || irc.isServerBroadcast(msg);
|
2020-08-13 05:58:36 -04:00
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
if (!msg.tags) {
|
|
|
|
|
msg.tags = {};
|
|
|
|
|
}
|
2020-06-29 03:06:47 -04:00
|
|
|
|
if (!msg.tags.time) {
|
|
|
|
|
msg.tags.time = irc.formatDate(new Date());
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let isDelivered = this.hasReceipt(bufName, ReceiptType.DELIVERED, msg);
|
|
|
|
|
let isRead = this.hasReceipt(bufName, ReceiptType.READ, msg);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
// TODO: messages coming from infinite scroll shouldn't trigger notifications
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
2021-06-24 12:04:26 -04:00
|
|
|
|
if (client.isMyNick(msg.prefix.name)) {
|
|
|
|
|
isRead = true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let msgUnread = Unread.NONE;
|
2020-07-15 12:21:09 -04:00
|
|
|
|
if ((msg.command == "PRIVMSG" || msg.command == "NOTICE") && !isRead) {
|
2021-06-10 12:57:57 -04:00
|
|
|
|
let target = msg.params[0];
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let text = msg.params[1];
|
2020-06-29 05:50:42 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let kind;
|
2020-08-13 05:58:36 -04:00
|
|
|
|
if (msg.isHighlight) {
|
2020-06-29 05:08:47 -04:00
|
|
|
|
msgUnread = Unread.HIGHLIGHT;
|
2020-06-29 05:50:42 -04:00
|
|
|
|
kind = "highlight";
|
2021-06-10 12:57:57 -04:00
|
|
|
|
} else if (client.isMyNick(target)) {
|
2020-06-29 05:50:42 -04:00
|
|
|
|
msgUnread = Unread.HIGHLIGHT;
|
|
|
|
|
kind = "private message";
|
2020-06-29 05:08:47 -04:00
|
|
|
|
} else {
|
|
|
|
|
msgUnread = Unread.MESSAGE;
|
|
|
|
|
}
|
2020-06-29 05:50:42 -04:00
|
|
|
|
|
2021-06-10 11:01:26 -04:00
|
|
|
|
if (msgUnread == Unread.HIGHLIGHT && !isDelivered && !irc.parseCTCP(msg)) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let title = "New " + kind + " from " + msg.prefix.name;
|
2021-06-04 13:13:59 -04:00
|
|
|
|
if (client.isChannel(bufName)) {
|
2021-06-03 07:29:32 -04:00
|
|
|
|
title += " in " + bufName;
|
2020-06-29 05:50:42 -04:00
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let notif = showNotification(title, {
|
2020-08-13 09:38:12 -04:00
|
|
|
|
body: stripANSI(text),
|
2020-06-29 05:50:42 -04:00
|
|
|
|
requireInteraction: true,
|
2021-06-10 11:11:21 -04:00
|
|
|
|
tag: "msg," + msg.prefix.name + "," + bufName,
|
2020-06-29 05:50:42 -04:00
|
|
|
|
});
|
|
|
|
|
notif.addEventListener("click", () => {
|
|
|
|
|
// TODO: scroll to message
|
2021-06-03 07:29:32 -04:00
|
|
|
|
this.switchBuffer({ server: serverID, name: bufName });
|
2020-06-29 05:50:42 -04:00
|
|
|
|
});
|
|
|
|
|
}
|
2020-06-24 10:56:28 -04:00
|
|
|
|
}
|
2021-06-03 05:04:32 -04:00
|
|
|
|
if (msg.command === "INVITE" && client.isMyNick(msg.params[0])) {
|
|
|
|
|
msgUnread = Unread.HIGHLIGHT;
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let channel = msg.params[1];
|
|
|
|
|
let notif = new Notification("Invitation to " + channel, {
|
2021-06-10 11:01:26 -04:00
|
|
|
|
body: msg.prefix.name + " has invited you to " + channel,
|
|
|
|
|
requireInteraction: true,
|
2021-06-10 11:11:21 -04:00
|
|
|
|
tag: "invite," + msg.prefix.name + "," + channel,
|
2021-06-10 11:01:26 -04:00
|
|
|
|
actions: [{
|
|
|
|
|
action: "accept",
|
|
|
|
|
title: "Accept",
|
|
|
|
|
}],
|
|
|
|
|
});
|
|
|
|
|
notif.addEventListener("click", (event) => {
|
|
|
|
|
if (event.action === "accept") {
|
|
|
|
|
this.setReceipt(bufName, ReceiptType.READ, msg);
|
|
|
|
|
this.open(channel, serverID);
|
|
|
|
|
} else {
|
|
|
|
|
// TODO: scroll to message
|
|
|
|
|
this.switchBuffer({ server: serverID, name: bufName });
|
|
|
|
|
}
|
|
|
|
|
});
|
2021-06-03 05:04:32 -04:00
|
|
|
|
}
|
2020-06-24 10:56:28 -04:00
|
|
|
|
|
2021-08-24 08:46:51 -04:00
|
|
|
|
// Open a new buffer if the message doesn't come from me or is a
|
|
|
|
|
// self-message
|
|
|
|
|
if ((!client.isMyNick(msg.prefix.name) || client.isMyNick(bufName)) && (msg.command != "PART" && msg.comand != "QUIT")) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.createBuffer(serverID, bufName);
|
2020-06-25 12:28:54 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 12:21:09 -04:00
|
|
|
|
this.setReceipt(bufName, ReceiptType.DELIVERED, msg);
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let bufID = { server: serverID, name: bufName };
|
2021-06-04 13:07:14 -04:00
|
|
|
|
this.setState((state) => State.addMessage(state, msg, bufID));
|
|
|
|
|
this.setBufferState(bufID, (buf) => {
|
2020-07-15 12:21:09 -04:00
|
|
|
|
// TODO: set unread if scrolled up
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let unread = buf.unread;
|
2021-08-30 04:27:24 -04:00
|
|
|
|
let prevReadReceipt = buf.prevReadReceipt;
|
|
|
|
|
|
2021-08-23 06:25:43 -04:00
|
|
|
|
if (this.state.activeBuffer !== buf.id) {
|
2020-06-24 11:46:43 -04:00
|
|
|
|
unread = Unread.union(unread, msgUnread);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
} else {
|
|
|
|
|
this.setReceipt(bufName, ReceiptType.READ, msg);
|
2020-06-24 10:56:28 -04:00
|
|
|
|
}
|
2021-08-30 04:27:24 -04:00
|
|
|
|
|
|
|
|
|
// Don't show unread marker for my own messages
|
|
|
|
|
if (client.isMyNick(msg.prefix.name)) {
|
|
|
|
|
prevReadReceipt = { time: msg.tags.time };
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-23 06:25:43 -04:00
|
|
|
|
this.bufferStore.put({
|
|
|
|
|
name: buf.name,
|
|
|
|
|
server: client.params,
|
|
|
|
|
unread,
|
|
|
|
|
});
|
2021-08-30 04:27:24 -04:00
|
|
|
|
return { unread, prevReadReceipt };
|
2020-06-18 08:23:08 -04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-22 12:44:06 -05:00
|
|
|
|
connect(params) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let serverID = null;
|
2021-01-21 13:01:50 -05:00
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let update;
|
2021-06-10 04:54:33 -04:00
|
|
|
|
[serverID, update] = State.createServer(state);
|
|
|
|
|
return update;
|
2021-01-21 13:01:50 -05:00
|
|
|
|
});
|
|
|
|
|
this.setState({ connectParams: params });
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = new Client(fillConnectParams(params));
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.clients.set(serverID, client);
|
2021-06-10 04:54:33 -04:00
|
|
|
|
this.setServerState(serverID, { status: client.status });
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-01-22 12:29:22 -05:00
|
|
|
|
client.addEventListener("status", () => {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.setServerState(serverID, { status: client.status });
|
2021-06-06 05:33:00 -04:00
|
|
|
|
if (client.status === Client.Status.REGISTERED) {
|
|
|
|
|
this.setState({ connectForm: false });
|
|
|
|
|
}
|
2021-01-21 13:01:50 -05:00
|
|
|
|
});
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
2021-01-22 11:36:53 -05:00
|
|
|
|
client.addEventListener("message", (event) => {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.handleMessage(serverID, event.detail.message);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
});
|
|
|
|
|
|
2021-01-22 11:36:53 -05:00
|
|
|
|
client.addEventListener("error", (event) => {
|
2021-03-09 15:47:39 -05:00
|
|
|
|
this.setState({ error: event.detail });
|
2020-08-08 00:08:51 -04:00
|
|
|
|
});
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.createBuffer(serverID, SERVER_BUFFER);
|
2021-03-09 03:38:55 -05:00
|
|
|
|
if (!this.state.activeBuffer) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.switchBuffer({ server: serverID, name: SERVER_BUFFER });
|
2021-03-09 03:38:55 -05:00
|
|
|
|
}
|
2021-05-25 06:40:33 -04:00
|
|
|
|
|
|
|
|
|
if (params.autojoin.length > 0) {
|
|
|
|
|
this.switchToChannel = params.autojoin[0];
|
|
|
|
|
}
|
2021-05-27 12:17:41 -04:00
|
|
|
|
|
2021-06-04 11:50:49 -04:00
|
|
|
|
if (this.config.server && typeof this.config.server.ping !== "undefined") {
|
2021-05-28 03:58:06 -04:00
|
|
|
|
client.setPingInterval(this.config.server.ping);
|
2021-05-27 12:17:41 -04:00
|
|
|
|
}
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
disconnect(serverID) {
|
|
|
|
|
if (!serverID) {
|
2021-06-04 12:03:03 -04:00
|
|
|
|
serverID = State.getActiveServerID(this.state);
|
2021-01-22 04:38:07 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(serverID);
|
2021-01-22 11:36:53 -05:00
|
|
|
|
if (client) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.clients.delete(serverID);
|
2021-01-22 12:29:22 -05:00
|
|
|
|
client.disconnect();
|
2021-01-12 04:35:38 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
reconnect(serverID) {
|
|
|
|
|
if (!serverID) {
|
2021-06-04 12:03:03 -04:00
|
|
|
|
serverID = State.getActiveServerID(this.state);
|
2021-01-22 04:38:07 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(serverID);
|
2021-01-22 12:44:06 -05:00
|
|
|
|
if (client) {
|
|
|
|
|
client.reconnect();
|
|
|
|
|
}
|
2021-01-12 04:35:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
serverFromBouncerNetwork(bouncerNetworkID) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
for (let [id, client] of this.clients) {
|
2021-03-10 05:00:33 -05:00
|
|
|
|
if (client.params.bouncerNetwork === bouncerNetworkID) {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
handleMessage(serverID, msg) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(serverID);
|
|
|
|
|
let chatHistoryBatch = irc.findBatchByType(msg, "chathistory");
|
2021-06-04 12:27:21 -04:00
|
|
|
|
|
|
|
|
|
this.setState((state) => State.handleMessage(state, msg, serverID, client));
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let target, channel, affectedBuffers;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
switch (msg.command) {
|
|
|
|
|
case irc.RPL_WELCOME:
|
2021-08-23 08:17:58 -04:00
|
|
|
|
let lastReceipt = this.latestReceipt(ReceiptType.DELIVERED);
|
2021-05-18 10:53:52 -04:00
|
|
|
|
if (lastReceipt && lastReceipt.time && client.enabledCaps["draft/chathistory"] && (!client.enabledCaps["soju.im/bouncer-networks"] || client.params.bouncerNetwork)) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let now = irc.formatDate(new Date());
|
2021-05-18 10:53:52 -04:00
|
|
|
|
client.fetchHistoryTargets(now, lastReceipt.time).then((targets) => {
|
|
|
|
|
targets.forEach((target) => {
|
2021-08-23 08:17:58 -04:00
|
|
|
|
let from = lastReceipt;
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let to = { time: msg.tags.time || irc.formatDate(new Date()) };
|
2021-05-18 10:53:52 -04:00
|
|
|
|
this.fetchBacklog(client, target.name, from, to);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-06-18 08:23:08 -04:00
|
|
|
|
break;
|
2021-09-21 12:31:11 -04:00
|
|
|
|
case irc.RPL_ENDOFMOTD:
|
|
|
|
|
case irc.ERR_NOMOTD:
|
|
|
|
|
// These messages are used to indicate the end of the ISUPPORT list
|
|
|
|
|
|
2021-09-21 13:20:39 -04:00
|
|
|
|
// Restore opened channel and user buffers
|
|
|
|
|
let join = [];
|
2021-09-21 12:31:11 -04:00
|
|
|
|
for (let buf of this.bufferStore.list(client.params)) {
|
2021-09-21 13:20:39 -04:00
|
|
|
|
if (buf.name === "*") {
|
2021-09-21 12:31:11 -04:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2021-09-21 13:20:39 -04:00
|
|
|
|
|
|
|
|
|
if (client.isChannel(buf.name)) {
|
|
|
|
|
if (client.enabledCaps["soju.im/bouncer-networks"]) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
join.push(buf.name);
|
|
|
|
|
} else {
|
|
|
|
|
this.createBuffer(serverID, buf.name);
|
|
|
|
|
this.whoUserBuffer(buf.name, serverID);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Auto-join channels given at connect-time
|
|
|
|
|
join = join.concat(this.state.connectParams.autojoin);
|
|
|
|
|
|
|
|
|
|
if (join.length > 0) {
|
|
|
|
|
client.send({
|
|
|
|
|
command: "JOIN",
|
|
|
|
|
params: [join.join(",")],
|
|
|
|
|
});
|
2021-09-21 12:31:11 -04:00
|
|
|
|
}
|
2021-05-27 09:34:43 -04:00
|
|
|
|
case "MODE":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
target = msg.params[0];
|
2021-06-04 13:13:59 -04:00
|
|
|
|
if (client.isChannel(target)) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, target, msg);
|
2021-05-27 09:34:43 -04:00
|
|
|
|
}
|
|
|
|
|
break;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
case "NOTICE":
|
|
|
|
|
case "PRIVMSG":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
target = msg.params[0];
|
2021-05-28 04:24:40 -04:00
|
|
|
|
if (client.isMyNick(target)) {
|
|
|
|
|
if (client.cm(msg.prefix.name) === client.cm(client.serverPrefix.name)) {
|
2021-03-08 08:27:05 -05:00
|
|
|
|
target = SERVER_BUFFER;
|
|
|
|
|
} else {
|
|
|
|
|
target = msg.prefix.name;
|
|
|
|
|
}
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
2021-06-10 06:07:17 -04:00
|
|
|
|
if (msg.command === "NOTICE" && !State.getBuffer(this.state, { server: serverID, name: target })) {
|
|
|
|
|
// Don't open a new buffer if this is just a NOTICE
|
|
|
|
|
target = SERVER_BUFFER;
|
|
|
|
|
}
|
2021-06-03 07:31:43 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let allowedPrefixes = client.isupport.get("STATUSMSG");
|
2021-06-03 07:31:43 -04:00
|
|
|
|
if (allowedPrefixes) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let parts = irc.parseTargetPrefix(target, allowedPrefixes);
|
2021-06-04 13:13:59 -04:00
|
|
|
|
if (client.isChannel(parts.name)) {
|
2021-06-03 07:31:43 -04:00
|
|
|
|
target = parts.name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, target, msg);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
break;
|
|
|
|
|
case "JOIN":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
channel = msg.params[0];
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
2021-08-25 02:46:37 -04:00
|
|
|
|
if (client.isMyNick(msg.prefix.name)) {
|
|
|
|
|
this.syncBufferUnread(serverID, channel);
|
|
|
|
|
} else {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, channel, msg);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
2021-05-25 06:40:33 -04:00
|
|
|
|
if (channel == this.switchToChannel) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.switchBuffer({ server: serverID, name: channel });
|
2021-05-25 06:40:33 -04:00
|
|
|
|
this.switchToChannel = null;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case "PART":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
channel = msg.params[0];
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, channel, msg);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
|
2021-06-04 13:45:51 -04:00
|
|
|
|
if (!chatHistoryBatch && client.isMyNick(msg.prefix.name)) {
|
2021-05-26 19:28:24 -04:00
|
|
|
|
this.receipts.delete(channel);
|
|
|
|
|
this.saveReceipts();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case "KICK":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
channel = msg.params[0];
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, channel, msg);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
break;
|
2020-07-08 12:39:24 -04:00
|
|
|
|
case "QUIT":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
affectedBuffers = [];
|
2021-06-04 13:45:51 -04:00
|
|
|
|
if (chatHistoryBatch) {
|
|
|
|
|
affectedBuffers.push(chatHistoryBatch.params[0]);
|
|
|
|
|
} else {
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buffers = new Map(state.buffers);
|
2021-06-04 13:45:51 -04:00
|
|
|
|
state.buffers.forEach((buf) => {
|
|
|
|
|
if (buf.server != serverID) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!buf.members.has(msg.prefix.name) && client.cm(buf.name) !== client.cm(msg.prefix.name)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let members = new irc.CaseMapMap(buf.members);
|
2021-06-04 13:45:51 -04:00
|
|
|
|
members.delete(msg.prefix.name);
|
2021-09-21 08:00:52 -04:00
|
|
|
|
buffers.set(buf.id, { ...buf, members });
|
2021-06-04 13:45:51 -04:00
|
|
|
|
affectedBuffers.push(buf.name);
|
|
|
|
|
});
|
|
|
|
|
return { buffers };
|
2020-07-08 12:39:24 -04:00
|
|
|
|
});
|
2021-06-04 13:45:51 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
affectedBuffers.forEach((name) => this.addMessage(serverID, name, msg));
|
2020-07-08 12:39:24 -04:00
|
|
|
|
break;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
case "NICK":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let newNick = msg.params[0];
|
2020-06-18 08:23:08 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
affectedBuffers = [];
|
2021-06-04 13:45:51 -04:00
|
|
|
|
if (chatHistoryBatch) {
|
|
|
|
|
affectedBuffers.push(chatHistoryBatch.params[0]);
|
|
|
|
|
} else {
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buffers = new Map(state.buffers);
|
2021-06-04 13:45:51 -04:00
|
|
|
|
state.buffers.forEach((buf) => {
|
|
|
|
|
if (buf.server != serverID) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!buf.members.has(msg.prefix.name)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let members = new irc.CaseMapMap(buf.members);
|
2021-06-04 13:45:51 -04:00
|
|
|
|
members.set(newNick, members.get(msg.prefix.name));
|
|
|
|
|
members.delete(msg.prefix.name);
|
|
|
|
|
buffers.set(buf.id, { ...buf, members });
|
|
|
|
|
affectedBuffers.push(buf.name);
|
|
|
|
|
});
|
|
|
|
|
return { buffers };
|
2020-06-18 08:23:08 -04:00
|
|
|
|
});
|
2021-06-04 13:45:51 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
affectedBuffers.forEach((name) => this.addMessage(serverID, name, msg));
|
2020-06-18 08:23:08 -04:00
|
|
|
|
break;
|
|
|
|
|
case "TOPIC":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
channel = msg.params[0];
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, channel, msg);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
break;
|
2021-06-03 05:04:32 -04:00
|
|
|
|
case "INVITE":
|
2021-06-10 12:11:11 -04:00
|
|
|
|
channel = msg.params[1];
|
2021-06-03 05:04:32 -04:00
|
|
|
|
|
|
|
|
|
// TODO: find a more reliable way to do this
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let bufName = channel;
|
2021-06-04 12:03:03 -04:00
|
|
|
|
if (!State.getBuffer(this.state, { server: serverID, name: channel })) {
|
2021-06-03 05:04:32 -04:00
|
|
|
|
bufName = SERVER_BUFFER;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, bufName, msg);
|
2021-06-03 05:04:32 -04:00
|
|
|
|
break;
|
2021-03-10 05:00:33 -05:00
|
|
|
|
case "BOUNCER":
|
|
|
|
|
if (msg.params[0] !== "NETWORK") {
|
|
|
|
|
break; // We're only interested in network updates
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-25 11:11:06 -04:00
|
|
|
|
if (client.isupport.has("BOUNCER_NETID")) {
|
|
|
|
|
// This cn happen if the user has specified a network to bind
|
|
|
|
|
// to via other means, e.g. "<username>/<network>".
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let id = msg.params[1];
|
|
|
|
|
let attrs = null;
|
2021-03-10 05:00:33 -05:00
|
|
|
|
if (msg.params[2] !== "*") {
|
|
|
|
|
attrs = irc.parseTags(msg.params[2]);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let isNew = false;
|
2021-03-10 05:00:33 -05:00
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let bouncerNetworks = new Map(state.bouncerNetworks);
|
2021-03-10 05:00:33 -05:00
|
|
|
|
if (!attrs) {
|
|
|
|
|
bouncerNetworks.delete(id);
|
|
|
|
|
} else {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let prev = bouncerNetworks.get(id);
|
2021-03-10 05:00:33 -05:00
|
|
|
|
isNew = prev === undefined;
|
|
|
|
|
attrs = { ...prev, ...attrs };
|
|
|
|
|
bouncerNetworks.set(id, attrs);
|
|
|
|
|
}
|
|
|
|
|
return { bouncerNetworks };
|
|
|
|
|
}, () => {
|
|
|
|
|
if (!attrs) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let serverID = this.serverFromBouncerNetwork(id);
|
2021-06-03 05:46:50 -04:00
|
|
|
|
if (serverID) {
|
|
|
|
|
this.close({ server: serverID, name: SERVER_BUFFER });
|
2021-03-10 05:00:33 -05:00
|
|
|
|
}
|
|
|
|
|
} else if (isNew) {
|
|
|
|
|
this.connect({
|
|
|
|
|
...client.params,
|
|
|
|
|
bouncerNetwork: id,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
break;
|
2021-06-07 08:13:00 -04:00
|
|
|
|
case irc.RPL_CHANNELMODEIS:
|
|
|
|
|
case irc.RPL_CREATIONTIME:
|
|
|
|
|
case irc.RPL_INVITELIST:
|
|
|
|
|
case irc.RPL_ENDOFINVITELIST:
|
|
|
|
|
case irc.RPL_EXCEPTLIST:
|
|
|
|
|
case irc.RPL_ENDOFEXCEPTLIST:
|
2021-06-03 04:11:48 -04:00
|
|
|
|
case irc.RPL_BANLIST:
|
|
|
|
|
case irc.RPL_ENDOFBANLIST:
|
2021-06-10 18:27:19 -04:00
|
|
|
|
case irc.RPL_QUIETLIST:
|
|
|
|
|
case irc.RPL_ENDOFQUIETLIST:
|
2021-06-10 12:11:11 -04:00
|
|
|
|
channel = msg.params[1];
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, channel, msg);
|
2021-06-03 04:11:48 -04:00
|
|
|
|
break;
|
2021-06-24 12:01:24 -04:00
|
|
|
|
case irc.RPL_INVITING:
|
|
|
|
|
channel = msg.params[2];
|
|
|
|
|
this.addMessage(serverID, channel, msg);
|
|
|
|
|
break;
|
2021-06-04 12:27:21 -04:00
|
|
|
|
case irc.RPL_MYINFO:
|
|
|
|
|
case irc.RPL_ISUPPORT:
|
|
|
|
|
case irc.RPL_NOTOPIC:
|
|
|
|
|
case irc.RPL_TOPIC:
|
|
|
|
|
case irc.RPL_TOPICWHOTIME:
|
|
|
|
|
case irc.RPL_NAMREPLY:
|
|
|
|
|
case irc.RPL_ENDOFNAMES:
|
2021-08-24 06:53:46 -04:00
|
|
|
|
case irc.RPL_MONONLINE:
|
|
|
|
|
case irc.RPL_MONOFFLINE:
|
2021-06-04 12:27:21 -04:00
|
|
|
|
case "AWAY":
|
|
|
|
|
case "SETNAME":
|
2021-09-21 08:49:32 -04:00
|
|
|
|
case "CHGHOST":
|
|
|
|
|
case "ACCOUNT":
|
2020-06-25 06:16:42 -04:00
|
|
|
|
case "CAP":
|
|
|
|
|
case "AUTHENTICATE":
|
2020-07-01 06:12:56 -04:00
|
|
|
|
case "PING":
|
2021-05-27 12:17:41 -04:00
|
|
|
|
case "PONG":
|
2020-07-15 12:21:09 -04:00
|
|
|
|
case "BATCH":
|
2021-05-27 15:58:37 -04:00
|
|
|
|
case "TAGMSG":
|
2021-05-18 10:53:52 -04:00
|
|
|
|
case "CHATHISTORY":
|
2021-06-04 14:38:01 -04:00
|
|
|
|
case "ACK":
|
2020-06-25 06:16:42 -04:00
|
|
|
|
// Ignore these
|
|
|
|
|
break;
|
2020-06-18 08:23:08 -04:00
|
|
|
|
default:
|
2021-05-27 05:30:23 -04:00
|
|
|
|
if (irc.isError(msg.command) && msg.command != irc.ERR_NOMOTD) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let description = msg.params[msg.params.length - 1];
|
2021-05-27 05:30:23 -04:00
|
|
|
|
this.setState({ error: description });
|
|
|
|
|
}
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, SERVER_BUFFER, msg);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleConnectSubmit(connectParams) {
|
2020-08-10 08:57:54 -04:00
|
|
|
|
this.setState({ error: null });
|
|
|
|
|
|
2021-05-26 12:43:11 -04:00
|
|
|
|
if (connectParams.autoconnect) {
|
|
|
|
|
store.autoconnect.put(connectParams);
|
|
|
|
|
} else {
|
|
|
|
|
store.autoconnect.put(null);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-22 12:44:06 -05:00
|
|
|
|
this.connect(connectParams);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-13 10:18:59 -04:00
|
|
|
|
handleChannelClick(event) {
|
|
|
|
|
let url = irc.parseURL(event.target.href);
|
|
|
|
|
if (!url) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let serverID;
|
|
|
|
|
if (!url.host) {
|
|
|
|
|
serverID = State.getActiveServerID(this.state);
|
|
|
|
|
} else {
|
|
|
|
|
let bouncerNetID;
|
|
|
|
|
for (let [id, bouncerNetwork] of this.state.bouncerNetworks) {
|
|
|
|
|
if (bouncerNetwork.host === url.host) {
|
|
|
|
|
bouncerNetID = id;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!bouncerNetID) {
|
|
|
|
|
// TODO: open dialog to create network if bouncer
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (let [id, server] of this.state.servers) {
|
|
|
|
|
if (server.isupport.get("BOUNCER_NETID") === bouncerNetID) {
|
|
|
|
|
serverID = id;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!serverID) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
|
|
let buf = State.getBuffer(this.state, { server: serverID, name: url.channel });
|
2021-05-31 22:39:35 -04:00
|
|
|
|
if (buf) {
|
|
|
|
|
this.switchBuffer(buf.id);
|
|
|
|
|
} else {
|
2021-10-13 10:18:59 -04:00
|
|
|
|
this.open(url.channel, serverID);
|
2021-05-31 22:39:35 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 12:45:41 -04:00
|
|
|
|
handleNickClick(nick) {
|
|
|
|
|
this.open(nick);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-18 10:53:52 -04:00
|
|
|
|
fetchBacklog(client, target, after, before) {
|
|
|
|
|
client.fetchHistoryBetween(target, after, before, CHATHISTORY_MAX_SIZE).catch((err) => {
|
2021-08-23 06:31:11 -04:00
|
|
|
|
this.setState({ error: "Failed to fetch history for '" + target + "': " + err });
|
2021-05-18 10:53:52 -04:00
|
|
|
|
this.receipts.delete(channel);
|
|
|
|
|
this.saveReceipts();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-21 10:58:00 -04:00
|
|
|
|
whoUserBuffer(target, serverID) {
|
|
|
|
|
let client = this.clients.get(serverID);
|
|
|
|
|
|
|
|
|
|
client.who(target, {
|
|
|
|
|
fields: ["flags", "hostname", "nick", "realname", "username", "account"],
|
|
|
|
|
});
|
|
|
|
|
client.monitor(target);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
open(target, serverID) {
|
|
|
|
|
if (!serverID) {
|
2021-06-04 12:03:03 -04:00
|
|
|
|
serverID = State.getActiveServerID(this.state);
|
2021-06-03 05:04:32 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(serverID);
|
2021-06-10 06:03:50 -04:00
|
|
|
|
if (client.isServer(target)) {
|
|
|
|
|
this.switchBuffer({ server: serverID });
|
|
|
|
|
} else if (client.isChannel(target)) {
|
2021-05-27 13:10:42 -04:00
|
|
|
|
this.switchToChannel = target;
|
2021-01-22 11:36:53 -05:00
|
|
|
|
client.send({ command: "JOIN", params: [target] });
|
2020-06-26 06:00:10 -04:00
|
|
|
|
} else {
|
2021-09-21 10:58:00 -04:00
|
|
|
|
this.whoUserBuffer(target, serverID);
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.createBuffer(serverID, target);
|
|
|
|
|
this.switchBuffer({ server: serverID, name: target });
|
2020-06-25 12:45:41 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-22 04:26:53 -05:00
|
|
|
|
close(id) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buf = State.getBuffer(this.state, id);
|
2021-01-22 04:26:53 -05:00
|
|
|
|
if (!buf) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(buf.server);
|
2021-01-22 04:26:53 -05:00
|
|
|
|
switch (buf.type) {
|
|
|
|
|
case BufferType.SERVER:
|
2021-03-10 04:59:39 -05:00
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buffers = new Map(state.buffers);
|
|
|
|
|
for (let [id, b] of state.buffers) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
if (b.server === buf.server) {
|
2021-03-10 04:59:39 -05:00
|
|
|
|
buffers.delete(id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let activeBuffer = state.activeBuffer;
|
2021-06-03 05:46:50 -04:00
|
|
|
|
if (activeBuffer && state.buffers.get(activeBuffer).server === buf.server) {
|
2021-03-10 04:59:39 -05:00
|
|
|
|
if (buffers.size > 0) {
|
|
|
|
|
activeBuffer = buffers.keys().next().value;
|
|
|
|
|
} else {
|
|
|
|
|
activeBuffer = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return { buffers, activeBuffer };
|
2021-01-11 12:12:28 -05:00
|
|
|
|
});
|
2021-03-10 04:59:39 -05:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let disconnectAll = client && !client.params.bouncerNetwork && client.enabledCaps["soju.im/bouncer-networks"];
|
2021-03-10 04:59:39 -05:00
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.disconnect(buf.server);
|
2021-03-10 04:59:39 -05:00
|
|
|
|
|
2021-01-22 04:41:28 -05:00
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let servers = new Map(state.servers);
|
2021-06-03 05:46:50 -04:00
|
|
|
|
servers.delete(buf.server);
|
2021-06-10 12:06:45 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let connectForm = state.connectForm;
|
2021-06-10 12:06:45 -04:00
|
|
|
|
if (servers.size == 0) {
|
|
|
|
|
connectForm = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return { servers, connectForm };
|
2021-01-22 04:41:28 -05:00
|
|
|
|
});
|
2021-03-10 04:59:39 -05:00
|
|
|
|
|
|
|
|
|
if (disconnectAll) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
for (let serverID of this.clients.keys()) {
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.close({ server: serverID, name: SERVER_BUFFER });
|
2021-03-10 04:59:39 -05:00
|
|
|
|
}
|
2021-08-23 06:02:36 -04:00
|
|
|
|
this.bufferStore.clear();
|
|
|
|
|
} else {
|
|
|
|
|
this.bufferStore.clear(client.params);
|
2021-03-10 04:59:39 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-23 06:02:36 -04:00
|
|
|
|
// TODO: only clear autoconnect if this server is stored there
|
2021-06-03 05:46:50 -04:00
|
|
|
|
if (buf.server == 1) {
|
2021-05-26 12:43:11 -04:00
|
|
|
|
store.autoconnect.put(null);
|
2021-05-25 06:57:40 -04:00
|
|
|
|
}
|
2021-01-22 04:26:53 -05:00
|
|
|
|
break;
|
|
|
|
|
case BufferType.CHANNEL:
|
2021-01-22 11:36:53 -05:00
|
|
|
|
client.send({ command: "PART", params: [buf.name] });
|
2021-01-22 04:26:53 -05:00
|
|
|
|
// fallthrough
|
|
|
|
|
case BufferType.NICK:
|
|
|
|
|
this.switchBuffer({ name: SERVER_BUFFER });
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buffers = new Map(state.buffers);
|
2021-03-03 03:59:40 -05:00
|
|
|
|
buffers.delete(buf.id);
|
2021-01-22 04:26:53 -05:00
|
|
|
|
return { buffers };
|
|
|
|
|
});
|
2020-07-15 12:21:09 -04:00
|
|
|
|
|
2021-08-24 06:53:46 -04:00
|
|
|
|
client.unmonitor(buf.name);
|
|
|
|
|
|
2021-01-22 11:36:53 -05:00
|
|
|
|
this.receipts.delete(buf.name);
|
2021-01-22 04:26:53 -05:00
|
|
|
|
this.saveReceipts();
|
2021-08-23 06:02:36 -04:00
|
|
|
|
|
|
|
|
|
this.bufferStore.delete({ name: buf.name, server: client.params });
|
2021-01-22 04:26:53 -05:00
|
|
|
|
break;
|
2020-06-25 12:28:54 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
executeCommand(s) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let parts = s.split(" ");
|
|
|
|
|
let name = parts[0].toLowerCase().slice(1);
|
|
|
|
|
let args = parts.slice(1);
|
2020-07-13 11:22:24 -04:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let cmd = commands[name];
|
2020-07-13 11:22:24 -04:00
|
|
|
|
if (!cmd) {
|
2021-05-27 06:54:30 -04:00
|
|
|
|
this.setState({ error: `Unknown command "${name}" (run "/help" to get a command list)` });
|
2020-07-13 11:22:24 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2021-03-08 11:25:00 -05:00
|
|
|
|
cmd.execute(this, args);
|
2020-08-08 00:08:51 -04:00
|
|
|
|
} catch (error) {
|
2021-05-27 06:54:30 -04:00
|
|
|
|
console.error(`Failed to execute command "${name}":`, error);
|
2021-05-27 05:26:42 -04:00
|
|
|
|
this.setState({ error: error.message });
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-28 03:29:39 -04:00
|
|
|
|
privmsg(target, text) {
|
|
|
|
|
if (target == SERVER_BUFFER) {
|
2020-08-08 00:08:51 -04:00
|
|
|
|
this.setState({ error: "Cannot send message in server buffer" });
|
2020-06-28 03:29:39 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let serverID = State.getActiveServerID(this.state);
|
|
|
|
|
let client = this.clients.get(serverID);
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let msg = { command: "PRIVMSG", params: [target, text] };
|
2021-01-22 11:36:53 -05:00
|
|
|
|
client.send(msg);
|
2020-06-28 03:29:39 -04:00
|
|
|
|
|
2021-01-22 11:36:53 -05:00
|
|
|
|
if (!client.enabledCaps["echo-message"]) {
|
|
|
|
|
msg.prefix = { name: client.nick };
|
2021-06-03 05:46:50 -04:00
|
|
|
|
this.addMessage(serverID, target, msg);
|
2020-06-28 03:29:39 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
handleComposerSubmit(text) {
|
|
|
|
|
if (!text) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (text.startsWith("//")) {
|
|
|
|
|
text = text.slice(1);
|
|
|
|
|
} else if (text.startsWith("/")) {
|
|
|
|
|
this.executeCommand(text);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buf = this.state.buffers.get(this.state.activeBuffer);
|
2021-01-21 14:41:44 -05:00
|
|
|
|
if (!buf) {
|
2020-06-18 08:23:08 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 14:41:44 -05:00
|
|
|
|
this.privmsg(buf.name, text);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-22 15:43:58 -05:00
|
|
|
|
handleBufferListClick(id) {
|
|
|
|
|
this.switchBuffer(id);
|
2021-05-27 10:35:33 -04:00
|
|
|
|
this.closeBufferList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toggleBufferList() {
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let openPanels = {
|
2021-05-27 10:35:33 -04:00
|
|
|
|
...state.openPanels,
|
|
|
|
|
bufferList: !state.openPanels.bufferList,
|
|
|
|
|
};
|
|
|
|
|
return { openPanels };
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toggleMemberList() {
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let openPanels = {
|
2021-05-27 10:35:33 -04:00
|
|
|
|
...state.openPanels,
|
|
|
|
|
memberList: !state.openPanels.memberList,
|
|
|
|
|
};
|
|
|
|
|
return { openPanels };
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
closeBufferList() {
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let openPanels = {
|
2021-05-27 10:35:33 -04:00
|
|
|
|
...state.openPanels,
|
|
|
|
|
bufferList: false,
|
|
|
|
|
};
|
|
|
|
|
return { openPanels };
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
closeMemberList() {
|
|
|
|
|
this.setState((state) => {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let openPanels = {
|
2021-05-27 10:35:33 -04:00
|
|
|
|
...state.openPanels,
|
|
|
|
|
memberList: false,
|
|
|
|
|
};
|
|
|
|
|
return { openPanels };
|
|
|
|
|
});
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
handleJoinClick(serverID) {
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.openDialog("join", { server: serverID });
|
2021-03-08 10:23:16 -05:00
|
|
|
|
}
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-03-08 10:23:16 -05:00
|
|
|
|
handleJoinSubmit(data) {
|
2021-07-04 15:41:36 -04:00
|
|
|
|
let client = this.clients.get(this.state.dialogData.server);
|
2021-03-08 10:23:16 -05:00
|
|
|
|
|
2021-05-27 13:10:42 -04:00
|
|
|
|
this.switchToChannel = data.channel;
|
2021-03-08 10:23:16 -05:00
|
|
|
|
client.send({ command: "JOIN", params: [data.channel] });
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.dismissDialog();
|
2020-06-29 04:12:46 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-29 06:36:17 -04:00
|
|
|
|
autocomplete(prefix) {
|
2020-07-13 11:28:49 -04:00
|
|
|
|
function fromList(l, prefix) {
|
|
|
|
|
prefix = prefix.toLowerCase();
|
2021-06-30 16:20:40 -04:00
|
|
|
|
let repl = [];
|
2021-06-10 12:11:11 -04:00
|
|
|
|
for (let item of l) {
|
2020-07-13 11:28:49 -04:00
|
|
|
|
if (item.toLowerCase().startsWith(prefix)) {
|
2021-06-30 16:20:40 -04:00
|
|
|
|
repl.push(item);
|
2020-07-13 11:28:49 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return repl;
|
2020-06-29 06:36:17 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-13 11:28:49 -04:00
|
|
|
|
if (prefix.startsWith("/")) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let repl = fromList(Object.keys(commands), prefix.slice(1));
|
2021-06-30 16:20:40 -04:00
|
|
|
|
return repl.map(cmd => "/" + cmd);
|
2020-07-13 11:28:49 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-23 09:21:24 -04:00
|
|
|
|
// TODO: consider using the CHANTYPES ISUPPORT token here
|
|
|
|
|
if (prefix.startsWith("#")) {
|
|
|
|
|
let chanNames = [];
|
|
|
|
|
for (const buf of this.state.buffers.values()) {
|
|
|
|
|
if (buf.name.startsWith("#")) {
|
|
|
|
|
chanNames.push(buf.name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return fromList(chanNames, prefix);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buf = this.state.buffers.get(this.state.activeBuffer);
|
2021-01-21 14:41:44 -05:00
|
|
|
|
if (!buf || !buf.members) {
|
2021-06-30 16:20:40 -04:00
|
|
|
|
return [];
|
2020-06-29 06:36:17 -04:00
|
|
|
|
}
|
2020-07-13 11:28:49 -04:00
|
|
|
|
return fromList(buf.members.keys(), prefix);
|
2020-06-29 06:36:17 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 11:05:48 -05:00
|
|
|
|
openHelp() {
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.openDialog("help");
|
2021-03-08 11:05:48 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-29 03:06:47 -04:00
|
|
|
|
handleBufferScrollTop() {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let buf = this.state.buffers.get(this.state.activeBuffer);
|
2021-01-21 14:41:44 -05:00
|
|
|
|
if (!buf || buf.type == BufferType.SERVER) {
|
2020-06-29 03:06:47 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.get(buf.server);
|
2021-01-22 11:36:53 -05:00
|
|
|
|
|
2021-05-25 08:28:48 -04:00
|
|
|
|
if (!client || !client.enabledCaps["draft/chathistory"] || !client.enabledCaps["server-time"]) {
|
2020-06-29 03:06:47 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
2021-01-22 09:49:22 -05:00
|
|
|
|
if (this.endOfHistory.get(buf.id)) {
|
2020-06-29 03:06:47 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let before;
|
2020-06-29 03:06:47 -04:00
|
|
|
|
if (buf.messages.length > 0) {
|
|
|
|
|
before = buf.messages[0].tags["time"];
|
|
|
|
|
} else {
|
|
|
|
|
before = irc.formatDate(new Date());
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 12:21:09 -04:00
|
|
|
|
// Avoids sending multiple CHATHISTORY commands in parallel
|
2021-01-22 09:49:22 -05:00
|
|
|
|
this.endOfHistory.set(buf.id, true);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
|
2021-05-11 10:10:50 -04:00
|
|
|
|
client.fetchHistoryBefore(buf.name, before, 100).then((result) => {
|
2021-01-23 06:16:57 -05:00
|
|
|
|
this.endOfHistory.set(buf.id, !result.more);
|
2020-07-15 12:21:09 -04:00
|
|
|
|
});
|
2020-06-29 03:06:47 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-04 15:41:36 -04:00
|
|
|
|
openDialog(name, data) {
|
|
|
|
|
this.setState({ dialog: name, dialogData: data });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dismissDialog() {
|
|
|
|
|
this.setState({ dialog: null, dialogData: null });
|
2021-03-08 10:23:16 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 12:15:04 -05:00
|
|
|
|
handleAddNetworkClick() {
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.openDialog("network");
|
2021-03-08 12:15:04 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-03 05:46:50 -04:00
|
|
|
|
handleManageNetworkClick(serverID) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let server = this.state.servers.get(serverID);
|
|
|
|
|
let bouncerNetID = server.isupport.get("BOUNCER_NETID");
|
|
|
|
|
let bouncerNetwork = this.state.bouncerNetworks.get(bouncerNetID);
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.openDialog("network", {
|
|
|
|
|
id: bouncerNetID,
|
|
|
|
|
params: bouncerNetwork,
|
2021-03-09 13:10:22 -05:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleNetworkSubmit(attrs) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.values().next().value;
|
2021-03-09 13:10:22 -05:00
|
|
|
|
|
2021-07-04 15:41:36 -04:00
|
|
|
|
if (this.state.dialogData && this.state.dialogData.id) {
|
2021-03-09 13:10:22 -05:00
|
|
|
|
if (Object.keys(attrs).length == 0) {
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.dismissDialog();
|
2021-03-09 13:10:22 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
client.send({
|
|
|
|
|
command: "BOUNCER",
|
2021-07-04 15:41:36 -04:00
|
|
|
|
params: ["CHANGENETWORK", this.state.dialogData.id, irc.formatTags(attrs)],
|
2021-03-09 13:10:22 -05:00
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
attrs = { ...attrs, tls: "1" };
|
|
|
|
|
client.send({
|
|
|
|
|
command: "BOUNCER",
|
|
|
|
|
params: ["ADDNETWORK", irc.formatTags(attrs)],
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.dismissDialog();
|
2021-03-09 13:10:22 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handleNetworkRemove() {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let client = this.clients.values().next().value;
|
2021-03-09 13:10:22 -05:00
|
|
|
|
|
2021-03-08 12:15:04 -05:00
|
|
|
|
client.send({
|
|
|
|
|
command: "BOUNCER",
|
2021-07-04 15:41:36 -04:00
|
|
|
|
params: ["DELNETWORK", this.state.dialogData.id],
|
2021-03-08 12:15:04 -05:00
|
|
|
|
});
|
2021-03-09 13:10:22 -05:00
|
|
|
|
|
2021-07-04 15:41:36 -04:00
|
|
|
|
this.dismissDialog();
|
2021-03-08 12:15:04 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
componentDidMount() {
|
2020-07-23 03:58:05 -04:00
|
|
|
|
setupKeybindings(this);
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
2021-07-04 15:29:15 -04:00
|
|
|
|
if (this.state.loading) {
|
|
|
|
|
return html`<section id="connect"></section>`;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let activeBuffer = null, activeServer = null, activeBouncerNetwork = null;
|
|
|
|
|
let isBouncer = false;
|
2021-05-10 09:09:49 -04:00
|
|
|
|
if (this.state.buffers.get(this.state.activeBuffer)) {
|
2020-06-18 08:23:08 -04:00
|
|
|
|
activeBuffer = this.state.buffers.get(this.state.activeBuffer);
|
2021-06-03 05:46:50 -04:00
|
|
|
|
activeServer = this.state.servers.get(activeBuffer.server);
|
2021-03-08 12:15:04 -05:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let activeClient = this.clients.get(activeBuffer.server);
|
2021-03-08 12:15:04 -05:00
|
|
|
|
isBouncer = activeClient && activeClient.enabledCaps["soju.im/bouncer-networks"];
|
2021-03-10 05:48:58 -05:00
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let bouncerNetID = activeServer.isupport.get("BOUNCER_NETID");
|
2021-03-10 05:48:58 -05:00
|
|
|
|
if (bouncerNetID) {
|
|
|
|
|
activeBouncerNetwork = this.state.bouncerNetworks.get(bouncerNetID);
|
|
|
|
|
}
|
2020-06-18 08:23:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 05:33:00 -04:00
|
|
|
|
if (this.state.connectForm) {
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let status = activeServer ? activeServer.status : ServerStatus.DISCONNECTED;
|
|
|
|
|
let connecting = status === ServerStatus.CONNECTING || status === ServerStatus.REGISTERING;
|
2021-01-21 13:01:50 -05:00
|
|
|
|
return html`
|
|
|
|
|
<section id="connect">
|
2021-03-09 12:11:59 -05:00
|
|
|
|
<${ConnectForm}
|
|
|
|
|
error=${this.state.error}
|
|
|
|
|
params=${this.state.connectParams}
|
2021-06-10 12:34:34 -04:00
|
|
|
|
auth=${this.config.server.auth}
|
2021-06-06 05:33:00 -04:00
|
|
|
|
connecting=${connecting}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
onSubmit=${this.handleConnectSubmit}
|
|
|
|
|
/>
|
2021-01-21 13:01:50 -05:00
|
|
|
|
</section>
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let bufferHeader = null;
|
2020-06-26 06:08:14 -04:00
|
|
|
|
if (activeBuffer) {
|
2021-09-21 07:33:15 -04:00
|
|
|
|
let activeUser = null;
|
|
|
|
|
if (activeBuffer.type == BufferType.NICK) {
|
|
|
|
|
activeUser = activeServer.users.get(activeBuffer.name);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-26 09:16:07 -04:00
|
|
|
|
bufferHeader = html`
|
|
|
|
|
<section id="buffer-header">
|
2021-03-09 12:11:59 -05:00
|
|
|
|
<${BufferHeader}
|
|
|
|
|
buffer=${activeBuffer}
|
2021-06-03 05:46:50 -04:00
|
|
|
|
server=${activeServer}
|
2021-09-21 07:33:15 -04:00
|
|
|
|
user=${activeUser}
|
2021-03-08 12:15:04 -05:00
|
|
|
|
isBouncer=${isBouncer}
|
2021-03-10 05:48:58 -05:00
|
|
|
|
bouncerNetwork=${activeBouncerNetwork}
|
2021-05-31 22:39:35 -04:00
|
|
|
|
onChannelClick=${this.handleChannelClick}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
onClose=${() => this.close(activeBuffer)}
|
2021-06-03 05:46:50 -04:00
|
|
|
|
onJoin=${() => this.handleJoinClick(activeBuffer.server)}
|
2021-03-08 12:15:04 -05:00
|
|
|
|
onAddNetwork=${this.handleAddNetworkClick}
|
2021-06-03 05:46:50 -04:00
|
|
|
|
onManageNetwork=${() => this.handleManageNetworkClick(activeBuffer.server)}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
/>
|
2020-06-25 12:28:54 -04:00
|
|
|
|
</section>
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let memberList = null;
|
2020-06-26 08:32:56 -04:00
|
|
|
|
if (activeBuffer && activeBuffer.type == BufferType.CHANNEL) {
|
|
|
|
|
memberList = html`
|
2021-05-27 10:35:33 -04:00
|
|
|
|
<section
|
|
|
|
|
id="member-list"
|
|
|
|
|
class=${this.state.openPanels.memberList ? "expand" : ""}
|
|
|
|
|
>
|
|
|
|
|
<button
|
|
|
|
|
class="expander"
|
|
|
|
|
onClick=${this.toggleMemberList}
|
|
|
|
|
>
|
|
|
|
|
<span></span>
|
|
|
|
|
<span></span>
|
|
|
|
|
</button>
|
|
|
|
|
<section>
|
|
|
|
|
<section id="member-list-header">
|
|
|
|
|
${activeBuffer.members.size} users
|
|
|
|
|
</section>
|
|
|
|
|
<${MemberList}
|
|
|
|
|
members=${activeBuffer.members}
|
2021-09-21 08:19:30 -04:00
|
|
|
|
users=${activeServer.users}
|
2021-05-27 10:35:33 -04:00
|
|
|
|
onNickClick=${this.handleNickClick}
|
|
|
|
|
/>
|
|
|
|
|
</section>
|
2020-06-26 08:32:56 -04:00
|
|
|
|
</section>
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let dialog = null;
|
2021-03-08 10:23:16 -05:00
|
|
|
|
switch (this.state.dialog) {
|
2021-03-09 13:10:22 -05:00
|
|
|
|
case "network":
|
2021-07-04 15:41:36 -04:00
|
|
|
|
let title = this.state.dialogData ? "Edit network" : "Add network";
|
2021-03-08 12:15:04 -05:00
|
|
|
|
dialog = html`
|
2021-07-04 15:41:36 -04:00
|
|
|
|
<${Dialog} title=${title} onDismiss=${this.dismissDialog}>
|
2021-03-09 13:10:22 -05:00
|
|
|
|
<${NetworkForm}
|
|
|
|
|
onSubmit=${this.handleNetworkSubmit}
|
|
|
|
|
onRemove=${this.handleNetworkRemove}
|
2021-07-04 15:41:36 -04:00
|
|
|
|
params=${this.state.dialogData ? this.state.dialogData.params : null}
|
2021-03-09 13:10:22 -05:00
|
|
|
|
/>
|
2021-03-08 12:15:04 -05:00
|
|
|
|
</>
|
|
|
|
|
`;
|
|
|
|
|
break;
|
2021-03-08 11:05:48 -05:00
|
|
|
|
case "help":
|
|
|
|
|
dialog = html`
|
2021-07-04 15:41:36 -04:00
|
|
|
|
<${Dialog} title="Help" onDismiss=${this.dismissDialog}>
|
2021-03-08 11:05:48 -05:00
|
|
|
|
<${Help}/>
|
|
|
|
|
</>
|
|
|
|
|
`;
|
|
|
|
|
break;
|
2021-03-08 10:23:16 -05:00
|
|
|
|
case "join":
|
|
|
|
|
dialog = html`
|
2021-07-04 15:41:36 -04:00
|
|
|
|
<${Dialog} title="Join channel" onDismiss=${this.dismissDialog}>
|
2021-03-09 07:25:31 -05:00
|
|
|
|
<${JoinForm} onSubmit=${this.handleJoinSubmit}/>
|
2021-03-08 10:23:16 -05:00
|
|
|
|
</>
|
|
|
|
|
`;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let error = null;
|
2021-03-08 09:05:43 -05:00
|
|
|
|
if (this.state.error) {
|
|
|
|
|
error = html`
|
2021-06-22 09:48:42 -04:00
|
|
|
|
<div id="error-msg">
|
2021-03-09 12:11:59 -05:00
|
|
|
|
${this.state.error}
|
2021-03-09 15:47:39 -05:00
|
|
|
|
${" "}
|
2021-06-22 09:48:42 -04:00
|
|
|
|
<button onClick=${this.dismissError}>×</button>
|
|
|
|
|
</div>
|
2021-03-08 09:05:43 -05:00
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-10 12:11:11 -04:00
|
|
|
|
let composerReadOnly = false;
|
2021-05-31 06:04:54 -04:00
|
|
|
|
if (activeBuffer && activeBuffer.type === BufferType.SERVER) {
|
|
|
|
|
composerReadOnly = true;
|
|
|
|
|
}
|
2021-06-03 05:46:50 -04:00
|
|
|
|
if (activeServer && activeServer.status !== ServerStatus.REGISTERED) {
|
2021-05-31 06:04:54 -04:00
|
|
|
|
composerReadOnly = true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 08:23:08 -04:00
|
|
|
|
return html`
|
2021-05-27 10:35:33 -04:00
|
|
|
|
<section
|
|
|
|
|
id="buffer-list"
|
|
|
|
|
class=${this.state.openPanels.bufferList ? "expand" : ""}
|
|
|
|
|
>
|
2021-03-09 12:11:59 -05:00
|
|
|
|
<${BufferList}
|
|
|
|
|
buffers=${this.state.buffers}
|
2021-06-03 05:46:50 -04:00
|
|
|
|
servers=${this.state.servers}
|
2021-01-22 15:01:03 -05:00
|
|
|
|
bouncerNetworks=${this.state.bouncerNetworks}
|
2021-03-08 12:15:04 -05:00
|
|
|
|
isBouncer=${isBouncer}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
activeBuffer=${this.state.activeBuffer}
|
|
|
|
|
onBufferClick=${this.handleBufferListClick}
|
|
|
|
|
/>
|
2021-05-27 10:35:33 -04:00
|
|
|
|
<button
|
|
|
|
|
class="expander"
|
|
|
|
|
onClick=${this.toggleBufferList}
|
|
|
|
|
>
|
|
|
|
|
<span></span>
|
|
|
|
|
<span></span>
|
|
|
|
|
</button>
|
2020-06-18 08:23:08 -04:00
|
|
|
|
</section>
|
2020-06-26 09:16:07 -04:00
|
|
|
|
${bufferHeader}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
<${ScrollManager}
|
|
|
|
|
target=${this.buffer}
|
|
|
|
|
stickTo=".logline"
|
|
|
|
|
scrollKey=${this.state.activeBuffer}
|
|
|
|
|
onScrollTop=${this.handleBufferScrollTop}
|
|
|
|
|
>
|
2021-06-22 08:44:20 -04:00
|
|
|
|
<section id="buffer" ref=${this.buffer} tabindex="-1">
|
2021-05-31 22:39:35 -04:00
|
|
|
|
<${Buffer}
|
|
|
|
|
buffer=${activeBuffer}
|
2021-06-11 05:18:29 -04:00
|
|
|
|
server=${activeServer}
|
2021-05-31 22:39:35 -04:00
|
|
|
|
onChannelClick=${this.handleChannelClick}
|
|
|
|
|
onNickClick=${this.handleNickClick}/>
|
2020-06-25 06:03:05 -04:00
|
|
|
|
</section>
|
|
|
|
|
</>
|
2020-06-26 08:32:56 -04:00
|
|
|
|
${memberList}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
<${Composer}
|
|
|
|
|
ref=${this.composer}
|
2021-05-31 06:04:54 -04:00
|
|
|
|
readOnly=${composerReadOnly}
|
2021-03-09 12:11:59 -05:00
|
|
|
|
onSubmit=${this.handleComposerSubmit}
|
|
|
|
|
autocomplete=${this.autocomplete}
|
|
|
|
|
/>
|
2021-03-08 10:23:16 -05:00
|
|
|
|
${dialog}
|
2021-03-08 09:05:43 -05:00
|
|
|
|
${error}
|
2020-06-18 08:23:08 -04:00
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
}
|