* Remove listenSessionLoaded from analytics * Move analytics init call to navigation ready * Remove zod dependency from analytics * Mirror changes on the web * Delete listenSessionLoaded * Only set up listeners once
31 lines
865 B
TypeScript
31 lines
865 B
TypeScript
import EventEmitter from 'eventemitter3'
|
|
|
|
type UnlistenFn = () => void
|
|
|
|
const emitter = new EventEmitter()
|
|
|
|
// a "soft reset" typically means scrolling to top and loading latest
|
|
// but it can depend on the screen
|
|
export function emitSoftReset() {
|
|
emitter.emit('soft-reset')
|
|
}
|
|
export function listenSoftReset(fn: () => void): UnlistenFn {
|
|
emitter.on('soft-reset', fn)
|
|
return () => emitter.off('soft-reset', fn)
|
|
}
|
|
|
|
export function emitSessionDropped() {
|
|
emitter.emit('session-dropped')
|
|
}
|
|
export function listenSessionDropped(fn: () => void): UnlistenFn {
|
|
emitter.on('session-dropped', fn)
|
|
return () => emitter.off('session-dropped', fn)
|
|
}
|
|
|
|
export function emitPostCreated() {
|
|
emitter.emit('post-created')
|
|
}
|
|
export function listenPostCreated(fn: () => void): UnlistenFn {
|
|
emitter.on('post-created', fn)
|
|
return () => emitter.off('post-created', fn)
|
|
}
|