mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 22:51:13 +00:00
Moved action example files into a new 'example' directory and updated all imports accordingly. Removed the monolithic 'examples.ts' and redefined ActionExamples in OneBotAction.ts to only include common error codes. This improves code organization and maintainability.
27 lines
1012 B
TypeScript
27 lines
1012 B
TypeScript
import { ContextMode, ReturnDataType, SendMsgBase, SendMsgPayload } from '@/napcat-onebot/action/msg/SendMsg';
|
|
import { ActionName, BaseCheckResult } from '@/napcat-onebot/action/router';
|
|
|
|
import { GroupActionsExamples } from '../example/GroupActionsExamples';
|
|
|
|
// 未检测参数
|
|
class SendGroupMsg extends SendMsgBase {
|
|
override actionName = ActionName.SendGroupMsg;
|
|
override actionSummary = '发送群消息';
|
|
override actionDescription = '发送群消息';
|
|
override actionTags = ['群组接口'];
|
|
override payloadExample = GroupActionsExamples.SendGroupMsg.payload;
|
|
override returnExample = GroupActionsExamples.SendGroupMsg.response;
|
|
|
|
protected override async check (payload: SendMsgPayload): Promise<BaseCheckResult> {
|
|
delete payload.user_id;
|
|
payload.message_type = 'group';
|
|
return super.check(payload);
|
|
}
|
|
|
|
override async _handle (payload: SendMsgPayload): Promise<ReturnDataType> {
|
|
return this.base_handle(payload, ContextMode.Group);
|
|
}
|
|
}
|
|
|
|
export default SendGroupMsg;
|