Add debug and temp guard

This commit is contained in:
Eric Bailey
2024-05-06 17:34:13 -05:00
parent a7b876670d
commit 402ed23ca4
+27 -17
View File
@@ -163,6 +163,9 @@ export type ConvoState =
const ACTIVE_POLL_INTERVAL = 2e3 const ACTIVE_POLL_INTERVAL = 2e3
const BACKGROUND_POLL_INTERVAL = 10e3 const BACKGROUND_POLL_INTERVAL = 10e3
// TODO temporary
let DEBUG_ACTIVE_CHAT: string | undefined
export function isConvoItemMessage( export function isConvoItemMessage(
item: ConvoItem, item: ConvoItem,
): item is ConvoItem & {type: 'message'} { ): item is ConvoItem & {type: 'message'} {
@@ -175,6 +178,8 @@ export function isConvoItemMessage(
} }
export class Convo { export class Convo {
private id: string
private agent: BskyAgent private agent: BskyAgent
private __tempFromUserDid: string private __tempFromUserDid: string
@@ -217,10 +222,8 @@ export class Convo {
recipients: AppBskyActorDefs.ProfileViewBasic[] | undefined = undefined recipients: AppBskyActorDefs.ProfileViewBasic[] | undefined = undefined
snapshot: ConvoState | undefined snapshot: ConvoState | undefined
id: string
constructor(params: ConvoParams) { constructor(params: ConvoParams) {
this.id = nanoid(2) this.id = nanoid(3)
this.convoId = params.convoId this.convoId = params.convoId
this.agent = params.agent this.agent = params.agent
this.__tempFromUserDid = params.__tempFromUserDid this.__tempFromUserDid = params.__tempFromUserDid
@@ -231,11 +234,13 @@ export class Convo {
this.deleteMessage = this.deleteMessage.bind(this) this.deleteMessage = this.deleteMessage.bind(this)
this.fetchMessageHistory = this.fetchMessageHistory.bind(this) this.fetchMessageHistory = this.fetchMessageHistory.bind(this)
logger.debug( if (DEBUG_ACTIVE_CHAT) {
'Convo: created', logger.error(`Convo: another chat was already active`, {
{convoId: this.convoId, id: this.id}, convoId: this.convoId,
logger.DebugContext.convo, })
) } else {
DEBUG_ACTIVE_CHAT = this.convoId
}
} }
private commit() { private commit() {
@@ -331,7 +336,7 @@ export class Convo {
this.status === ConvoStatus.Uninitialized || this.status === ConvoStatus.Uninitialized ||
this.status === ConvoStatus.Error this.status === ConvoStatus.Error
) { ) {
logger.debug('Convo: init', {}, logger.DebugContext.convo) logger.debug('Convo: init', {id: this.id}, logger.DebugContext.convo)
try { try {
this.status = ConvoStatus.Initializing this.status = ConvoStatus.Initializing
@@ -369,7 +374,7 @@ export class Convo {
this.status === ConvoStatus.Suspended || this.status === ConvoStatus.Suspended ||
this.status === ConvoStatus.Backgrounded this.status === ConvoStatus.Backgrounded
) { ) {
logger.debug('Convo: resume', {}, logger.DebugContext.convo) logger.debug('Convo: resume', {id: this.id}, logger.DebugContext.convo)
const fromStatus = this.status const fromStatus = this.status
@@ -417,7 +422,11 @@ export class Convo {
this.status === ConvoStatus.Ready || this.status === ConvoStatus.Ready ||
this.status === ConvoStatus.Resuming this.status === ConvoStatus.Resuming
) { ) {
logger.debug('Convo: backgrounded', {}, logger.DebugContext.convo) logger.debug(
'Convo: backgrounded',
{id: this.id},
logger.DebugContext.convo,
)
this.status = ConvoStatus.Backgrounded this.status = ConvoStatus.Backgrounded
this.pollInterval = BACKGROUND_POLL_INTERVAL this.pollInterval = BACKGROUND_POLL_INTERVAL
this.commit() this.commit()
@@ -430,7 +439,8 @@ export class Convo {
this.status === ConvoStatus.Backgrounded || this.status === ConvoStatus.Backgrounded ||
this.status === ConvoStatus.Resuming this.status === ConvoStatus.Resuming
) { ) {
logger.debug('Convo: suspended', {}, logger.DebugContext.convo) logger.debug('Convo: suspended', {id: this.id}, logger.DebugContext.convo)
DEBUG_ACTIVE_CHAT = undefined
this.status = ConvoStatus.Suspended this.status = ConvoStatus.Suspended
this.commit() this.commit()
} }
@@ -552,11 +562,11 @@ export class Convo {
this.status === ConvoStatus.Ready || this.status === ConvoStatus.Ready ||
this.status === ConvoStatus.Backgrounded this.status === ConvoStatus.Backgrounded
) { ) {
logger.debug( // logger.debug(
'Convo: poll events', // 'Convo: poll events',
{convoId: this.convoId, id: this.id}, // {id: this.id},
logger.DebugContext.convo, // logger.DebugContext.convo,
) // )
try { try {
this.pendingPoll = this.ingestLatestEvents() this.pendingPoll = this.ingestLatestEvents()