don't update command progress CSS property if not changed

performance improvement from luccy
This commit is contained in:
LenAnderson 2024-07-22 18:28:30 -04:00
parent 2ac2a2537d
commit 621ef197da
1 changed files with 8 additions and 1 deletions

View File

@ -3498,11 +3498,18 @@ export async function executeSlashCommandsOnChatInput(text, options = {}) {
/**@type {SlashCommandClosureResult} */
let result = null;
let currentProgress = '';
try {
commandsFromChatInputAbortController = new SlashCommandAbortController();
result = await executeSlashCommandsWithOptions(text, {
abortController: commandsFromChatInputAbortController,
onProgress: (done, total) => ta.style.setProperty('--prog', `${done / total * 100}%`),
onProgress: (done, total) => {
const newProgress = `${done / total * 100}%`;
if (newProgress !== currentProgress) {
currentProgress = newProgress;
ta.style.setProperty('--prog', newProgress);
}
},
parserFlags: options.parserFlags,
scope: options.scope,
source: options.source,