mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-13 11:00:50 +00:00
29 lines
993 B
TypeScript
29 lines
993 B
TypeScript
import { defaultRuntime } from "../../runtime.js";
|
|
import { isRich, theme } from "../../terminal/theme.js";
|
|
import { runCommandWithRuntime } from "../cli-utils.js";
|
|
import { unauthorizedHintForMessage } from "./rpc.js";
|
|
|
|
export function getNodesTheme() {
|
|
const rich = isRich();
|
|
const color = (fn: (value: string) => string) => (value: string) => (rich ? fn(value) : value);
|
|
return {
|
|
rich,
|
|
heading: color(theme.heading),
|
|
ok: color(theme.success),
|
|
warn: color(theme.warn),
|
|
muted: color(theme.muted),
|
|
error: color(theme.error),
|
|
};
|
|
}
|
|
|
|
export function runNodesCommand(label: string, action: () => Promise<void>) {
|
|
return runCommandWithRuntime(defaultRuntime, action, (err) => {
|
|
const message = String(err);
|
|
const { error, warn } = getNodesTheme();
|
|
defaultRuntime.error(error(`nodes ${label} failed: ${message}`));
|
|
const hint = unauthorizedHintForMessage(message);
|
|
if (hint) defaultRuntime.error(warn(hint));
|
|
defaultRuntime.exit(1);
|
|
});
|
|
}
|