2021-05-26 12:43:11 -04:00
|
|
|
const PREFIX = "gamja_";
|
|
|
|
|
|
|
|
class Item {
|
|
|
|
constructor(k) {
|
|
|
|
this.k = PREFIX + k;
|
|
|
|
}
|
|
|
|
|
|
|
|
load() {
|
2021-06-10 12:11:11 -04:00
|
|
|
let v = localStorage.getItem(this.k);
|
2021-05-26 12:43:11 -04:00
|
|
|
if (!v) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return JSON.parse(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
put(v) {
|
|
|
|
if (v) {
|
|
|
|
localStorage.setItem(this.k, JSON.stringify(v));
|
|
|
|
} else {
|
|
|
|
localStorage.removeItem(this.k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const autoconnect = new Item("autoconnect");
|
2021-11-07 11:53:10 -05:00
|
|
|
export const naggedProtocolHandler = new Item("naggedProtocolHandler");
|
2021-05-26 12:43:11 -04:00
|
|
|
|
|
|
|
const rawReceipts = new Item("receipts");
|
|
|
|
|
|
|
|
export const receipts = {
|
|
|
|
load() {
|
2021-06-10 12:11:11 -04:00
|
|
|
let v = rawReceipts.load();
|
2021-05-26 12:43:11 -04:00
|
|
|
return new Map(Object.entries(v || {}));
|
|
|
|
},
|
|
|
|
put(m) {
|
|
|
|
rawReceipts.put(Object.fromEntries(m));
|
|
|
|
},
|
|
|
|
};
|
2021-08-23 06:02:36 -04:00
|
|
|
|
2022-02-11 10:24:32 -05:00
|
|
|
function debounce(f, delay) {
|
|
|
|
let timeout = null;
|
|
|
|
return (...args) => {
|
|
|
|
clearTimeout(timeout);
|
|
|
|
timeout = setTimeout(() => {
|
|
|
|
timeout = null;
|
|
|
|
f(...args);
|
|
|
|
}, delay);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-08-23 06:02:36 -04:00
|
|
|
export class Buffer {
|
|
|
|
raw = new Item("buffers");
|
|
|
|
m = null;
|
|
|
|
|
|
|
|
constructor() {
|
2021-09-21 12:26:42 -04:00
|
|
|
let obj = this.raw.load();
|
2021-08-23 06:02:36 -04:00
|
|
|
this.m = new Map(Object.entries(obj || {}));
|
2022-02-11 10:24:32 -05:00
|
|
|
|
|
|
|
this.save = debounce(this.save.bind(this), 500);
|
2021-08-23 06:02:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
key(buf) {
|
|
|
|
return JSON.stringify({
|
|
|
|
name: buf.name,
|
|
|
|
server: {
|
|
|
|
url: buf.server.url,
|
|
|
|
nick: buf.server.nick,
|
|
|
|
bouncerNetwork: buf.server.bouncerNetwork,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
save() {
|
|
|
|
if (this.m.size > 0) {
|
|
|
|
this.raw.put(Object.fromEntries(this.m));
|
|
|
|
} else {
|
|
|
|
this.raw.put(null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-23 08:17:58 -04:00
|
|
|
get(buf) {
|
|
|
|
return this.m.get(this.key(buf));
|
|
|
|
}
|
|
|
|
|
2021-08-23 06:02:36 -04:00
|
|
|
put(buf) {
|
2021-08-23 06:25:43 -04:00
|
|
|
let key = this.key(buf);
|
|
|
|
|
|
|
|
let prev = this.m.get(key);
|
|
|
|
if (prev && prev.unread === buf.unread) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-23 06:02:36 -04:00
|
|
|
this.m.set(this.key(buf), {
|
|
|
|
name: buf.name,
|
2021-08-23 06:25:43 -04:00
|
|
|
unread: buf.unread,
|
2021-08-23 06:02:36 -04:00
|
|
|
server: {
|
|
|
|
url: buf.server.url,
|
|
|
|
nick: buf.server.nick,
|
|
|
|
bouncerNetwork: buf.server.bouncerNetwork,
|
|
|
|
},
|
|
|
|
});
|
2021-08-23 06:25:43 -04:00
|
|
|
|
2021-08-23 06:02:36 -04:00
|
|
|
this.save();
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(buf) {
|
|
|
|
this.m.delete(this.key(buf));
|
|
|
|
this.save();
|
|
|
|
}
|
|
|
|
|
2021-08-23 08:17:58 -04:00
|
|
|
list(server) {
|
2021-08-23 06:02:36 -04:00
|
|
|
let buffers = [];
|
|
|
|
for (const buf of this.m.values()) {
|
|
|
|
if (buf.server.url !== server.url || buf.server.nick !== server.nick || buf.server.bouncerNetwork !== server.bouncerNetwork) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
buffers.push(buf);
|
|
|
|
}
|
|
|
|
return buffers;
|
|
|
|
}
|
|
|
|
|
|
|
|
clear(server) {
|
|
|
|
if (server) {
|
2021-09-13 04:33:14 -04:00
|
|
|
for (const buf of this.m.values()) {
|
2021-08-23 06:02:36 -04:00
|
|
|
this.m.delete(this.key(buf));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.m = new Map();
|
|
|
|
}
|
|
|
|
this.save();
|
|
|
|
}
|
|
|
|
}
|