@mrclrchtr/supi-web 4.7.0 → 4.8.0
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.
- package/package.json +2 -6
- package/src/api.ts +0 -2
- package/src/fetch.ts +23 -16
- package/src/tool/tool-specs.ts +9 -1
- package/node_modules/@mrclrchtr/supi-core/README.md +0 -120
- package/node_modules/@mrclrchtr/supi-core/package.json +0 -75
- package/node_modules/@mrclrchtr/supi-core/src/api.ts +0 -42
- package/node_modules/@mrclrchtr/supi-core/src/config/config.ts +0 -221
- package/node_modules/@mrclrchtr/supi-core/src/config/prompt-surface.ts +0 -357
- package/node_modules/@mrclrchtr/supi-core/src/config.ts +0 -11
- package/node_modules/@mrclrchtr/supi-core/src/context/context-messages.ts +0 -119
- package/node_modules/@mrclrchtr/supi-core/src/context/context-provider-registry.ts +0 -36
- package/node_modules/@mrclrchtr/supi-core/src/context/context-tag.ts +0 -31
- package/node_modules/@mrclrchtr/supi-core/src/context.ts +0 -16
- package/node_modules/@mrclrchtr/supi-core/src/debug-registry.ts +0 -287
- package/node_modules/@mrclrchtr/supi-core/src/evidence-badge.ts +0 -41
- package/node_modules/@mrclrchtr/supi-core/src/footer-registry.ts +0 -57
- package/node_modules/@mrclrchtr/supi-core/src/index.ts +0 -36
- package/node_modules/@mrclrchtr/supi-core/src/llm.ts +0 -201
- package/node_modules/@mrclrchtr/supi-core/src/model-selection.ts +0 -134
- package/node_modules/@mrclrchtr/supi-core/src/path-utils.ts +0 -44
- package/node_modules/@mrclrchtr/supi-core/src/path.ts +0 -2
- package/node_modules/@mrclrchtr/supi-core/src/progress-widget.ts +0 -189
- package/node_modules/@mrclrchtr/supi-core/src/project-roots.ts +0 -170
- package/node_modules/@mrclrchtr/supi-core/src/project.ts +0 -15
- package/node_modules/@mrclrchtr/supi-core/src/prompt-surface.ts +0 -4
- package/node_modules/@mrclrchtr/supi-core/src/registry-utils.ts +0 -93
- package/node_modules/@mrclrchtr/supi-core/src/report.ts +0 -121
- package/node_modules/@mrclrchtr/supi-core/src/session-utils.ts +0 -71
- package/node_modules/@mrclrchtr/supi-core/src/session.ts +0 -8
- package/node_modules/@mrclrchtr/supi-core/src/settings/scoped-settings-list.ts +0 -373
- package/node_modules/@mrclrchtr/supi-core/src/settings/settings-action-menu.ts +0 -102
- package/node_modules/@mrclrchtr/supi-core/src/settings/settings-command.ts +0 -15
- package/node_modules/@mrclrchtr/supi-core/src/settings/settings-registry.ts +0 -76
- package/node_modules/@mrclrchtr/supi-core/src/settings/settings-schema.ts +0 -487
- package/node_modules/@mrclrchtr/supi-core/src/settings/settings-submenus.ts +0 -141
- package/node_modules/@mrclrchtr/supi-core/src/settings/settings-ui.ts +0 -118
- package/node_modules/@mrclrchtr/supi-core/src/settings-ui.ts +0 -3
- package/node_modules/@mrclrchtr/supi-core/src/settings.ts +0 -33
- package/node_modules/@mrclrchtr/supi-core/src/spinner-frames.ts +0 -11
- package/node_modules/@mrclrchtr/supi-core/src/status-spinner.ts +0 -68
- package/node_modules/@mrclrchtr/supi-core/src/terminal.ts +0 -60
- package/node_modules/@mrclrchtr/supi-core/src/tool-framework.ts +0 -192
- package/src/index.ts +0 -24
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import type { Theme } from "@earendil-works/pi-coding-agent";
|
|
2
|
-
import { truncateToWidth, wrapTextWithAnsi } from "@earendil-works/pi-tui";
|
|
3
|
-
|
|
4
|
-
/** Minimal theme surface required by the shared report helpers. */
|
|
5
|
-
export type ReportTheme = Pick<Theme, "fg">;
|
|
6
|
-
|
|
7
|
-
/** Color keys accepted by the report helpers. */
|
|
8
|
-
export type ReportColor = Parameters<Theme["fg"]>[0];
|
|
9
|
-
|
|
10
|
-
/** Options for rendering a themed key/value report row. */
|
|
11
|
-
export interface KeyValueLineOptions {
|
|
12
|
-
/** The label shown on the left. */
|
|
13
|
-
label: string;
|
|
14
|
-
/** The value shown on the right. */
|
|
15
|
-
value: string;
|
|
16
|
-
/** Theme used for color formatting. */
|
|
17
|
-
theme: ReportTheme;
|
|
18
|
-
/** Maximum rendered width. */
|
|
19
|
-
width: number;
|
|
20
|
-
/** Left indentation in spaces. */
|
|
21
|
-
indent?: number;
|
|
22
|
-
/** Theme color applied to the label. Defaults to `"text"`. */
|
|
23
|
-
labelColor?: ReportColor;
|
|
24
|
-
/** Theme color applied to the value. Defaults to `"dim"`. */
|
|
25
|
-
valueColor?: ReportColor;
|
|
26
|
-
/** Separator placed between label and value. Defaults to `": "`. */
|
|
27
|
-
separator?: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/** Options for rendering a preview-overflow hint. */
|
|
31
|
-
export interface OverflowHintOptions {
|
|
32
|
-
/** Optional follow-up hint such as `run /supi-context full`. */
|
|
33
|
-
hint?: string | null;
|
|
34
|
-
/** Left indentation in spaces. Defaults to `2`. */
|
|
35
|
-
indent?: number;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/** Ensure a report width never drops below the minimum readable width. */
|
|
39
|
-
export function clampReportWidth(width: number, minWidth = 24): number {
|
|
40
|
-
return Math.max(minWidth, width);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/** Render a top-level report title line with theme color and truncation. */
|
|
44
|
-
export function formatReportTitle(
|
|
45
|
-
title: string,
|
|
46
|
-
theme: ReportTheme,
|
|
47
|
-
width: number,
|
|
48
|
-
color: ReportColor = "accent",
|
|
49
|
-
): string {
|
|
50
|
-
return truncateToWidth(theme.fg(color, title), width);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/**
|
|
54
|
-
* Render a section header with optional dimmed metadata.
|
|
55
|
-
*
|
|
56
|
-
* Example: `Usage by category 42.3k tokens`
|
|
57
|
-
*/
|
|
58
|
-
export function formatSectionHeader(
|
|
59
|
-
title: string,
|
|
60
|
-
meta: string | null,
|
|
61
|
-
theme: ReportTheme,
|
|
62
|
-
width: number,
|
|
63
|
-
): string {
|
|
64
|
-
const left = theme.fg("text", title);
|
|
65
|
-
const content = meta ? `${left}${theme.fg("dim", ` ${meta}`)}` : left;
|
|
66
|
-
return truncateToWidth(content, width);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/** Render a single dimmed report line with optional left indentation. */
|
|
70
|
-
export function formatDimLine(text: string, theme: ReportTheme, width: number, indent = 0): string {
|
|
71
|
-
const safeIndent = Math.max(0, indent);
|
|
72
|
-
return truncateToWidth(`${" ".repeat(safeIndent)}${theme.fg("dim", text)}`, width);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/** Render a dimmed preview-overflow hint such as `… and 3 more — run /foo full`. */
|
|
76
|
-
export function formatOverflowHint(
|
|
77
|
-
hiddenCount: number,
|
|
78
|
-
theme: ReportTheme,
|
|
79
|
-
width: number,
|
|
80
|
-
options: OverflowHintOptions = {},
|
|
81
|
-
): string {
|
|
82
|
-
const { hint = null, indent = 2 } = options;
|
|
83
|
-
const suffix = hint ? ` — ${hint}` : "";
|
|
84
|
-
return formatDimLine(`… and ${hiddenCount} more${suffix}`, theme, width, indent);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
/** Render a single themed `label: value` row with truncation. */
|
|
88
|
-
export function formatKeyValueLine(options: KeyValueLineOptions): string {
|
|
89
|
-
const {
|
|
90
|
-
label,
|
|
91
|
-
value,
|
|
92
|
-
theme,
|
|
93
|
-
width,
|
|
94
|
-
indent = 2,
|
|
95
|
-
labelColor = "text",
|
|
96
|
-
valueColor = "dim",
|
|
97
|
-
separator = ": ",
|
|
98
|
-
} = options;
|
|
99
|
-
const safeIndent = Math.max(0, indent);
|
|
100
|
-
|
|
101
|
-
return truncateToWidth(
|
|
102
|
-
`${" ".repeat(safeIndent)}${theme.fg(labelColor, label)}${separator}${theme.fg(valueColor, value)}`,
|
|
103
|
-
width,
|
|
104
|
-
);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Wrap a report text block to the available width and optionally prefix each line.
|
|
109
|
-
*
|
|
110
|
-
* This is useful for wrapped bullets or explanatory notes that should align
|
|
111
|
-
* under an existing report indent.
|
|
112
|
-
*/
|
|
113
|
-
export function wrapReportText(
|
|
114
|
-
text: string,
|
|
115
|
-
width: number,
|
|
116
|
-
options: { indent?: string } = {},
|
|
117
|
-
): string[] {
|
|
118
|
-
const indent = options.indent ?? "";
|
|
119
|
-
const wrapped = wrapTextWithAnsi(text, Math.max(1, width - indent.length));
|
|
120
|
-
return indent ? wrapped.map((line) => `${indent}${line}`) : wrapped;
|
|
121
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
// Generic session-file tree-walking utilities.
|
|
2
|
-
|
|
3
|
-
import type { FileEntry, SessionEntry } from "@earendil-works/pi-coding-agent";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Minimal pi API surface needed to track the current session display name reactively.
|
|
7
|
-
* Accept `ExtensionAPI` or any object satisfying this shape.
|
|
8
|
-
*/
|
|
9
|
-
export interface SessionNameTrackerHost {
|
|
10
|
-
on(event: string, handler: (...args: unknown[]) => unknown): void;
|
|
11
|
-
getSessionName(): string | undefined;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Create a reactive session-name tracker that stays consistent across
|
|
16
|
-
* session starts, renames, and shutdowns without polling.
|
|
17
|
-
*
|
|
18
|
-
* Subscribes to `session_start` (initial name), `session_info_changed`
|
|
19
|
-
* (renames via `/name`, `pi.setSessionName()`, or RPC), and
|
|
20
|
-
* `session_shutdown` (reset to `undefined`).
|
|
21
|
-
*
|
|
22
|
-
* @returns a zero-arg getter that always returns the current session name
|
|
23
|
-
*
|
|
24
|
-
* @example
|
|
25
|
-
* ```ts
|
|
26
|
-
* const getSessionName = createSessionNameTracker(pi);
|
|
27
|
-
* // …later, during tool execute or spinner rendering:
|
|
28
|
-
* const name = getSessionName();
|
|
29
|
-
* ```
|
|
30
|
-
*/
|
|
31
|
-
export function createSessionNameTracker(pi: SessionNameTrackerHost): () => string | undefined {
|
|
32
|
-
let name: string | undefined;
|
|
33
|
-
|
|
34
|
-
pi.on("session_start", () => {
|
|
35
|
-
name = pi.getSessionName();
|
|
36
|
-
});
|
|
37
|
-
pi.on("session_info_changed", (event) => {
|
|
38
|
-
name = (event as { name?: string }).name;
|
|
39
|
-
});
|
|
40
|
-
pi.on("session_shutdown", () => {
|
|
41
|
-
name = undefined;
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
return () => name;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* Resolve the active branch path using PI's append-only tree semantics.
|
|
49
|
-
*
|
|
50
|
-
* The active branch is the path from the **last entry** (current leaf)
|
|
51
|
-
* back to the root via `parentId`. This follows PI's tree structure where
|
|
52
|
-
* entries are append-only and the last entry in the file is always the
|
|
53
|
-
* current leaf of the active branch.
|
|
54
|
-
*/
|
|
55
|
-
export function getActiveBranchEntries(entries: FileEntry[]): SessionEntry[] {
|
|
56
|
-
const sessionEntries = entries.filter((e): e is SessionEntry => e.type !== "session");
|
|
57
|
-
const byId = new Map(sessionEntries.map((entry) => [entry.id, entry]));
|
|
58
|
-
const leaf = sessionEntries.at(-1);
|
|
59
|
-
if (!leaf) return [];
|
|
60
|
-
|
|
61
|
-
const path: SessionEntry[] = [];
|
|
62
|
-
const visited = new Set<string>();
|
|
63
|
-
let current: SessionEntry | undefined = leaf;
|
|
64
|
-
while (current) {
|
|
65
|
-
if (visited.has(current.id)) break;
|
|
66
|
-
visited.add(current.id);
|
|
67
|
-
path.unshift(current);
|
|
68
|
-
current = current.parentId ? byId.get(current.parentId) : undefined;
|
|
69
|
-
}
|
|
70
|
-
return path;
|
|
71
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// supi-core session domain — session utilities and registries.
|
|
2
|
-
|
|
3
|
-
export { createRegistry, createSessionStateRegistry } from "./registry-utils.ts";
|
|
4
|
-
export type { SessionNameTrackerHost } from "./session-utils.ts";
|
|
5
|
-
export {
|
|
6
|
-
createSessionNameTracker,
|
|
7
|
-
getActiveBranchEntries,
|
|
8
|
-
} from "./session-utils.ts";
|
|
@@ -1,373 +0,0 @@
|
|
|
1
|
-
// Scoped settings list component for SuPi settings overlay.
|
|
2
|
-
//
|
|
3
|
-
// Replaces pi-tui's generic SettingsList with a source-aware list that
|
|
4
|
-
// renders source badges, dispatches Enter / Space / action-menu semantics,
|
|
5
|
-
// and delegates custom-field submenus.
|
|
6
|
-
|
|
7
|
-
import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
8
|
-
import { Input, Key, matchesKey, truncateToWidth } from "@earendil-works/pi-tui";
|
|
9
|
-
import type { ThemeAccessor } from "./settings-action-menu.ts";
|
|
10
|
-
import {
|
|
11
|
-
buildActionMenu,
|
|
12
|
-
createActionMenuComponent,
|
|
13
|
-
getConcreteChoices,
|
|
14
|
-
} from "./settings-action-menu.ts";
|
|
15
|
-
import type { SettingsScope, SettingsSection } from "./settings-registry.ts";
|
|
16
|
-
import type { ScopedFieldValue, SettingsFieldAction } from "./settings-schema.ts";
|
|
17
|
-
import { createInputSubmenu, createModelPickerSubmenu } from "./settings-submenus.ts";
|
|
18
|
-
|
|
19
|
-
// ═══════════════════════════════════════════════════════════════════════════
|
|
20
|
-
// Scoped settings list
|
|
21
|
-
// ═══════════════════════════════════════════════════════════════════════════
|
|
22
|
-
|
|
23
|
-
interface ScopedRow {
|
|
24
|
-
flatId: string;
|
|
25
|
-
sectionLabel: string;
|
|
26
|
-
field: ScopedFieldValue;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
interface SubmenuState {
|
|
30
|
-
component: {
|
|
31
|
-
render: (w: number) => string[];
|
|
32
|
-
invalidate?: () => void;
|
|
33
|
-
handleInput?: (data: string) => void;
|
|
34
|
-
};
|
|
35
|
-
onDone: () => void;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export class ScopedSettingsList {
|
|
39
|
-
private sections: SettingsSection[];
|
|
40
|
-
private scope: SettingsScope;
|
|
41
|
-
private cwd: string;
|
|
42
|
-
private ctx: ExtensionContext | undefined;
|
|
43
|
-
private theme: ThemeAccessor;
|
|
44
|
-
private tui: { requestRender: () => void };
|
|
45
|
-
private onCancel: () => void;
|
|
46
|
-
private onError?: (message: string) => void;
|
|
47
|
-
private rows: ScopedRow[] = [];
|
|
48
|
-
private selectedIndex = 0;
|
|
49
|
-
private submenu: SubmenuState | null = null;
|
|
50
|
-
private searchInput?: Input;
|
|
51
|
-
private searchQuery = "";
|
|
52
|
-
private cachedWidth?: number;
|
|
53
|
-
private cachedLines?: string[];
|
|
54
|
-
|
|
55
|
-
// biome-ignore lint/complexity/useMaxParams: component constructor needs all dependencies upfront for immutable wiring
|
|
56
|
-
constructor(
|
|
57
|
-
sections: SettingsSection[],
|
|
58
|
-
scope: SettingsScope,
|
|
59
|
-
cwd: string,
|
|
60
|
-
ctx: ExtensionContext | undefined,
|
|
61
|
-
theme: ThemeAccessor,
|
|
62
|
-
tui: { requestRender: () => void },
|
|
63
|
-
onCancel: () => void,
|
|
64
|
-
onError?: (message: string) => void,
|
|
65
|
-
) {
|
|
66
|
-
this.sections = sections;
|
|
67
|
-
this.scope = scope;
|
|
68
|
-
this.cwd = cwd;
|
|
69
|
-
this.ctx = ctx;
|
|
70
|
-
this.theme = theme;
|
|
71
|
-
this.tui = tui;
|
|
72
|
-
this.onCancel = onCancel;
|
|
73
|
-
this.onError = onError;
|
|
74
|
-
this.rebuildRows();
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
reload(scope: SettingsScope, cwd: string, ctx?: ExtensionContext): void {
|
|
78
|
-
this.scope = scope;
|
|
79
|
-
this.cwd = cwd;
|
|
80
|
-
this.ctx = ctx;
|
|
81
|
-
this.rebuildRows();
|
|
82
|
-
this.selectedIndex = Math.min(this.selectedIndex, Math.max(0, this.rows.length - 1));
|
|
83
|
-
this.invalidate();
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
invalidate(): void {
|
|
87
|
-
this.cachedWidth = undefined;
|
|
88
|
-
this.cachedLines = undefined;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
render(width: number): string[] {
|
|
92
|
-
if (this.cachedLines && this.cachedWidth === width) return this.cachedLines;
|
|
93
|
-
if (this.submenu) {
|
|
94
|
-
this.cachedWidth = width;
|
|
95
|
-
this.cachedLines = this.submenu.component.render(width);
|
|
96
|
-
return this.cachedLines;
|
|
97
|
-
}
|
|
98
|
-
this.cachedWidth = width;
|
|
99
|
-
this.cachedLines = this.renderList(width);
|
|
100
|
-
return this.cachedLines;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
private renderList(width: number): string[] {
|
|
104
|
-
const lines: string[] = [];
|
|
105
|
-
if (this.searchInput) {
|
|
106
|
-
lines.push(...this.searchInput.render(width));
|
|
107
|
-
lines.push("");
|
|
108
|
-
}
|
|
109
|
-
const displayRows = this.filteredRows();
|
|
110
|
-
if (displayRows.length === 0) {
|
|
111
|
-
lines.push(
|
|
112
|
-
this.theme.fg(
|
|
113
|
-
"dim",
|
|
114
|
-
this.searchQuery ? " No matching settings" : " No settings available",
|
|
115
|
-
),
|
|
116
|
-
);
|
|
117
|
-
lines.push("");
|
|
118
|
-
lines.push(this.renderHint(width));
|
|
119
|
-
return lines;
|
|
120
|
-
}
|
|
121
|
-
const maxVisible = Math.min(displayRows.length + 2, 20);
|
|
122
|
-
const start = Math.max(
|
|
123
|
-
0,
|
|
124
|
-
Math.min(this.selectedIndex - Math.floor(maxVisible / 2), displayRows.length - maxVisible),
|
|
125
|
-
);
|
|
126
|
-
const end = Math.min(start + maxVisible, displayRows.length);
|
|
127
|
-
for (let i = start; i < end; i++) {
|
|
128
|
-
const row = displayRows[i];
|
|
129
|
-
if (!row) continue;
|
|
130
|
-
const isSelected = i === this.selectedIndex;
|
|
131
|
-
const prefix = isSelected ? "› " : " ";
|
|
132
|
-
const section = this.theme.fg("dim", `${row.sectionLabel}: `);
|
|
133
|
-
const label = isSelected
|
|
134
|
-
? this.theme.fg("accent", row.field.field.label)
|
|
135
|
-
: this.theme.fg("text", row.field.field.label);
|
|
136
|
-
lines.push(truncateToWidth(`${prefix}${section}${label} ${row.field.displayValue}`, width));
|
|
137
|
-
}
|
|
138
|
-
if (start > 0 || end < displayRows.length) {
|
|
139
|
-
lines.push(this.theme.fg("dim", ` (${this.selectedIndex + 1}/${displayRows.length})`));
|
|
140
|
-
}
|
|
141
|
-
lines.push("");
|
|
142
|
-
lines.push(this.renderHint(width));
|
|
143
|
-
return lines;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
private renderHint(_width: number): string {
|
|
147
|
-
const hints = [];
|
|
148
|
-
if (this.searchInput) hints.push("Type to search");
|
|
149
|
-
hints.push("Enter actions", "Space cycle", "Esc close");
|
|
150
|
-
return this.theme.fg("dim", hints.join(" · "));
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
handleInput(data: string): void {
|
|
154
|
-
if (this.submenu) {
|
|
155
|
-
this.submenu.component.handleInput?.(data);
|
|
156
|
-
this.invalidate();
|
|
157
|
-
this.tui.requestRender();
|
|
158
|
-
return;
|
|
159
|
-
}
|
|
160
|
-
if (matchesKey(data, Key.escape)) {
|
|
161
|
-
this.onCancel();
|
|
162
|
-
return;
|
|
163
|
-
}
|
|
164
|
-
if (matchesKey(data, Key.up)) {
|
|
165
|
-
this.moveSelection(-1);
|
|
166
|
-
return;
|
|
167
|
-
}
|
|
168
|
-
if (matchesKey(data, Key.down)) {
|
|
169
|
-
this.moveSelection(1);
|
|
170
|
-
return;
|
|
171
|
-
}
|
|
172
|
-
if (matchesKey(data, Key.enter)) {
|
|
173
|
-
this.activateSelected();
|
|
174
|
-
return;
|
|
175
|
-
}
|
|
176
|
-
if (data === " ") {
|
|
177
|
-
this.cycleSelected();
|
|
178
|
-
return;
|
|
179
|
-
}
|
|
180
|
-
if (this.searchInput) {
|
|
181
|
-
const sanitized = data.replace(/ /g, "");
|
|
182
|
-
if (sanitized) {
|
|
183
|
-
this.searchInput.handleInput(sanitized);
|
|
184
|
-
this.searchQuery = this.searchInput.getValue();
|
|
185
|
-
this.selectedIndex = 0;
|
|
186
|
-
this.invalidate();
|
|
187
|
-
this.tui.requestRender();
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
private moveSelection(delta: number): void {
|
|
193
|
-
const rows = this.filteredRows();
|
|
194
|
-
if (rows.length === 0) return;
|
|
195
|
-
this.selectedIndex =
|
|
196
|
-
delta < 0
|
|
197
|
-
? this.selectedIndex <= 0
|
|
198
|
-
? rows.length - 1
|
|
199
|
-
: this.selectedIndex - 1
|
|
200
|
-
: this.selectedIndex >= rows.length - 1
|
|
201
|
-
? 0
|
|
202
|
-
: this.selectedIndex + 1;
|
|
203
|
-
this.invalidate();
|
|
204
|
-
this.tui.requestRender();
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
enableSearch(): void {
|
|
208
|
-
if (!this.searchInput) this.searchInput = new Input();
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
private rebuildRows(): void {
|
|
212
|
-
const rows: ScopedRow[] = [];
|
|
213
|
-
for (const section of this.sections) {
|
|
214
|
-
for (const value of section.loadValues(this.scope, this.cwd, this.ctx)) {
|
|
215
|
-
rows.push({
|
|
216
|
-
flatId: `${section.id}.${value.field.key}`,
|
|
217
|
-
sectionLabel: section.label,
|
|
218
|
-
field: value,
|
|
219
|
-
});
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
this.rows = rows;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
private filteredRows(): ScopedRow[] {
|
|
226
|
-
if (!this.searchQuery) return this.rows;
|
|
227
|
-
const q = this.searchQuery.toLowerCase();
|
|
228
|
-
return this.rows.filter(
|
|
229
|
-
(r) =>
|
|
230
|
-
r.field.field.label.toLowerCase().includes(q) ||
|
|
231
|
-
r.field.field.key.toLowerCase().includes(q) ||
|
|
232
|
-
r.field.displayValue.toLowerCase().includes(q),
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
private activateSelected(): void {
|
|
237
|
-
const rows = this.filteredRows();
|
|
238
|
-
const row = rows[this.selectedIndex];
|
|
239
|
-
if (!row) return;
|
|
240
|
-
|
|
241
|
-
const menu = buildActionMenu(row.field, this.scope);
|
|
242
|
-
if (menu.length === 0) return;
|
|
243
|
-
this.submenu = {
|
|
244
|
-
component: createActionMenuComponent(menu, this.doneAction(row), this.theme),
|
|
245
|
-
onDone: () => {
|
|
246
|
-
this.submenu = null;
|
|
247
|
-
this.invalidate();
|
|
248
|
-
this.tui.requestRender();
|
|
249
|
-
},
|
|
250
|
-
};
|
|
251
|
-
this.invalidate();
|
|
252
|
-
this.tui.requestRender();
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
private doneAction(row: ScopedRow): (action?: string) => void {
|
|
256
|
-
return (action) => {
|
|
257
|
-
this.submenu = null;
|
|
258
|
-
if (!action) {
|
|
259
|
-
this.invalidate();
|
|
260
|
-
this.tui.requestRender();
|
|
261
|
-
return;
|
|
262
|
-
}
|
|
263
|
-
if (action === "inherit") {
|
|
264
|
-
this.dispatchAction(row.flatId, { kind: "inherit" });
|
|
265
|
-
} else if (action === "resetToDefault") {
|
|
266
|
-
this.dispatchAction(row.flatId, { kind: "resetToDefault" });
|
|
267
|
-
} else if (action === "edit") {
|
|
268
|
-
this.openFreeInputSubmenu(row);
|
|
269
|
-
} else if (action.startsWith("set:")) {
|
|
270
|
-
this.dispatchAction(row.flatId, { kind: "set", value: action.slice(4) });
|
|
271
|
-
}
|
|
272
|
-
this.invalidate();
|
|
273
|
-
this.tui.requestRender();
|
|
274
|
-
};
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
private cycleSelected(): void {
|
|
278
|
-
const rows = this.filteredRows();
|
|
279
|
-
const row = rows[this.selectedIndex];
|
|
280
|
-
if (!row) return;
|
|
281
|
-
const choices = getConcreteChoices(row.field.field);
|
|
282
|
-
if (choices.length === 0) return;
|
|
283
|
-
const idx = choices.indexOf(row.field.editValue);
|
|
284
|
-
const next = choices[idx < 0 ? 0 : (idx + 1) % choices.length] ?? choices[0];
|
|
285
|
-
if (next) this.dispatchAction(row.flatId, { kind: "set", value: next });
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
private openFreeInputSubmenu(row: ScopedRow): void {
|
|
289
|
-
const cleanValue = row.field.editValue;
|
|
290
|
-
if (row.field.field.kind === "custom" && row.field.field.submenu) {
|
|
291
|
-
const comp = row.field.field.submenu(
|
|
292
|
-
cleanValue,
|
|
293
|
-
(selectedValue) => {
|
|
294
|
-
this.submenu = null;
|
|
295
|
-
if (selectedValue !== undefined) {
|
|
296
|
-
this.dispatchAction(row.flatId, { kind: "set", value: selectedValue });
|
|
297
|
-
} else {
|
|
298
|
-
this.reload(this.scope, this.cwd, this.ctx);
|
|
299
|
-
}
|
|
300
|
-
this.invalidate();
|
|
301
|
-
this.tui.requestRender();
|
|
302
|
-
},
|
|
303
|
-
this.scope,
|
|
304
|
-
this.cwd,
|
|
305
|
-
this.ctx,
|
|
306
|
-
);
|
|
307
|
-
this.submenu = {
|
|
308
|
-
component: comp,
|
|
309
|
-
onDone: () => {
|
|
310
|
-
this.submenu = null;
|
|
311
|
-
this.reload(this.scope, this.cwd, this.ctx);
|
|
312
|
-
this.invalidate();
|
|
313
|
-
this.tui.requestRender();
|
|
314
|
-
},
|
|
315
|
-
};
|
|
316
|
-
} else if (row.field.field.kind === "modelPicker") {
|
|
317
|
-
this.submenu = {
|
|
318
|
-
component: createModelPickerSubmenu(
|
|
319
|
-
cleanValue,
|
|
320
|
-
(v) => {
|
|
321
|
-
this.submenu = null;
|
|
322
|
-
if (v !== undefined) this.dispatchAction(row.flatId, { kind: "set", value: v });
|
|
323
|
-
this.invalidate();
|
|
324
|
-
this.tui.requestRender();
|
|
325
|
-
},
|
|
326
|
-
this.ctx,
|
|
327
|
-
row.field.field,
|
|
328
|
-
),
|
|
329
|
-
onDone: () => {
|
|
330
|
-
this.submenu = null;
|
|
331
|
-
this.invalidate();
|
|
332
|
-
this.tui.requestRender();
|
|
333
|
-
},
|
|
334
|
-
};
|
|
335
|
-
} else {
|
|
336
|
-
const label =
|
|
337
|
-
row.field.field.kind === "stringList"
|
|
338
|
-
? "Enter values (comma-separated):"
|
|
339
|
-
: `Enter ${row.field.field.label.toLowerCase()}:`;
|
|
340
|
-
this.submenu = {
|
|
341
|
-
component: createInputSubmenu(cleanValue, label, (v) => {
|
|
342
|
-
this.submenu = null;
|
|
343
|
-
if (v !== undefined) this.dispatchAction(row.flatId, { kind: "set", value: v });
|
|
344
|
-
this.invalidate();
|
|
345
|
-
this.tui.requestRender();
|
|
346
|
-
}),
|
|
347
|
-
onDone: () => {
|
|
348
|
-
this.submenu = null;
|
|
349
|
-
this.invalidate();
|
|
350
|
-
this.tui.requestRender();
|
|
351
|
-
},
|
|
352
|
-
};
|
|
353
|
-
}
|
|
354
|
-
this.invalidate();
|
|
355
|
-
this.tui.requestRender();
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
private dispatchAction(flatId: string, action: SettingsFieldAction): void {
|
|
359
|
-
const dotIndex = flatId.indexOf(".");
|
|
360
|
-
if (dotIndex === -1) return;
|
|
361
|
-
const sectionId = flatId.slice(0, dotIndex);
|
|
362
|
-
const fieldKey = flatId.slice(dotIndex + 1);
|
|
363
|
-
const section = this.sections.find((s) => s.id === sectionId);
|
|
364
|
-
if (!section) return;
|
|
365
|
-
try {
|
|
366
|
-
section.handleAction(this.scope, this.cwd, fieldKey, action, this.ctx);
|
|
367
|
-
} catch (err) {
|
|
368
|
-
this.onError?.(err instanceof Error ? err.message : String(err));
|
|
369
|
-
}
|
|
370
|
-
this.reload(this.scope, this.cwd, this.ctx);
|
|
371
|
-
this.tui.requestRender();
|
|
372
|
-
}
|
|
373
|
-
}
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
// Action menu component for SuPi settings rows.
|
|
2
|
-
//
|
|
3
|
-
// Builds context-sensitive action menus for scoped settings rows: concrete
|
|
4
|
-
// value choices, Inherit from global, Use default, and Reset to default.
|
|
5
|
-
|
|
6
|
-
import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
7
|
-
import { Container, type SelectItem, SelectList, Text } from "@earendil-works/pi-tui";
|
|
8
|
-
import type { SettingsScope } from "./settings-registry.ts";
|
|
9
|
-
import type { ScopedFieldValue, SettingsField } from "./settings-schema.ts";
|
|
10
|
-
|
|
11
|
-
/** Theme accessor type matching the TUI custom() theme parameter. */
|
|
12
|
-
export type ThemeAccessor = Parameters<Parameters<ExtensionContext["ui"]["custom"]>[0]>[1];
|
|
13
|
-
|
|
14
|
-
/** One selectable action in the row action menu. */
|
|
15
|
-
export interface ActionMenuItem {
|
|
16
|
-
value: string;
|
|
17
|
-
label: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Build the action menu for a settings row given its field state and scope.
|
|
22
|
-
*
|
|
23
|
-
* Menu items include concrete value choices (for cycling fields), edit actions
|
|
24
|
-
* (for free-input fields), and scope-aware Inherit/Reset-to-default actions.
|
|
25
|
-
*/
|
|
26
|
-
// biome-ignore lint/complexity/noExcessiveCognitiveComplexity: 5-way branch on field kind + 3-way on scope/source is the natural discriminator for per-kind row actions
|
|
27
|
-
export function buildActionMenu(field: ScopedFieldValue, scope: SettingsScope): ActionMenuItem[] {
|
|
28
|
-
const menu: ActionMenuItem[] = [];
|
|
29
|
-
|
|
30
|
-
if (field.field.kind === "custom") {
|
|
31
|
-
if (field.field.submenu) menu.push({ value: "edit", label: "Edit…" });
|
|
32
|
-
} else {
|
|
33
|
-
const choices = getConcreteChoices(field.field);
|
|
34
|
-
if (choices.length > 0) {
|
|
35
|
-
for (const choice of choices) menu.push({ value: `set:${choice}`, label: choice });
|
|
36
|
-
} else if (field.field.kind === "number") menu.push({ value: "edit", label: "Edit value…" });
|
|
37
|
-
else if (field.field.kind === "string") menu.push({ value: "edit", label: "Edit value…" });
|
|
38
|
-
else if (field.field.kind === "stringList") menu.push({ value: "edit", label: "Edit values…" });
|
|
39
|
-
else if (field.field.kind === "modelPicker")
|
|
40
|
-
menu.push({ value: "edit", label: "Choose model…" });
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
if (scope === "project") {
|
|
44
|
-
if (field.source === "project") {
|
|
45
|
-
const label = field.inheritanceSource === "global" ? "Inherit from global" : "Use default";
|
|
46
|
-
menu.push({ value: "inherit", label });
|
|
47
|
-
}
|
|
48
|
-
} else if (field.source === "global") {
|
|
49
|
-
menu.push({ value: "resetToDefault", label: "Reset to default" });
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
return menu;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* Return the concrete string choices for a field that supports Space cycling.
|
|
57
|
-
* Returns an empty array for fields that use free-text input or submenus.
|
|
58
|
-
*/
|
|
59
|
-
export function getConcreteChoices(field: SettingsField): string[] {
|
|
60
|
-
switch (field.kind) {
|
|
61
|
-
case "boolean":
|
|
62
|
-
return ["on", "off"];
|
|
63
|
-
case "enum":
|
|
64
|
-
return field.values;
|
|
65
|
-
case "number":
|
|
66
|
-
return field.values ?? [];
|
|
67
|
-
default:
|
|
68
|
-
return [];
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* Create a pi-tui SelectList-backed action menu component.
|
|
74
|
-
*/
|
|
75
|
-
export function createActionMenuComponent(
|
|
76
|
-
menu: ActionMenuItem[],
|
|
77
|
-
done: (action?: string) => void,
|
|
78
|
-
theme: ThemeAccessor,
|
|
79
|
-
) {
|
|
80
|
-
const items: SelectItem[] = menu.map((m) => ({ value: m.value, label: m.label }));
|
|
81
|
-
const container = new Container();
|
|
82
|
-
container.addChild(new Text(theme.fg("accent", " Actions"), 1, 0));
|
|
83
|
-
const selectList = new SelectList(items, Math.min(items.length + 2, 15), {
|
|
84
|
-
selectedPrefix: (t) => theme.fg("accent", t),
|
|
85
|
-
selectedText: (t) => theme.fg("accent", t),
|
|
86
|
-
description: (t) => theme.fg("muted", t),
|
|
87
|
-
scrollInfo: (t) => theme.fg("dim", t),
|
|
88
|
-
noMatch: (t) => theme.fg("warning", t),
|
|
89
|
-
});
|
|
90
|
-
selectList.onSelect = (item) => done(item.value);
|
|
91
|
-
selectList.onCancel = () => done();
|
|
92
|
-
container.addChild(selectList);
|
|
93
|
-
container.addChild(new Text(theme.fg("dim", " ↑↓ navigate • enter select • esc cancel"), 1, 0));
|
|
94
|
-
return {
|
|
95
|
-
render: (width: number) => container.render(width),
|
|
96
|
-
invalidate: () => container.invalidate(),
|
|
97
|
-
handleInput: (data: string) => {
|
|
98
|
-
selectList.handleInput(data);
|
|
99
|
-
return true;
|
|
100
|
-
},
|
|
101
|
-
};
|
|
102
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// /supi-settings command registration.
|
|
2
|
-
//
|
|
3
|
-
// Thin wrapper that registers the command and delegates to openSettingsOverlay.
|
|
4
|
-
|
|
5
|
-
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
6
|
-
import { openSettingsOverlay } from "./settings-ui.ts";
|
|
7
|
-
|
|
8
|
-
export function registerSettingsCommand(pi: ExtensionAPI): void {
|
|
9
|
-
pi.registerCommand("supi-settings", {
|
|
10
|
-
description: "Manage SuPi extension settings",
|
|
11
|
-
handler: async (_args, ctx) => {
|
|
12
|
-
openSettingsOverlay(pi, ctx);
|
|
13
|
-
},
|
|
14
|
-
});
|
|
15
|
-
}
|