import { NTQQMsgApi } from '@/core/apis'; import { ActionName } from '../types'; import BaseAction from '../BaseAction'; import { dbUtil } from '@/core/utils/db'; import { FromSchema, JSONSchema } from 'json-schema-to-ts'; const SchemaData = { type: 'object', properties: { message_id: { type: 'number' }, }, required: ['message_id'] } as const satisfies JSONSchema; type Payload = FromSchema; class DeleteMsg extends BaseAction { actionName = ActionName.DeleteMsg; PayloadSchema = SchemaData; protected async _handle(payload: Payload) { const msg = await dbUtil.getMsgByShortId(payload.message_id); if (msg) { await NTQQMsgApi.recallMsg({ peerUid: msg.peerUid, chatType: msg.chatType }, [msg.msgId]); } } } export default DeleteMsg;