Clarify variable names
This commit is contained in:
parent
b96fe57793
commit
a3fa0a2f9c
|
@ -61,8 +61,8 @@ export default class extends Channel {
|
||||||
this.typers.delete(userId);
|
this.typers.delete(userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
const keys = Array.from(this.typers.keys());
|
const userIds = Array.from(this.typers.keys());
|
||||||
const users = await Users.packMany(keys, null, {
|
const users = await Users.packMany(userIds, null, {
|
||||||
detail: false,
|
detail: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -112,8 +112,8 @@ export default class extends Channel {
|
||||||
this.typers.delete(userId);
|
this.typers.delete(userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
const ids = Array.from(this.typers.keys());
|
const userIds = Array.from(this.typers.keys());
|
||||||
const users = await Users.packMany(ids, null, {
|
const users = await Users.packMany(userIds, null, {
|
||||||
detail: false,
|
detail: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -339,10 +339,10 @@ export default class Connection {
|
||||||
private onSubscribeNote(payload: any) {
|
private onSubscribeNote(payload: any) {
|
||||||
if (!payload.id) return;
|
if (!payload.id) return;
|
||||||
|
|
||||||
const c = this.subscribingNotes.get(payload.id) || 0;
|
const current = this.subscribingNotes.get(payload.id) || 0;
|
||||||
this.subscribingNotes.set(payload.id, c + 1);
|
this.subscribingNotes.set(payload.id, current + 1);
|
||||||
|
|
||||||
if (!c) {
|
if (!current) {
|
||||||
this.subscriber.on(`noteStream:${payload.id}`, this.onNoteStreamMessage);
|
this.subscriber.on(`noteStream:${payload.id}`, this.onNoteStreamMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -353,13 +353,13 @@ export default class Connection {
|
||||||
private onUnsubscribeNote(payload: any) {
|
private onUnsubscribeNote(payload: any) {
|
||||||
if (!payload.id) return;
|
if (!payload.id) return;
|
||||||
|
|
||||||
const c = this.subscribingNotes.get(payload.id) || 0;
|
const current = this.subscribingNotes.get(payload.id) || 0;
|
||||||
if (c <= 1) {
|
if (current <= 1) {
|
||||||
this.subscribingNotes.delete(payload.id);
|
this.subscribingNotes.delete(payload.id);
|
||||||
this.subscriber.off(`noteStream:${payload.id}`, this.onNoteStreamMessage);
|
this.subscriber.off(`noteStream:${payload.id}`, this.onNoteStreamMessage);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.subscribingNotes.set(payload.id, c - 1);
|
this.subscribingNotes.set(payload.id, current - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async onNoteStreamMessage(data: StreamMessages["note"]["payload"]) {
|
private async onNoteStreamMessage(data: StreamMessages["note"]["payload"]) {
|
||||||
|
|
Loading…
Reference in New Issue