gamja/keybindings.js

113 lines
2.4 KiB
JavaScript
Raw Normal View History

import { ReceiptType, Unread, BufferType, SERVER_BUFFER } from "./state.js";
2020-07-23 03:58:05 -04:00
export const keybindings = [
{
key: "h",
altKey: true,
description: "Mark all messages as read",
execute: (app) => {
app.setState((state) => {
var buffers = new Map();
state.buffers.forEach((buf) => {
if (buf.messages.length > 0) {
var lastMsg = buf.messages[buf.messages.length - 1];
app.setReceipt(buf.name, ReceiptType.READ, lastMsg);
}
2021-05-31 04:46:41 -04:00
buffers.set(buf.id, {
2020-07-23 03:58:05 -04:00
...buf,
unread: Unread.NONE,
});
});
return { buffers };
});
},
},
{
key: "a",
altKey: true,
description: "Jump to next buffer with activity",
execute: (app) => {
2021-05-31 12:26:04 -04:00
// TODO: order by age if same priority
var firstServerBuffer = null;
var target = null;
for (var buf of app.state.buffers.values()) {
if (!firstServerBuffer && buf.type === BufferType.SERVER) {
firstServerBuffer = buf;
}
2021-05-31 12:26:04 -04:00
if (buf.unread === Unread.NONE) {
continue;
}
if (!target || Unread.compare(buf.unread, target.unread) > 0) {
2021-01-21 16:15:33 -05:00
target = buf;
}
}
if (!target) {
target = firstServerBuffer;
}
if (target) {
app.switchBuffer(target);
}
},
},
2020-08-03 09:49:30 -04:00
{
key: "ArrowUp",
altKey: true,
description: "Jump to the previous buffer",
execute: (app) => {
var prev = null;
for (var buf of app.state.buffers.values()) {
2021-01-21 16:15:33 -05:00
if (app.state.activeBuffer == buf.id) {
2020-08-03 09:49:30 -04:00
if (prev) {
2021-01-21 16:15:33 -05:00
app.switchBuffer(prev);
2020-08-03 09:49:30 -04:00
}
break;
}
prev = buf;
}
},
},
{
key: "ArrowDown",
altKey: true,
description: "Jump to the next buffer",
execute: (app) => {
var found = false;
for (var buf of app.state.buffers.values()) {
if (found) {
2021-01-21 16:15:33 -05:00
app.switchBuffer(buf);
2020-08-03 09:49:30 -04:00
break;
2021-01-21 16:15:33 -05:00
} else if (app.state.activeBuffer == buf.id) {
2020-08-03 09:49:30 -04:00
found = true;
}
}
},
},
2020-07-23 03:58:05 -04:00
];
export function setup(app) {
var byKey = {};
keybindings.forEach((binding) => {
if (!byKey[binding.key]) {
byKey[binding.key] = [];
}
byKey[binding.key].push(binding);
});
window.addEventListener("keydown", (event) => {
var candidates = byKey[event.key];
if (!candidates) {
return;
}
candidates = candidates.filter((binding) => {
return !!binding.altKey == event.altKey && !!binding.ctrlKey == event.ctrlKey;
});
if (candidates.length != 1) {
return;
}
event.preventDefault();
candidates[0].execute(app);
});
}