mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -05:00
64 lines
1.4 KiB
JavaScript
64 lines
1.4 KiB
JavaScript
import { ReceiptType, Unread } from "/state.js";
|
|
|
|
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);
|
|
}
|
|
buffers.set(buf.name, {
|
|
...buf,
|
|
unread: Unread.NONE,
|
|
});
|
|
});
|
|
return { buffers };
|
|
});
|
|
},
|
|
},
|
|
{
|
|
key: "a",
|
|
altKey: true,
|
|
description: "Jump to next buffer with activity",
|
|
execute: (app) => {
|
|
// TODO: order by priority, then by age
|
|
for (var buf of app.state.buffers.values()) {
|
|
if (buf.unread != Unread.NONE) {
|
|
app.switchBuffer(buf.name);
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
];
|
|
|
|
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);
|
|
});
|
|
}
|