mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
const log = require('./log');
|
|
|
|
const NOTE_TITLE_CHANGED = "NOTE_TITLE_CHANGED";
|
|
const ENTER_PROTECTED_SESSION = "ENTER_PROTECTED_SESSION";
|
|
const ENTITY_CREATED = "ENTITY_CREATED";
|
|
const ENTITY_CHANGED = "ENTITY_CHANGED";
|
|
const CHILD_NOTE_CREATED = "CHILD_NOTE_CREATED";
|
|
|
|
const eventListeners = {};
|
|
|
|
function subscribe(eventType, listener) {
|
|
eventListeners[eventType] = eventListeners[eventType] || [];
|
|
eventListeners[eventType].push(listener);
|
|
}
|
|
|
|
async function emit(eventType, data) {
|
|
const listeners = eventListeners[eventType];
|
|
|
|
if (listeners) {
|
|
for (const listener of listeners) {
|
|
try {
|
|
await listener(data);
|
|
}
|
|
catch (e) {
|
|
log.error("Listener threw error: " + e.stack);
|
|
// we won't stop execution because of listener
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
subscribe,
|
|
emit,
|
|
// event types:
|
|
NOTE_TITLE_CHANGED,
|
|
ENTER_PROTECTED_SESSION,
|
|
ENTITY_CREATED,
|
|
ENTITY_CHANGED,
|
|
CHILD_NOTE_CREATED
|
|
}; |