From 6138ae09180681b09e973171e6f8b2e6cbf8cbf2 Mon Sep 17 00:00:00 2001 From: Aleksandr Bukhalo Date: Wed, 15 Jan 2020 17:30:47 +0300 Subject: [PATCH] chore: publish 0.7.0 release (#6) * feat(TelegramActionHandler): add 'action' parameter for handling 'callback_data' --- .prettierrc | 7 ++--- lib/interfaces/handle-parameters.interface.ts | 2 ++ lib/telegraf.service.ts | 27 ++++++++++++------- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 26 insertions(+), 14 deletions(-) diff --git a/.prettierrc b/.prettierrc index 06a9530..eaaa46c 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { - "trailingComma": "none", - "singleQuote": true -} \ No newline at end of file + "trailingComma": "es5", + "singleQuote": true, + "semi": false +} diff --git a/lib/interfaces/handle-parameters.interface.ts b/lib/interfaces/handle-parameters.interface.ts index e2b96fb..bf7b62e 100644 --- a/lib/interfaces/handle-parameters.interface.ts +++ b/lib/interfaces/handle-parameters.interface.ts @@ -1,4 +1,5 @@ import { ContextTransformer } from './' +import { HearsTriggers } from 'telegraf' import { Type } from '@nestjs/common' interface ArgumentTransformation { @@ -10,5 +11,6 @@ export interface HandleParameters { onStart?: boolean command?: string message?: string | RegExp + action?: HearsTriggers transformations?: ArgumentTransformation[] } diff --git a/lib/telegraf.service.ts b/lib/telegraf.service.ts index 9200c0d..2f83d97 100644 --- a/lib/telegraf.service.ts +++ b/lib/telegraf.service.ts @@ -21,7 +21,7 @@ export class TelegrafService { private ref: ModuleRef public constructor( - @Inject(TokenInjectionToken) options: TelegrafOptionsFactory, + @Inject(TokenInjectionToken) options: TelegrafOptionsFactory ) { const { token, sitePublicUrl } = options.createTelegrafOptions() this.sitePublicUrl = sitePublicUrl @@ -36,6 +36,7 @@ export class TelegrafService { this.setupOnStart(handlers) this.setupOnMessage(handlers) this.setupOnCommand(handlers) + this.setupActions(handlers) if (devMode) { this.startPolling() @@ -46,7 +47,7 @@ export class TelegrafService { if (!this.sitePublicUrl) { throw new InvalidConfigurationException( 'sitePublicUrl', - 'does not exist, but webook used', + 'does not exist, but webook used' ) } @@ -64,7 +65,7 @@ export class TelegrafService { () => this.bot.startPolling(), () => { // okay, never mind - }, + } ) } @@ -78,10 +79,10 @@ export class TelegrafService { ([methodName, methodCondig]) => ({ handle: handlerInstance[methodName].bind(handlerInstance), config: methodCondig, - }), + }) ) - }, - ), + } + ) ) } @@ -111,6 +112,14 @@ export class TelegrafService { }) } + private setupActions(handlers: Handler[]): void { + const commandHandlers = handlers.filter(({ config }) => config.action) + + commandHandlers.forEach(handler => { + this.bot.action(handler.config.action, this.adoptHandle(handler)) + }) + } + private adoptHandle({ handle, config }: Handler) { const errorHandler = this.createCatch() @@ -121,8 +130,8 @@ export class TelegrafService { .map(({ transform }) => this.ref .get(transform, { strict: false }) - .transform(ctx), - ), + .transform(ctx) + ) ) return handle(ctx, ...args).catch(errorHandler(ctx)) @@ -131,7 +140,7 @@ export class TelegrafService { private createCatch() { const handlers = Array.from( - (TelegramCatch.handlers || new Map()).entries(), + (TelegramCatch.handlers || new Map()).entries() ).map(([errorType, handlerType]) => { const handler = this.ref.get(handlerType, { strict: false, diff --git a/package-lock.json b/package-lock.json index 2ea9f99..512934c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nestjs-telegraf", - "version": "0.6.0", + "version": "0.7.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1f163f4..67476f5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nestjs-telegraf", - "version": "0.6.0", + "version": "0.7.0", "description": "Telegraf module for Nest framework", "keywords": [ "nest",