
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
@grammyjs/auto-chat-action
Advanced tools
This plugin provides a middleware to automatically send an appropriate
chat action.
For example sends the "sending video" chat action when sendVideo
is called.
npm i @grammyjs/auto-chat-action
import { autoChatAction } from "https://deno.land/x/grammy_auto_chat_action/mod.ts";
import {
autoChatAction,
AutoChatActionFlavor,
} from "@grammyjs/auto-chat-action";
// Extend the context
const bot = new Bot<Context & AutoChatActionFlavor>("");
// Install the plugin
bot.use(autoChatAction());
import { Bot, Context } from "grammy";
import {
autoChatAction,
AutoChatActionFlavor,
} from "@grammyjs/auto-chat-action";
type MyContext = Context & AutoChatActionFlavor;
// Create a bot.
const bot = new Bot<MyContext>("token");
// Install the plugin
bot.use(autoChatAction());
bot.command("start", (ctx) => {
// Starts sending "typing" chat action in a loop
ctx.chatAction = "typing";
// Some long-running operations...
return ctx.reply("42!");
});
bot.command("photo", (ctx) => {
// Sending the "upload_photo" chat action until the media is uploaded
return ctx.replyWithPhoto(
new InputFile("/tmp/picture.jpg"),
);
});
bot.start();
Automatic sending of a chat action starts under the following conditions:
Sending of a chat action stops under one of the following conditions:
sendChatAction
request caused an error.// Set the action to be sent until the update is processed
ctx.chatAction = "typing";
// To stop sending, simply set the chat action to null
ctx.chatAction = null;
// You can change the chat action during update processing
ctx.chatAction = "choose_sticker";
Sending other requests that require sending a chat action will interrupt the sending of the current chat action.
ctx.chatAction = "typing";
await ctx.reply("Hi!");
// Sends "upload_photo" while file is uploading
await ctx.replyWithPhoto(
new InputFile("/tmp/kitten.png"),
);
// Now there is no sending chat action
// ctx.chatAction is null
import { chatAction } from "@grammyjs/auto-chat-action";
bot.command("start", chatAction("typing"), (ctx) => {
// Some long-running operations...
return ctx.reply("42!");
});
You need to pass bot.api
explicitly to use the plugin with conversations.
// Pass API instance to the plugin
bot.use(autoChatAction(bot.api));
async function greeting(conversation: Conversation<Context>, ctx: Context) {
await ctx.reply("Hi there! What is your name?");
const { message } = await conversation.wait();
ctx.chatAction = "typing";
await conversation.sleep(1000);
await ctx.reply(`Welcome to the chat, ${message.text}!`);
}
FAQs
A plugin for automatic sending a chat action
The npm package @grammyjs/auto-chat-action receives a total of 1,282 weekly downloads. As such, @grammyjs/auto-chat-action popularity was classified as popular.
We found that @grammyjs/auto-chat-action demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.