mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
33 lines
624 B
TypeScript
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);
|
|
}
|
|
}
|
|
}
|