Inline base64 source maps had been checked into tracked src files. This strips those comments from the repository without changing runtime behavior or adding ongoing guardrails, per the requested one-time cleanup scope. Constraint: Keep this change limited to tracked source cleanup only Rejected: Add CI/source verification guard | user requested one-time cleanup only Confidence: high Scope-risk: narrow Reversibility: clean Directive: If these directives reappear, fix the producing transform instead of reintroducing repo-side cleanup code Tested: rg -n "sourceMappingURL" ., bun run smoke, bun run verify:privacy, bun run test:provider, npm run test:provider-recommendation Not-tested: bun run typecheck (repository has many pre-existing unrelated failures) Co-authored-by: anandh8x <test@example.com>
243 lines
7.4 KiB
TypeScript
243 lines
7.4 KiB
TypeScript
import { c as _c } from "react-compiler-runtime";
|
|
import React, { createContext, type RefObject, useContext, useLayoutEffect, useMemo } from 'react';
|
|
import type { Key } from '../ink.js';
|
|
import { type ChordResolveResult, getBindingDisplayText, resolveKeyWithChordState } from './resolver.js';
|
|
import type { KeybindingContextName, ParsedBinding, ParsedKeystroke } from './types.js';
|
|
|
|
/** Handler registration for action callbacks */
|
|
type HandlerRegistration = {
|
|
action: string;
|
|
context: KeybindingContextName;
|
|
handler: () => void;
|
|
};
|
|
type KeybindingContextValue = {
|
|
/** Resolve a key input to an action name (with chord support) */
|
|
resolve: (input: string, key: Key, activeContexts: KeybindingContextName[]) => ChordResolveResult;
|
|
|
|
/** Update the pending chord state */
|
|
setPendingChord: (pending: ParsedKeystroke[] | null) => void;
|
|
|
|
/** Get display text for an action (e.g., "ctrl+t") */
|
|
getDisplayText: (action: string, context: KeybindingContextName) => string | undefined;
|
|
|
|
/** All parsed bindings (for help display) */
|
|
bindings: ParsedBinding[];
|
|
|
|
/** Current pending chord keystrokes (null if not in a chord) */
|
|
pendingChord: ParsedKeystroke[] | null;
|
|
|
|
/** Currently active keybinding contexts (for priority resolution) */
|
|
activeContexts: Set<KeybindingContextName>;
|
|
|
|
/** Register a context as active (call on mount) */
|
|
registerActiveContext: (context: KeybindingContextName) => void;
|
|
|
|
/** Unregister a context (call on unmount) */
|
|
unregisterActiveContext: (context: KeybindingContextName) => void;
|
|
|
|
/** Register a handler for an action (used by useKeybinding) */
|
|
registerHandler: (registration: HandlerRegistration) => () => void;
|
|
|
|
/** Invoke all handlers for an action (used by ChordInterceptor) */
|
|
invokeAction: (action: string) => boolean;
|
|
};
|
|
const KeybindingContext = createContext<KeybindingContextValue | null>(null);
|
|
type ProviderProps = {
|
|
bindings: ParsedBinding[];
|
|
/** Ref for immediate access to pending chord (avoids React state delay) */
|
|
pendingChordRef: RefObject<ParsedKeystroke[] | null>;
|
|
/** State value for re-renders (UI updates) */
|
|
pendingChord: ParsedKeystroke[] | null;
|
|
setPendingChord: (pending: ParsedKeystroke[] | null) => void;
|
|
activeContexts: Set<KeybindingContextName>;
|
|
registerActiveContext: (context: KeybindingContextName) => void;
|
|
unregisterActiveContext: (context: KeybindingContextName) => void;
|
|
/** Ref to handler registry (used by ChordInterceptor) */
|
|
handlerRegistryRef: RefObject<Map<string, Set<HandlerRegistration>>>;
|
|
children: React.ReactNode;
|
|
};
|
|
export function KeybindingProvider(t0) {
|
|
const $ = _c(24);
|
|
const {
|
|
bindings,
|
|
pendingChordRef,
|
|
pendingChord,
|
|
setPendingChord,
|
|
activeContexts,
|
|
registerActiveContext,
|
|
unregisterActiveContext,
|
|
handlerRegistryRef,
|
|
children
|
|
} = t0;
|
|
let t1;
|
|
if ($[0] !== bindings) {
|
|
t1 = (action, context) => getBindingDisplayText(action, context, bindings);
|
|
$[0] = bindings;
|
|
$[1] = t1;
|
|
} else {
|
|
t1 = $[1];
|
|
}
|
|
const getDisplay = t1;
|
|
let t2;
|
|
if ($[2] !== handlerRegistryRef) {
|
|
t2 = registration => {
|
|
const registry = handlerRegistryRef.current;
|
|
if (!registry) {
|
|
return _temp;
|
|
}
|
|
if (!registry.has(registration.action)) {
|
|
registry.set(registration.action, new Set());
|
|
}
|
|
registry.get(registration.action).add(registration);
|
|
return () => {
|
|
const handlers = registry.get(registration.action);
|
|
if (handlers) {
|
|
handlers.delete(registration);
|
|
if (handlers.size === 0) {
|
|
registry.delete(registration.action);
|
|
}
|
|
}
|
|
};
|
|
};
|
|
$[2] = handlerRegistryRef;
|
|
$[3] = t2;
|
|
} else {
|
|
t2 = $[3];
|
|
}
|
|
const registerHandler = t2;
|
|
let t3;
|
|
if ($[4] !== activeContexts || $[5] !== handlerRegistryRef) {
|
|
t3 = action_0 => {
|
|
const registry_0 = handlerRegistryRef.current;
|
|
if (!registry_0) {
|
|
return false;
|
|
}
|
|
const handlers_0 = registry_0.get(action_0);
|
|
if (!handlers_0 || handlers_0.size === 0) {
|
|
return false;
|
|
}
|
|
for (const registration_0 of handlers_0) {
|
|
if (activeContexts.has(registration_0.context)) {
|
|
registration_0.handler();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
$[4] = activeContexts;
|
|
$[5] = handlerRegistryRef;
|
|
$[6] = t3;
|
|
} else {
|
|
t3 = $[6];
|
|
}
|
|
const invokeAction = t3;
|
|
let t4;
|
|
if ($[7] !== bindings || $[8] !== pendingChordRef) {
|
|
t4 = (input, key, contexts) => resolveKeyWithChordState(input, key, contexts, bindings, pendingChordRef.current);
|
|
$[7] = bindings;
|
|
$[8] = pendingChordRef;
|
|
$[9] = t4;
|
|
} else {
|
|
t4 = $[9];
|
|
}
|
|
let t5;
|
|
if ($[10] !== activeContexts || $[11] !== bindings || $[12] !== getDisplay || $[13] !== invokeAction || $[14] !== pendingChord || $[15] !== registerActiveContext || $[16] !== registerHandler || $[17] !== setPendingChord || $[18] !== t4 || $[19] !== unregisterActiveContext) {
|
|
t5 = {
|
|
resolve: t4,
|
|
setPendingChord,
|
|
getDisplayText: getDisplay,
|
|
bindings,
|
|
pendingChord,
|
|
activeContexts,
|
|
registerActiveContext,
|
|
unregisterActiveContext,
|
|
registerHandler,
|
|
invokeAction
|
|
};
|
|
$[10] = activeContexts;
|
|
$[11] = bindings;
|
|
$[12] = getDisplay;
|
|
$[13] = invokeAction;
|
|
$[14] = pendingChord;
|
|
$[15] = registerActiveContext;
|
|
$[16] = registerHandler;
|
|
$[17] = setPendingChord;
|
|
$[18] = t4;
|
|
$[19] = unregisterActiveContext;
|
|
$[20] = t5;
|
|
} else {
|
|
t5 = $[20];
|
|
}
|
|
const value = t5;
|
|
let t6;
|
|
if ($[21] !== children || $[22] !== value) {
|
|
t6 = <KeybindingContext.Provider value={value}>{children}</KeybindingContext.Provider>;
|
|
$[21] = children;
|
|
$[22] = value;
|
|
$[23] = t6;
|
|
} else {
|
|
t6 = $[23];
|
|
}
|
|
return t6;
|
|
}
|
|
function _temp() {}
|
|
export function useKeybindingContext() {
|
|
const ctx = useContext(KeybindingContext);
|
|
if (!ctx) {
|
|
throw new Error("useKeybindingContext must be used within KeybindingProvider");
|
|
}
|
|
return ctx;
|
|
}
|
|
|
|
/**
|
|
* Optional hook that returns undefined outside of KeybindingProvider.
|
|
* Useful for components that may render before provider is available.
|
|
*/
|
|
export function useOptionalKeybindingContext() {
|
|
return useContext(KeybindingContext);
|
|
}
|
|
|
|
/**
|
|
* Hook to register a keybinding context as active while the component is mounted.
|
|
*
|
|
* When a context is registered, its keybindings take precedence over Global bindings.
|
|
* This allows context-specific bindings (like ThemePicker's ctrl+t) to override
|
|
* global bindings (like the todo toggle) when the context is active.
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* function ThemePicker() {
|
|
* useRegisterKeybindingContext('ThemePicker')
|
|
* // Now ThemePicker's ctrl+t binding takes precedence over Global
|
|
* }
|
|
* ```
|
|
*/
|
|
export function useRegisterKeybindingContext(context, t0) {
|
|
const $ = _c(5);
|
|
const isActive = t0 === undefined ? true : t0;
|
|
const keybindingContext = useOptionalKeybindingContext();
|
|
let t1;
|
|
let t2;
|
|
if ($[0] !== context || $[1] !== isActive || $[2] !== keybindingContext) {
|
|
t1 = () => {
|
|
if (!keybindingContext || !isActive) {
|
|
return;
|
|
}
|
|
keybindingContext.registerActiveContext(context);
|
|
return () => {
|
|
keybindingContext.unregisterActiveContext(context);
|
|
};
|
|
};
|
|
t2 = [context, keybindingContext, isActive];
|
|
$[0] = context;
|
|
$[1] = isActive;
|
|
$[2] = keybindingContext;
|
|
$[3] = t1;
|
|
$[4] = t2;
|
|
} else {
|
|
t1 = $[3];
|
|
t2 = $[4];
|
|
}
|
|
useLayoutEffect(t1, t2);
|
|
}
|