@danypops/papyrus 0.27.8 → 0.27.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1212,8 +1212,13 @@ async function askQuestionBlocking(
|
|
|
1212
1212
|
let hasAnnouncedHide = false;
|
|
1213
1213
|
let response: AskResponse | null;
|
|
1214
1214
|
try {
|
|
1215
|
-
diag("factory about to construct AskComponent", { hasSignal: params.signal !== undefined, signalAlreadyAborted: params.signal?.aborted ?? null, hasExplicitTimeout: params.timeout !== undefined });
|
|
1216
|
-
const factory = (tui: TUI, theme: Theme, keybindings: KeybindingsManager,
|
|
1215
|
+
diag("factory about to construct AskComponent", { hasSignal: params.signal !== undefined, signalAlreadyAborted: params.signal?.aborted ?? null, hasExplicitTimeout: params.timeout !== undefined, allowMultiple });
|
|
1216
|
+
const factory = (tui: TUI, theme: Theme, keybindings: KeybindingsManager, realDone: (result: AskResponse | null) => void) => {
|
|
1217
|
+
const startedAt = Date.now();
|
|
1218
|
+
const done = (result: AskResponse | null) => {
|
|
1219
|
+
diag("done() invoked -- generic catch-all", { elapsedMs: Date.now() - startedAt, result: result === null ? null : JSON.stringify(result), stack: new Error().stack?.split("\n").slice(1, 6).join(" | ") });
|
|
1220
|
+
realDone(result);
|
|
1221
|
+
};
|
|
1217
1222
|
if (params.signal) params.signal.addEventListener("abort", () => { diag("tool call signal fired abort -- resolving null"); done(null); }, { once: true });
|
|
1218
1223
|
if (params.timeout && params.timeout > 0) setTimeout(() => { diag("explicit params.timeout expired -- resolving null", { timeout: params.timeout }); done(null); }, params.timeout);
|
|
1219
1224
|
return new AskComponent(params.question, normalizedContext, options, allowMultiple, allowFreeform, allowComment, displayMode, tui, theme, keybindings, shortcuts, done);
|
package/package.json
CHANGED