use scope macros for QR args

This commit is contained in:
LenAnderson
2024-04-06 18:39:11 -04:00
parent 22a67d1573
commit 2e24705a19
2 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,6 @@
import { callPopup } from '../../../../script.js';
import { setSlashCommandAutoComplete } from '../../../slash-commands.js';
import { SlashCommandScope } from '../../../slash-commands/SlashCommandScope.js';
import { getSortableDelay } from '../../../utils.js';
import { log, warn } from '../index.js';
import { QuickReplyContextLink } from './QuickReplyContextLink.js';
@ -493,10 +494,11 @@ export class QuickReply {
async execute(args = {}) {
if (this.message?.length > 0 && this.onExecute) {
const message = this.message.replace(/\{\{arg::([^}]+)\}\}/g, (_, key) => {
return args[key] ?? '';
});
return await this.onExecute(this, message, args.isAutoExecute ?? false);
const scope = new SlashCommandScope();
for (const key of Object.keys(args)) {
scope.setMacro(`arg::${key}`, args[key]);
}
return await this.onExecute(this, this.message, args.isAutoExecute ?? false, scope);
}
}