mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 14:41:14 +00:00
Changed OpenAPI spec version to 3.1.0 and replaced the hardcoded API version with napCatVersion from napcat-common. Added napcat-common as a dependency in package.json.
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { OneBotAction } from '../OneBotAction';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
group_id: Type.String({ description: '群号' }),
|
|
bot_appid: Type.String({ description: '机器人AppID' }),
|
|
button_id: Type.String({ default: '', description: '按钮ID' }),
|
|
callback_data: Type.String({ default: '', description: '回调数据' }),
|
|
msg_seq: Type.String({ default: '10086', description: '消息序列号' }),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Any({ description: '点击结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export class ClickInlineKeyboardButton extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.ClickInlineKeyboardButton;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionSummary = '点击内联键盘按钮';
|
|
override actionTags = ['消息扩展'];
|
|
override payloadExample = {
|
|
group_id: '123456',
|
|
bot_appid: '1234567890',
|
|
button_id: 'btn_1',
|
|
callback_data: '',
|
|
msg_seq: '10086'
|
|
};
|
|
override returnExample = {
|
|
};
|
|
async _handle (payload: PayloadType) {
|
|
return await this.core.apis.MsgApi.clickInlineKeyboardButton({
|
|
buttonId: payload.button_id,
|
|
peerId: payload.group_id.toString(),
|
|
botAppid: payload.bot_appid,
|
|
msgSeq: payload.msg_seq,
|
|
callback_data: payload.callback_data,
|
|
dmFlag: 0,
|
|
chatType: 2,
|
|
});
|
|
}
|
|
}
|