ai/src/modules/welcome/index.ts
syuilo fd50dc790f ✌️
2024-01-21 13:27:02 +09:00

33 lines
624 B
TypeScript

import { bindThis } from '@/decorators.js';
import Module from '@/module.js';
export default class extends Module {
public readonly name = 'welcome';
@bindThis
public install() {
const tl = this.ai.connection.useSharedConnection('localTimeline');
tl.on('note', this.onLocalNote);
return {};
}
@bindThis
private onLocalNote(note: any) {
if (note.isFirstNote) {
setTimeout(() => {
this.ai.api('notes/create', {
renoteId: note.id
});
}, 3000);
setTimeout(() => {
this.ai.api('notes/reactions/create', {
noteId: note.id,
reaction: 'congrats'
});
}, 5000);
}
}
}