1.5.0 • Published 8 months ago

telegram-botbuilder v1.5.0

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago
import { Schema } from 'telegram-botbuilder';
import { BotBuilder, CallbackAction, ChangeDialog } from 'telegram-botbuilder';

const schema: Schema = {
  start: 'start_dialog',
  content: [
    {
      id: 'start_dialog',
      text: 'Welcome to my bot!',
      buttons: [
        [
          {
            text: 'Button 1',
            action: [CallbackAction('button1_clicked', 'optional arg')],
          },
          {
            text: 'Dialog 2',
            action: [ChangeDialog('dialog2')],
          },
        ],
      ],
    },
    {
      id: 'dialog2',
      text: async (chatid: number) => { return "test dialog 2"; },
      buttons: [
        [
          {
            text: 'Button 1',
            action: [ChangeDialog('start_dialog')],
          },
        ],
      ],
    },
  ],
  commands: [
    {
      text: 'test',
      action: [CallbackAction('testcmd')],
    },
  ],
};

const bot = new BotBuilder(schema, 'YOUR_BOT_TOKEN', { polling: true });

bot.ActionSystem.on('button1_clicked', (chatid: number) => {
  bot.Message(chatid, 'Button1 Click!');
});

bot.ActionSystem.on('testcmd', (chatid: number, args: string) => {
  bot.Message(chatid, `Test command: ${args}`);
});
1.2.0

9 months ago

1.2.8

9 months ago

1.2.7

9 months ago

1.4.4

9 months ago

1.2.6

9 months ago

1.4.3

9 months ago

1.2.5

9 months ago

1.4.2

9 months ago

1.2.4

9 months ago

1.4.1

9 months ago

1.2.3

9 months ago

1.4.0

9 months ago

1.2.2

9 months ago

1.2.1

9 months ago

1.5.0

8 months ago

1.3.1

9 months ago

1.3.0

9 months ago

1.1.10

10 months ago

1.1.9

10 months ago

1.1.8

11 months ago

1.1.7

11 months ago

1.1.6

11 months ago

1.1.5

11 months ago

1.1.4

11 months ago

1.1.3

11 months ago

1.1.2

11 months ago

1.1.1

11 months ago

1.1.0

11 months ago

1.0.20

11 months ago

1.0.19

11 months ago

1.0.18

11 months ago

1.0.17

11 months ago

1.0.16

11 months ago

1.0.15

11 months ago

1.0.14

11 months ago

1.0.13

11 months ago

1.0.12

11 months ago

1.0.11

11 months ago

1.0.10

11 months ago

1.0.9

11 months ago

1.0.8

11 months ago

1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago