nestjs-telegraf/sample/01-complete-app/src/greeter/greeter.update.ts

23 lines
615 B
TypeScript
Raw Normal View History

import { Command, Hears, Start, Update } from 'nestjs-telegraf';
2021-01-03 14:26:32 +03:00
import { Context } from '../interfaces/context.interface';
import { HELLO_SCENE_ID } from '../app.constants';
2021-01-03 14:26:32 +03:00
@Update()
2021-01-03 14:26:32 +03:00
export class GreeterUpdate {
@Start()
async onStart(ctx: Context): Promise<void> {
await ctx.reply('Say hello to me');
}
2021-01-03 14:26:32 +03:00
@Hears(['hi', 'hello', 'hey', 'qq'])
async onGreetings(ctx: Context): Promise<void> {
const { first_name } = ctx.from;
await ctx.reply(`Hey ${first_name}`);
}
@Command('scene')
async onSceneCommand(ctx: Context): Promise<void> {
await ctx.scene.enter(HELLO_SCENE_ID);
}
2021-01-03 14:26:32 +03:00
}