mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 14:41:14 +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.
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
import { GroupActionsExamples } from '../example/GroupActionsExamples';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
group_id: Type.String({ description: '群号' }),
|
|
is_dismiss: Type.Optional(Type.Union([Type.Boolean(), Type.String()], { description: '是否解散' })),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Null({ description: '操作结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export default class SetGroupLeave extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.SetGroupLeave;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionSummary = '退出群组';
|
|
override actionDescription = '退出或解散指定群聊';
|
|
override actionTags = ['群组接口'];
|
|
override payloadExample = GroupActionsExamples.SetGroupLeave.payload;
|
|
override returnExample = GroupActionsExamples.SetGroupLeave.response;
|
|
|
|
async _handle (payload: PayloadType): Promise<null> {
|
|
await this.core.apis.GroupApi.quitGroup(payload.group_id.toString());
|
|
return null;
|
|
}
|
|
}
|