mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
* fix: harden ACP communication boundaries Harden ACP communication boundaries Remote ACP sessions now cannot widen permission mode through untrusted metadata or client payloads. WebSocket ACP ingress measures payloads by bytes before binary decode, and prompt queue handoff keeps exactly one prompt active while queued prompts are drained FIFO. Constraint: ACP remote clients must not be able to open bypassPermissions without local launch intent Constraint: WebSocket payload limits must be byte-based and checked before binary decode Rejected: Keep promptToQueryContent wrapper | no production consumers remained after prompt conversion single-sourcing Confidence: high Scope-risk: moderate Directive: Do not re-enable remote bypassPermissions from _meta unless a local launch gate is verified in both acp-link and agent Tested: targeted ACP/RCS/acp-link prompt queue, bridge, permission, payload, and prompt conversion tests; bun run typecheck; bun run build Not-tested: Manual live ACP/RCS session against an external client * fix: restore repository verification gates Keep the full repository test, typecheck, build, and Biome lint gates usable after the ACP fix pass. This commit is intentionally separate from the ACP behavior change: it fixes Windows-safe Langfuse home redaction, removes stale lint suppressions, resolves Biome warning/info diagnostics, and keeps env expansion tests explicit without template-placeholder lint noise. Constraint: The project completion contract requires full typecheck, lint, test, and build evidence Rejected: Leave warning/info diagnostics as historical noise | they obscure future gate regressions and weaken flow-impact claims Confidence: high Scope-risk: narrow Directive: Keep repository gate cleanup separate from feature fixes when it is not part of the same runtime path Tested: bunx biome lint src/; bunx tsc --noEmit; bun test src/services/mcp/__tests__/envExpansion.test.ts src/utils/__tests__/sliceAnsi.test.ts src/utils/__tests__/stringUtils.test.ts; bun test; bun run build Not-tested: Manual Langfuse export against a real external Langfuse service * fix: harden ACP failure boundaries after review Deep review found several paths that made ACP communication failures look normal: prompt errors could finish as end_turn, permission pipeline exceptions could fall through to client approval, tool rawInput was deep-copied with JSON, and acp-link accepted unbounded or unvalidated WebSocket payloads. This keeps the behavior fail-closed, validates WS payloads before dispatch, caps payload size before JSON parse, and preserves cancellation intent with a generation counter. Constraint: User explicitly rejected pseudo-fixes, fallback behavior, and unbounded payload handling Rejected: Keep JSON stringify/parse rawInput copy | duplicates large payloads and silently drops non-JSON inputs Rejected: Delegate permission pipeline errors to client approval | allows a broken local permission check to be bypassed Confidence: high Scope-risk: moderate Directive: Do not convert ACP errors into normal end_turn responses without a protocol-level reason and regression tests Tested: bun test src/services/acp/__tests__/agent.test.ts src/services/acp/__tests__/bridge.test.ts src/services/acp/__tests__/permissions.test.ts Tested: bun test packages/acp-link/src/__tests__/server.test.ts Tested: bunx tsc --noEmit Tested: bunx biome lint src/ packages/acp-link/src/ Tested: bun run test:all Tested: bun run build Not-tested: Manual end-to-end ACP client session over a real editor WebSocket * fix: prevent ACP coverage runs from seeing partial mocks GitHub Actions failed under bun test --coverage because permissions.test.ts replaced ../bridge.js with a partial mock that omitted forwardSessionUpdates. Coverage worker ordering on Linux let sibling tests observe that incomplete module. This isolates ACP test mocks by snapshotting real exports, overriding only requested symbols, and restoring mocks in LIFO order. The shared helper also keeps the same behavior in agent.test.ts without duplicating mock infrastructure. Constraint: bun:test mock.module is process-global inside a worker. Rejected: Add fallback exports or production guards | the bridge export exists; the failure was test mock pollution. Rejected: Keep per-file helper copies | duplication would let restore semantics drift again. Confidence: high Scope-risk: narrow Directive: Prefer safeMockModule for partial mocks of real modules in ACP tests; plain mock.module is only appropriate for fully synthetic modules or isolated tests. Tested: bun test src/services/acp/__tests__/agent.test.ts src/services/acp/__tests__/bridge.test.ts src/services/acp/__tests__/permissions.test.ts Tested: bun test --coverage --coverage-reporter=lcov Tested: bunx tsc --noEmit Tested: bun run lint Tested: git diff --check Not-tested: Linux runner directly before push * fix: normalize ACP bypass requests without warning noise The previous CI repair removed the failing partial bridge mock, but it also added a shared safeMockModule helper and left the acp-link bypass normalization warning in the real new_session path. This tightens the fix: acp-link now treats an unauthorized client bypass request as normal permission-mode normalization without emitting a warning, and the ACP permission test explicitly preserves the real bridge and permission exports instead of using a shared helper. The agent test keeps its local mock preservation but names it by behavior and restores mocks in LIFO order. Constraint: CI output should not contain expected warning noise for covered policy branches. Rejected: Silence the test only | the normal new_session path would still warn for an expected normalization branch. Rejected: Keep the shared safeMockModule helper | the failing module was specific and should be fixed by preserving real exports at the mocking site. Confidence: high Scope-risk: narrow Directive: Treat client-requested bypassPermissions as data to normalize unless the local default explicitly enables bypass. Tested: bun test packages/acp-link/src/__tests__/server.test.ts Tested: bun test src/services/acp/__tests__/agent.test.ts src/services/acp/__tests__/bridge.test.ts src/services/acp/__tests__/permissions.test.ts Tested: bun test --coverage --coverage-reporter=lcov with UPPER_WARN_COUNT=0 Tested: bun run test:all Tested: bun run lint Tested: bunx tsc --noEmit Tested: git diff --check * fix: harden ACP bypass and CI warning gates ACP clients must not be able to enter bypassPermissions unless the local ACP gate and process environment both allow it. The same gate now controls session creation, explicit mode changes, and the ExitPlanMode option list, while session setup restores process.cwd so coverage and later work do not inherit ACP session state. Constraint: CI must stay warning-clean without hiding real ACP permission failures Rejected: Logging rejected bypass requests on the normal new_session path | it preserves audit text but reintroduces warning noise the runtime should not emit Rejected: Broad CI=true postinstall skip | it hides explicit Chrome MCP setup checks outside the install path Confidence: high Scope-risk: moderate Directive: Keep bypassPermissions gated through one ACP availability decision before exposing it to clients Tested: bun test src/services/acp/__tests__/permissions.test.ts src/services/acp/__tests__/agent.test.ts packages/acp-link/src/__tests__/server.test.ts Tested: bun run test:all Tested: bun run lint Tested: bun run build:vite with zero warning matches Tested: bun test --coverage --coverage-reporter lcov --coverage-dir coverage produced non-empty lcov with SF records and zero filtered warning matches Not-tested: GitHub Actions result after this push * fix: remove remaining CI warning noise The CI log still had three non-failing warnings after the ACP hardening commit: git init default-branch advice from checkout, a Node 20 action-runtime deprecation, and one additional known Vite dynamic-import diagnostic that only surfaced on Linux. The workflow now provides explicit git config and opts actions into Node 24, while Vite keeps a narrow allowlist for acknowledged optimizer diagnostics. Constraint: Do not use shell log filtering to hide warnings after they happen Rejected: Grep warning lines out of CI output | it would make future diagnostics harder to find Confidence: high Scope-risk: narrow Directive: Add new Vite warning allowlist entries only after checking that they are existing optimizer diagnostics, not new application defects Tested: bunx tsc --noEmit --pretty false Tested: bunx biome lint .github/workflows/ci.yml vite.config.ts Tested: bun run build:vite with zero warning matches Not-tested: GitHub Actions result after this push * fix: reject unauthorized ACP bypass and harden CI actions ACP clients now fail closed when permissionMode is malformed, unknown, or requests bypass without a local bypass opt-in. acp-link validates new_session input before forwarding to the agent and returns client error frames for expected unauthorized requests without logging create-failed noise. The direct AcpAgent path independently rejects invalid _meta.permissionMode and unauthorized bypass instead of falling back to settings. CI workflows and generated GitHub App templates now use Node 24-compatible actions pinned to immutable commit SHAs, and acp-link startup output no longer prints the auth token. Constraint: Must not hide warnings with test isolation or log filtering Rejected: Silent fallback to local permission mode | accepts invalid client intent and masks boundary behavior Rejected: Broad dependency churn from bun update | audit remained failing while package and lockfile churn expanded scope Confidence: high Scope-risk: moderate Directive: Client-provided permissionMode must stay fail-closed before reaching AcpAgent; only local settings.defaultMode may fall back to default on invalid local config Tested: bun test packages/acp-link/src/__tests__/server.test.ts src/services/acp/__tests__/agent.test.ts src/services/acp/__tests__/permissions.test.ts src/services/skillLearning/__tests__/skillLifecycle.test.ts src/utils/settings/__tests__/config.test.ts Tested: bunx tsc -p packages/acp-link/tsconfig.json --noEmit --pretty false Tested: bunx tsc --noEmit --pretty false Tested: bun run lint Tested: bun run test:all Tested: local CI equivalent install/typecheck/coverage/build with warning_scan=0 Not-tested: Pre-existing bun audit vulnerabilities require a separate dependency-hardening PR * fix: resolve dependency audit findings precisely Use dependency-native upgrades and lockfile resolution to close the audit findings without suppressions. Keep the chrome MCP setup aligned with the new dependency graph and add real integration coverage so the override behavior stays verified. Constraint: no audit ignores or warning suppression Rejected: broad google-auth/protobuf overrides | replaced with upstream-compatible resolution Confidence: high Scope-risk: moderate Directive: keep dependency fixes upstream-compatible; do not reintroduce blanket overrides unless the audit surface changes materially Tested: bun audit; bun audit --json; bun install --frozen-lockfile with CLAUDE_CODE_SKIP_CHROME_MCP_SETUP=1; bunx tsc --noEmit --pretty false; bun run lint; targeted tests; bun run test:all; bun test --coverage --coverage-reporter lcov --coverage-dir coverage; bun run build:vite Not-tested: unrelated pre-existing ACP/CORS/token fallback residual risks * fix: keep ACP auth tokens out of URLs Replace the ad hoc URL-token flow with crypto UUID-backed transport identifiers so the bearer token stays in structured request data instead of query strings. Keep the server, web client, and transport helpers aligned so the ACP/RCS handshake remains compatible after the API shape change. Constraint: token must not be embedded in the URL Rejected: token-as-uuid query fallback | leaked bearer tokens in URLs Confidence: high Scope-risk: moderate Directive: preserve the structured auth path; do not reintroduce query-token fallback when adjusting ACP transport code Tested: targeted ACP/RCS transport tests Not-tested: unrelated pre-existing ACP/CORS/token fallback residual risks * fix: normalize WebFetch request headers Normalize WebFetch headers before dispatch so canonicalization preserves auth semantics and duplicate forms do not slip through. Keep the behavior locked with a focused header test instead of broadening the request pipeline. Constraint: preserve header semantics without widening the fetch surface Rejected: ad hoc caller-side normalization | too easy to bypass in future call sites Confidence: high Scope-risk: narrow Directive: keep header normalization close to the WebFetch utility so future callers inherit the same behavior automatically Tested: targeted WebFetch header tests Not-tested: unrelated fetch backend behavior beyond header normalization * fix: harden ACP remote auth surfaces Tighten the remaining Claude security artifact items by requiring API keys on ACP global reads and relay upgrades, moving WebSocket tokens out of URLs, and replacing open web CORS with an explicit allowlist. Constraint: Browser WebSocket clients cannot set arbitrary Authorization headers, so the token is carried in a selected subprotocol instead of a query string. Rejected: Keep UUID auth for ACP channel groups | any caller can mint a UUID and read global ACP data. Rejected: Preserve ?token= compatibility | secrets leak into logs, history, referrers, and intermediaries. Confidence: high Scope-risk: moderate Directive: Do not reintroduce query-string bearer tokens; use Authorization or rcs.auth.<base64url-token>. Tested: bunx tsc --noEmit --pretty false Tested: bun run typecheck in packages/remote-control-server Tested: bun run build in packages/acp-link Tested: bun run lint Tested: bun audit Tested: focused RCS/acp-link/web tests, 160 pass Tested: Edge headless browser WebSocket subprotocol handshake Tested: bun run test:all, 3669 pass Tested: bun run build:vite Tested: bun run build Not-tested: Manual end-to-end relay with a live external ACP agent * fix: resolve CI dependency override lookup The CI runner does not expose @grpc/proto-loader as a root-resolvable package, and the test was relying on local hoisting rather than the real dependency owner. Resolve proto-loader through @opentelemetry/exporter-trace-otlp-grpc and @grpc/grpc-js so the smoke test follows the package graph it is validating. Constraint: Do not add a new root dependency for a transitive smoke test. Rejected: Skip or weaken the test | the test protects the protobuf 7 override path and should keep exercising loadSync. Rejected: Add @grpc/proto-loader directly to root package.json | that hides the owning-package resolution issue and broadens dependency surface. Confidence: high Scope-risk: narrow Directive: Dependency override smoke tests should resolve from the package that actually owns the dependency, not from incidental root hoisting. Tested: bun test tests/integration/dependency-overrides.test.ts; bunx tsc --noEmit --pretty false; bun run lint; bun audit; bun run test:all; git diff --check --------- Co-authored-by: unraid <local@unraid.local>
991 lines
32 KiB
TypeScript
991 lines
32 KiB
TypeScript
import figures from 'figures'
|
|
import * as React from 'react'
|
|
import { useEffect, useRef, useState } from 'react'
|
|
import {
|
|
type AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
|
|
logEvent,
|
|
} from 'src/services/analytics/index.js'
|
|
import { ConfigurableShortcutHint } from '../../components/ConfigurableShortcutHint.js'
|
|
import { Byline, KeyboardShortcutHint } from '@anthropic/ink'
|
|
// eslint-disable-next-line custom-rules/prefer-use-keybindings -- useInput needed for marketplace-specific u/r shortcuts and y/n confirmation not in keybinding schema
|
|
import { Box, Text, useInput } from '@anthropic/ink'
|
|
import {
|
|
useKeybinding,
|
|
useKeybindings,
|
|
} from '../../keybindings/useKeybinding.js'
|
|
import type { LoadedPlugin } from '../../types/plugin.js'
|
|
import { count } from '../../utils/array.js'
|
|
import { shouldSkipPluginAutoupdate } from '../../utils/config.js'
|
|
import { errorMessage } from '../../utils/errors.js'
|
|
import { clearAllCaches } from '../../utils/plugins/cacheUtils.js'
|
|
import {
|
|
createPluginId,
|
|
formatMarketplaceLoadingErrors,
|
|
getMarketplaceSourceDisplay,
|
|
loadMarketplacesWithGracefulDegradation,
|
|
} from '../../utils/plugins/marketplaceHelpers.js'
|
|
import {
|
|
loadKnownMarketplacesConfig,
|
|
refreshMarketplace,
|
|
removeMarketplaceSource,
|
|
setMarketplaceAutoUpdate,
|
|
} from '../../utils/plugins/marketplaceManager.js'
|
|
import { updatePluginsForMarketplaces } from '../../utils/plugins/pluginAutoupdate.js'
|
|
import { loadAllPlugins } from '../../utils/plugins/pluginLoader.js'
|
|
import { isMarketplaceAutoUpdate } from '../../utils/plugins/schemas.js'
|
|
import {
|
|
getSettingsForSource,
|
|
updateSettingsForSource,
|
|
} from '../../utils/settings/settings.js'
|
|
import { plural } from '../../utils/stringUtils.js'
|
|
import type { ViewState } from './types.js'
|
|
|
|
type Props = {
|
|
setViewState: (state: ViewState) => void
|
|
error?: string | null
|
|
setError?: (error: string | null) => void
|
|
setResult: (result: string | null) => void
|
|
exitState: {
|
|
pending: boolean
|
|
keyName: 'Ctrl-C' | 'Ctrl-D' | null
|
|
}
|
|
onManageComplete?: () => void | Promise<void>
|
|
targetMarketplace?: string
|
|
action?: 'update' | 'remove'
|
|
}
|
|
|
|
type MarketplaceState = {
|
|
name: string
|
|
source: string
|
|
lastUpdated?: string
|
|
pluginCount?: number
|
|
installedPlugins?: LoadedPlugin[]
|
|
pendingUpdate?: boolean
|
|
pendingRemove?: boolean
|
|
autoUpdate?: boolean
|
|
}
|
|
|
|
type InternalViewState = 'list' | 'details' | 'confirm-remove'
|
|
|
|
export function ManageMarketplaces({
|
|
setViewState,
|
|
error,
|
|
setError,
|
|
setResult,
|
|
exitState,
|
|
onManageComplete,
|
|
targetMarketplace,
|
|
action,
|
|
}: Props): React.ReactNode {
|
|
const [marketplaceStates, setMarketplaceStates] = useState<
|
|
MarketplaceState[]
|
|
>([])
|
|
const [loading, setLoading] = useState(true)
|
|
const [selectedIndex, setSelectedIndex] = useState(0)
|
|
const [isProcessing, setIsProcessing] = useState(false)
|
|
const [processError, setProcessError] = useState<string | null>(null)
|
|
const [successMessage, setSuccessMessage] = useState<string | null>(null)
|
|
const [progressMessage, setProgressMessage] = useState<string | null>(null)
|
|
const [internalView, setInternalView] = useState<InternalViewState>('list')
|
|
const [selectedMarketplace, setSelectedMarketplace] =
|
|
useState<MarketplaceState | null>(null)
|
|
const [detailsMenuIndex, setDetailsMenuIndex] = useState(0)
|
|
const hasAttemptedAutoAction = useRef(false)
|
|
|
|
// Load marketplaces and their installed plugins
|
|
useEffect(() => {
|
|
async function loadMarketplaces() {
|
|
try {
|
|
const config = await loadKnownMarketplacesConfig()
|
|
const { enabled, disabled } = await loadAllPlugins()
|
|
const allPlugins = [...enabled, ...disabled]
|
|
|
|
// Load marketplaces with graceful degradation
|
|
const { marketplaces, failures } =
|
|
await loadMarketplacesWithGracefulDegradation(config)
|
|
|
|
const states: MarketplaceState[] = []
|
|
for (const { name, config: entry, data: marketplace } of marketplaces) {
|
|
// Get all plugins installed from this marketplace
|
|
const installedFromMarketplace = allPlugins.filter(plugin =>
|
|
plugin.source.endsWith(`@${name}`),
|
|
)
|
|
|
|
states.push({
|
|
name,
|
|
source: getMarketplaceSourceDisplay(entry.source),
|
|
lastUpdated: entry.lastUpdated,
|
|
pluginCount: marketplace?.plugins.length,
|
|
installedPlugins: installedFromMarketplace,
|
|
pendingUpdate: false,
|
|
pendingRemove: false,
|
|
autoUpdate: isMarketplaceAutoUpdate(name, entry),
|
|
})
|
|
}
|
|
|
|
// Sort: claude-plugin-directory first, then alphabetically
|
|
states.sort((a, b) => {
|
|
if (a.name === 'claude-plugin-directory') return -1
|
|
if (b.name === 'claude-plugin-directory') return 1
|
|
return a.name.localeCompare(b.name)
|
|
})
|
|
setMarketplaceStates(states)
|
|
|
|
// Handle marketplace loading errors/warnings
|
|
const successCount = count(marketplaces, m => m.data !== null)
|
|
const errorResult = formatMarketplaceLoadingErrors(
|
|
failures,
|
|
successCount,
|
|
)
|
|
if (errorResult) {
|
|
if (errorResult.type === 'warning') {
|
|
setProcessError(errorResult.message)
|
|
} else {
|
|
throw new Error(errorResult.message)
|
|
}
|
|
}
|
|
|
|
// Auto-execute if target and action provided
|
|
if (targetMarketplace && !hasAttemptedAutoAction.current && !error) {
|
|
hasAttemptedAutoAction.current = true
|
|
const targetIndex = states.findIndex(
|
|
s => s.name === targetMarketplace,
|
|
)
|
|
if (targetIndex >= 0) {
|
|
const targetState = states[targetIndex]
|
|
if (action) {
|
|
// Mark the action as pending and execute
|
|
setSelectedIndex(targetIndex + 1) // +1 because "Add Marketplace" is at index 0
|
|
const newStates = [...states]
|
|
if (action === 'update') {
|
|
newStates[targetIndex]!.pendingUpdate = true
|
|
} else if (action === 'remove') {
|
|
newStates[targetIndex]!.pendingRemove = true
|
|
}
|
|
setMarketplaceStates(newStates)
|
|
// Apply the change immediately
|
|
setTimeout(applyChanges, 100, newStates)
|
|
} else if (targetState) {
|
|
// No action - just show the details view for this marketplace
|
|
setSelectedIndex(targetIndex + 1) // +1 because "Add Marketplace" is at index 0
|
|
setSelectedMarketplace(targetState)
|
|
setInternalView('details')
|
|
}
|
|
} else if (setError) {
|
|
setError(`Marketplace not found: ${targetMarketplace}`)
|
|
}
|
|
}
|
|
} catch (err) {
|
|
if (setError) {
|
|
setError(
|
|
err instanceof Error ? err.message : 'Failed to load marketplaces',
|
|
)
|
|
}
|
|
setProcessError(
|
|
err instanceof Error ? err.message : 'Failed to load marketplaces',
|
|
)
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
void loadMarketplaces()
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [targetMarketplace, action, error])
|
|
|
|
// Check if there are any pending changes
|
|
const hasPendingChanges = () => {
|
|
return marketplaceStates.some(
|
|
state => state.pendingUpdate || state.pendingRemove,
|
|
)
|
|
}
|
|
|
|
// Get count of pending operations
|
|
const getPendingCounts = () => {
|
|
const updateCount = count(marketplaceStates, s => s.pendingUpdate)
|
|
const removeCount = count(marketplaceStates, s => s.pendingRemove)
|
|
return { updateCount, removeCount }
|
|
}
|
|
|
|
// Apply all pending changes
|
|
const applyChanges = async (states?: MarketplaceState[]) => {
|
|
const statesToProcess = states || marketplaceStates
|
|
const wasInDetailsView = internalView === 'details'
|
|
setIsProcessing(true)
|
|
setProcessError(null)
|
|
setSuccessMessage(null)
|
|
setProgressMessage(null)
|
|
|
|
try {
|
|
const settings = getSettingsForSource('userSettings')
|
|
let updatedCount = 0
|
|
let removedCount = 0
|
|
const refreshedMarketplaces = new Set<string>()
|
|
|
|
for (const state of statesToProcess) {
|
|
// Handle remove
|
|
if (state.pendingRemove) {
|
|
// First uninstall all plugins from this marketplace
|
|
if (state.installedPlugins && state.installedPlugins.length > 0) {
|
|
const newEnabledPlugins = { ...settings?.enabledPlugins }
|
|
for (const plugin of state.installedPlugins) {
|
|
const pluginId = createPluginId(plugin.name, state.name)
|
|
// Mark as disabled/uninstalled
|
|
newEnabledPlugins[pluginId] = false
|
|
}
|
|
updateSettingsForSource('userSettings', {
|
|
enabledPlugins: newEnabledPlugins,
|
|
})
|
|
}
|
|
|
|
// Then remove the marketplace
|
|
await removeMarketplaceSource(state.name)
|
|
removedCount++
|
|
|
|
logEvent('tengu_marketplace_removed', {
|
|
marketplace_name:
|
|
state.name as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
|
|
plugins_uninstalled: state.installedPlugins?.length || 0,
|
|
})
|
|
continue
|
|
}
|
|
|
|
// Handle update
|
|
if (state.pendingUpdate) {
|
|
// Refresh individual marketplace for efficiency with progress reporting
|
|
await refreshMarketplace(state.name, (message: string) => {
|
|
setProgressMessage(message)
|
|
})
|
|
updatedCount++
|
|
refreshedMarketplaces.add(state.name.toLowerCase())
|
|
|
|
logEvent('tengu_marketplace_updated', {
|
|
marketplace_name:
|
|
state.name as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
|
|
})
|
|
}
|
|
}
|
|
|
|
// After marketplace clones are refreshed, bump installed plugins from
|
|
// those marketplaces to the new version. Without this, the loader's
|
|
// cache-on-miss (copyPluginToVersionedCache) creates the new version
|
|
// dir on the next loadAllPlugins() call, but installed_plugins.json
|
|
// stays on the old version — so cleanupOrphanedPluginVersionsInBackground
|
|
// stamps the NEW dir with .orphaned_at on the next startup. See #29512.
|
|
// updatePluginOp (called inside the helper) is what actually writes
|
|
// installed_plugins.json via updateInstallationPathOnDisk.
|
|
let updatedPluginCount = 0
|
|
if (refreshedMarketplaces.size > 0) {
|
|
const updatedPluginIds = await updatePluginsForMarketplaces(
|
|
refreshedMarketplaces,
|
|
)
|
|
updatedPluginCount = updatedPluginIds.length
|
|
}
|
|
|
|
// Clear caches after changes
|
|
clearAllCaches()
|
|
|
|
// Call completion callback
|
|
if (onManageComplete) {
|
|
await onManageComplete()
|
|
}
|
|
|
|
// Reload marketplace data to show updated timestamps
|
|
const config = await loadKnownMarketplacesConfig()
|
|
const { enabled, disabled } = await loadAllPlugins()
|
|
const allPlugins = [...enabled, ...disabled]
|
|
|
|
const { marketplaces } =
|
|
await loadMarketplacesWithGracefulDegradation(config)
|
|
|
|
const newStates: MarketplaceState[] = []
|
|
for (const { name, config: entry, data: marketplace } of marketplaces) {
|
|
const installedFromMarketplace = allPlugins.filter(plugin =>
|
|
plugin.source.endsWith(`@${name}`),
|
|
)
|
|
|
|
newStates.push({
|
|
name,
|
|
source: getMarketplaceSourceDisplay(entry.source),
|
|
lastUpdated: entry.lastUpdated,
|
|
pluginCount: marketplace?.plugins.length,
|
|
installedPlugins: installedFromMarketplace,
|
|
pendingUpdate: false,
|
|
pendingRemove: false,
|
|
autoUpdate: isMarketplaceAutoUpdate(name, entry),
|
|
})
|
|
}
|
|
|
|
// Sort: claude-plugin-directory first, then alphabetically
|
|
newStates.sort((a, b) => {
|
|
if (a.name === 'claude-plugin-directory') return -1
|
|
if (b.name === 'claude-plugin-directory') return 1
|
|
return a.name.localeCompare(b.name)
|
|
})
|
|
setMarketplaceStates(newStates)
|
|
|
|
// Update selected marketplace reference with fresh data
|
|
if (wasInDetailsView && selectedMarketplace) {
|
|
const updatedMarketplace = newStates.find(
|
|
s => s.name === selectedMarketplace.name,
|
|
)
|
|
if (updatedMarketplace) {
|
|
setSelectedMarketplace(updatedMarketplace)
|
|
}
|
|
}
|
|
|
|
// Build success message
|
|
const actions: string[] = []
|
|
if (updatedCount > 0) {
|
|
const pluginPart =
|
|
updatedPluginCount > 0
|
|
? ` (${updatedPluginCount} ${plural(updatedPluginCount, 'plugin')} bumped)`
|
|
: ''
|
|
actions.push(
|
|
`Updated ${updatedCount} ${plural(updatedCount, 'marketplace')}${pluginPart}`,
|
|
)
|
|
}
|
|
if (removedCount > 0) {
|
|
actions.push(
|
|
`Removed ${removedCount} ${plural(removedCount, 'marketplace')}`,
|
|
)
|
|
}
|
|
|
|
if (actions.length > 0) {
|
|
const successMsg = `${figures.tick} ${actions.join(', ')}`
|
|
// If we were in details view, stay there and show success
|
|
if (wasInDetailsView) {
|
|
setSuccessMessage(successMsg)
|
|
} else {
|
|
// Otherwise show result and exit to menu
|
|
setResult(successMsg)
|
|
setTimeout(setViewState, 2000, { type: 'menu' as const })
|
|
}
|
|
} else if (!wasInDetailsView) {
|
|
setViewState({ type: 'menu' })
|
|
}
|
|
} catch (err) {
|
|
const errorMsg = errorMessage(err)
|
|
setProcessError(errorMsg)
|
|
if (setError) {
|
|
setError(errorMsg)
|
|
}
|
|
} finally {
|
|
setIsProcessing(false)
|
|
setProgressMessage(null)
|
|
}
|
|
}
|
|
|
|
// Handle confirming marketplace removal
|
|
const confirmRemove = async () => {
|
|
if (!selectedMarketplace) return
|
|
|
|
// Mark for removal and apply
|
|
const newStates = marketplaceStates.map(state =>
|
|
state.name === selectedMarketplace.name
|
|
? { ...state, pendingRemove: true }
|
|
: state,
|
|
)
|
|
setMarketplaceStates(newStates)
|
|
await applyChanges(newStates)
|
|
}
|
|
|
|
// Build menu options for details view
|
|
const buildDetailsMenuOptions = (
|
|
marketplace: MarketplaceState | null,
|
|
): Array<{ label: string; secondaryLabel?: string; value: string }> => {
|
|
if (!marketplace) return []
|
|
|
|
const options: Array<{
|
|
label: string
|
|
secondaryLabel?: string
|
|
value: string
|
|
}> = [
|
|
{
|
|
label: `Browse plugins (${marketplace.pluginCount ?? 0})`,
|
|
value: 'browse',
|
|
},
|
|
{
|
|
label: 'Update marketplace',
|
|
secondaryLabel: marketplace.lastUpdated
|
|
? `(last updated ${new Date(marketplace.lastUpdated).toLocaleDateString()})`
|
|
: undefined,
|
|
value: 'update',
|
|
},
|
|
]
|
|
|
|
// Only show auto-update toggle if auto-updater is not globally disabled
|
|
if (!shouldSkipPluginAutoupdate()) {
|
|
options.push({
|
|
label: marketplace.autoUpdate
|
|
? 'Disable auto-update'
|
|
: 'Enable auto-update',
|
|
value: 'toggle-auto-update',
|
|
})
|
|
}
|
|
|
|
options.push({ label: 'Remove marketplace', value: 'remove' })
|
|
|
|
return options
|
|
}
|
|
|
|
// Handle toggling auto-update for a marketplace
|
|
const handleToggleAutoUpdate = async (marketplace: MarketplaceState) => {
|
|
const newAutoUpdate = !marketplace.autoUpdate
|
|
try {
|
|
await setMarketplaceAutoUpdate(marketplace.name, newAutoUpdate)
|
|
|
|
// Update local state
|
|
setMarketplaceStates(prev =>
|
|
prev.map(state =>
|
|
state.name === marketplace.name
|
|
? { ...state, autoUpdate: newAutoUpdate }
|
|
: state,
|
|
),
|
|
)
|
|
|
|
// Update selected marketplace reference
|
|
setSelectedMarketplace(prev =>
|
|
prev ? { ...prev, autoUpdate: newAutoUpdate } : prev,
|
|
)
|
|
} catch (err) {
|
|
setProcessError(
|
|
err instanceof Error ? err.message : 'Failed to update setting',
|
|
)
|
|
}
|
|
}
|
|
|
|
// Escape in details or confirm-remove view - go back to list
|
|
useKeybinding(
|
|
'confirm:no',
|
|
() => {
|
|
setInternalView('list')
|
|
setDetailsMenuIndex(0)
|
|
},
|
|
{
|
|
context: 'Confirmation',
|
|
isActive:
|
|
!isProcessing &&
|
|
(internalView === 'details' || internalView === 'confirm-remove'),
|
|
},
|
|
)
|
|
|
|
// Escape in list view with pending changes - clear pending changes
|
|
useKeybinding(
|
|
'confirm:no',
|
|
() => {
|
|
setMarketplaceStates(prev =>
|
|
prev.map(state => ({
|
|
...state,
|
|
pendingUpdate: false,
|
|
pendingRemove: false,
|
|
})),
|
|
)
|
|
setSelectedIndex(0)
|
|
},
|
|
{
|
|
context: 'Confirmation',
|
|
isActive: !isProcessing && internalView === 'list' && hasPendingChanges(),
|
|
},
|
|
)
|
|
|
|
// Escape in list view without pending changes - exit to parent menu
|
|
useKeybinding(
|
|
'confirm:no',
|
|
() => {
|
|
setViewState({ type: 'menu' })
|
|
},
|
|
{
|
|
context: 'Confirmation',
|
|
isActive:
|
|
!isProcessing && internalView === 'list' && !hasPendingChanges(),
|
|
},
|
|
)
|
|
|
|
// List view — navigation (up/down/enter via configurable keybindings)
|
|
useKeybindings(
|
|
{
|
|
'select:previous': () => setSelectedIndex(prev => Math.max(0, prev - 1)),
|
|
'select:next': () => {
|
|
const totalItems = marketplaceStates.length + 1
|
|
setSelectedIndex(prev => Math.min(totalItems - 1, prev + 1))
|
|
},
|
|
'select:accept': () => {
|
|
const marketplaceIndex = selectedIndex - 1
|
|
if (selectedIndex === 0) {
|
|
setViewState({ type: 'add-marketplace' })
|
|
} else if (hasPendingChanges()) {
|
|
void applyChanges()
|
|
} else {
|
|
const marketplace = marketplaceStates[marketplaceIndex]
|
|
if (marketplace) {
|
|
setSelectedMarketplace(marketplace)
|
|
setInternalView('details')
|
|
setDetailsMenuIndex(0)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{ context: 'Select', isActive: !isProcessing && internalView === 'list' },
|
|
)
|
|
|
|
// List view — marketplace-specific actions (u/r shortcuts)
|
|
useInput(
|
|
input => {
|
|
const marketplaceIndex = selectedIndex - 1
|
|
if ((input === 'u' || input === 'U') && marketplaceIndex >= 0) {
|
|
setMarketplaceStates(prev =>
|
|
prev.map((state, idx) =>
|
|
idx === marketplaceIndex
|
|
? {
|
|
...state,
|
|
pendingUpdate: !state.pendingUpdate,
|
|
pendingRemove: state.pendingUpdate
|
|
? state.pendingRemove
|
|
: false,
|
|
}
|
|
: state,
|
|
),
|
|
)
|
|
} else if ((input === 'r' || input === 'R') && marketplaceIndex >= 0) {
|
|
const marketplace = marketplaceStates[marketplaceIndex]
|
|
if (marketplace) {
|
|
setSelectedMarketplace(marketplace)
|
|
setInternalView('confirm-remove')
|
|
}
|
|
}
|
|
},
|
|
{ isActive: !isProcessing && internalView === 'list' },
|
|
)
|
|
|
|
// Details view — navigation
|
|
useKeybindings(
|
|
{
|
|
'select:previous': () =>
|
|
setDetailsMenuIndex(prev => Math.max(0, prev - 1)),
|
|
'select:next': () => {
|
|
const menuOptions = buildDetailsMenuOptions(selectedMarketplace)
|
|
setDetailsMenuIndex(prev => Math.min(menuOptions.length - 1, prev + 1))
|
|
},
|
|
'select:accept': () => {
|
|
if (!selectedMarketplace) return
|
|
const menuOptions = buildDetailsMenuOptions(selectedMarketplace)
|
|
const selectedOption = menuOptions[detailsMenuIndex]
|
|
if (selectedOption?.value === 'browse') {
|
|
setViewState({
|
|
type: 'browse-marketplace',
|
|
targetMarketplace: selectedMarketplace.name,
|
|
})
|
|
} else if (selectedOption?.value === 'update') {
|
|
const newStates = marketplaceStates.map(state =>
|
|
state.name === selectedMarketplace.name
|
|
? { ...state, pendingUpdate: true }
|
|
: state,
|
|
)
|
|
setMarketplaceStates(newStates)
|
|
void applyChanges(newStates)
|
|
} else if (selectedOption?.value === 'toggle-auto-update') {
|
|
void handleToggleAutoUpdate(selectedMarketplace)
|
|
} else if (selectedOption?.value === 'remove') {
|
|
setInternalView('confirm-remove')
|
|
}
|
|
},
|
|
},
|
|
{
|
|
context: 'Select',
|
|
isActive: !isProcessing && internalView === 'details',
|
|
},
|
|
)
|
|
|
|
// Confirm-remove view — y/n input
|
|
useInput(
|
|
input => {
|
|
if (input === 'y' || input === 'Y') {
|
|
void confirmRemove()
|
|
} else if (input === 'n' || input === 'N') {
|
|
setInternalView('list')
|
|
setSelectedMarketplace(null)
|
|
}
|
|
},
|
|
{ isActive: !isProcessing && internalView === 'confirm-remove' },
|
|
)
|
|
|
|
if (loading) {
|
|
return <Text>Loading marketplaces…</Text>
|
|
}
|
|
|
|
if (marketplaceStates.length === 0) {
|
|
return (
|
|
<Box flexDirection="column">
|
|
<Box marginBottom={1}>
|
|
<Text bold>Manage marketplaces</Text>
|
|
</Box>
|
|
|
|
{/* Add Marketplace option */}
|
|
<Box flexDirection="row" gap={1}>
|
|
<Text color="suggestion">{figures.pointer} +</Text>
|
|
<Text bold color="suggestion">
|
|
Add Marketplace
|
|
</Text>
|
|
</Box>
|
|
|
|
<Box marginLeft={3}>
|
|
<Text dimColor italic>
|
|
{exitState.pending ? (
|
|
<>Press {exitState.keyName} again to go back</>
|
|
) : (
|
|
<Byline>
|
|
<ConfigurableShortcutHint
|
|
action="select:accept"
|
|
context="Select"
|
|
fallback="Enter"
|
|
description="select"
|
|
/>
|
|
<ConfigurableShortcutHint
|
|
action="confirm:no"
|
|
context="Confirmation"
|
|
fallback="Esc"
|
|
description="go back"
|
|
/>
|
|
</Byline>
|
|
)}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
// Show confirmation dialog
|
|
if (internalView === 'confirm-remove' && selectedMarketplace) {
|
|
const pluginCount = selectedMarketplace.installedPlugins?.length || 0
|
|
return (
|
|
<Box flexDirection="column">
|
|
<Text bold color="warning">
|
|
Remove marketplace <Text italic>{selectedMarketplace.name}</Text>?
|
|
</Text>
|
|
<Box flexDirection="column">
|
|
{pluginCount > 0 && (
|
|
<Box marginTop={1}>
|
|
<Text color="warning">
|
|
This will also uninstall {pluginCount}{' '}
|
|
{plural(pluginCount, 'plugin')} from this marketplace:
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
{selectedMarketplace.installedPlugins &&
|
|
selectedMarketplace.installedPlugins.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1} marginLeft={2}>
|
|
{selectedMarketplace.installedPlugins.map(plugin => (
|
|
<Text key={plugin.name} dimColor>
|
|
• {plugin.name}
|
|
</Text>
|
|
))}
|
|
</Box>
|
|
)}
|
|
<Box marginTop={1}>
|
|
<Text>
|
|
Press <Text bold>y</Text> to confirm or <Text bold>n</Text> to
|
|
cancel
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
// Show marketplace details
|
|
if (internalView === 'details' && selectedMarketplace) {
|
|
// Check if this marketplace is currently being processed
|
|
// Check pendingUpdate first so we show updating state immediately when user presses Enter
|
|
const isUpdating = selectedMarketplace.pendingUpdate || isProcessing
|
|
|
|
const menuOptions = buildDetailsMenuOptions(selectedMarketplace)
|
|
|
|
return (
|
|
<Box flexDirection="column">
|
|
<Text bold>{selectedMarketplace.name}</Text>
|
|
<Text dimColor>{selectedMarketplace.source}</Text>
|
|
<Box marginTop={1}>
|
|
<Text>
|
|
{selectedMarketplace.pluginCount || 0} available{' '}
|
|
{plural(selectedMarketplace.pluginCount || 0, 'plugin')}
|
|
</Text>
|
|
</Box>
|
|
|
|
{/* Installed plugins section */}
|
|
{selectedMarketplace.installedPlugins &&
|
|
selectedMarketplace.installedPlugins.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text bold>
|
|
Installed plugins ({selectedMarketplace.installedPlugins.length}
|
|
):
|
|
</Text>
|
|
<Box flexDirection="column" marginLeft={1}>
|
|
{selectedMarketplace.installedPlugins.map(plugin => (
|
|
<Box key={plugin.name} flexDirection="row" gap={1}>
|
|
<Text>{figures.bullet}</Text>
|
|
<Box flexDirection="column">
|
|
<Text>{plugin.name}</Text>
|
|
<Text dimColor>{plugin.manifest.description}</Text>
|
|
</Box>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Processing indicator */}
|
|
{isUpdating && (
|
|
<Box marginTop={1} flexDirection="column">
|
|
<Text color="claude">Updating marketplace…</Text>
|
|
{progressMessage && <Text dimColor>{progressMessage}</Text>}
|
|
</Box>
|
|
)}
|
|
|
|
{/* Success message */}
|
|
{!isUpdating && successMessage && (
|
|
<Box marginTop={1}>
|
|
<Text color="claude">{successMessage}</Text>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Error message */}
|
|
{!isUpdating && processError && (
|
|
<Box marginTop={1}>
|
|
<Text color="error">{processError}</Text>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Menu options */}
|
|
{!isUpdating && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
{menuOptions.map((option, idx) => {
|
|
if (!option) return null
|
|
const isSelected = idx === detailsMenuIndex
|
|
return (
|
|
<Box key={option.value}>
|
|
<Text color={isSelected ? 'suggestion' : undefined}>
|
|
{isSelected ? figures.pointer : ' '} {option.label}
|
|
</Text>
|
|
{option.secondaryLabel && (
|
|
<Text dimColor> {option.secondaryLabel}</Text>
|
|
)}
|
|
</Box>
|
|
)
|
|
})}
|
|
</Box>
|
|
)}
|
|
|
|
{/* Show explanatory text at the bottom when auto-update is enabled */}
|
|
{!isUpdating &&
|
|
!shouldSkipPluginAutoupdate() &&
|
|
selectedMarketplace.autoUpdate && (
|
|
<Box marginTop={1}>
|
|
<Text dimColor>
|
|
Auto-update enabled. Claude Code will automatically update this
|
|
marketplace and its installed plugins.
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
|
|
<Box marginLeft={3}>
|
|
<Text dimColor italic>
|
|
{isUpdating ? (
|
|
<>Please wait…</>
|
|
) : (
|
|
<Byline>
|
|
<ConfigurableShortcutHint
|
|
action="select:accept"
|
|
context="Select"
|
|
fallback="Enter"
|
|
description="select"
|
|
/>
|
|
<ConfigurableShortcutHint
|
|
action="confirm:no"
|
|
context="Confirmation"
|
|
fallback="Esc"
|
|
description="go back"
|
|
/>
|
|
</Byline>
|
|
)}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
// Show marketplace list
|
|
const { updateCount, removeCount } = getPendingCounts()
|
|
|
|
return (
|
|
<Box flexDirection="column">
|
|
<Box marginBottom={1}>
|
|
<Text bold>Manage marketplaces</Text>
|
|
</Box>
|
|
|
|
{/* Add Marketplace option */}
|
|
<Box flexDirection="row" gap={1} marginBottom={1}>
|
|
<Text color={selectedIndex === 0 ? 'suggestion' : undefined}>
|
|
{selectedIndex === 0 ? figures.pointer : ' '} +
|
|
</Text>
|
|
<Text bold color={selectedIndex === 0 ? 'suggestion' : undefined}>
|
|
Add Marketplace
|
|
</Text>
|
|
</Box>
|
|
|
|
{/* Marketplace list */}
|
|
<Box flexDirection="column">
|
|
{marketplaceStates.map((state, idx) => {
|
|
const isSelected = idx + 1 === selectedIndex // +1 because Add Marketplace is at index 0
|
|
|
|
// Build status indicators
|
|
const indicators: string[] = []
|
|
if (state.pendingUpdate) indicators.push('UPDATE')
|
|
if (state.pendingRemove) indicators.push('REMOVE')
|
|
|
|
return (
|
|
<Box key={state.name} flexDirection="row" gap={1} marginBottom={1}>
|
|
<Text color={isSelected ? 'suggestion' : undefined}>
|
|
{isSelected ? figures.pointer : ' '}{' '}
|
|
{state.pendingRemove ? figures.cross : figures.bullet}
|
|
</Text>
|
|
<Box flexDirection="column" flexGrow={1}>
|
|
<Box flexDirection="row" gap={1}>
|
|
<Text
|
|
bold
|
|
strikethrough={state.pendingRemove}
|
|
dimColor={state.pendingRemove}
|
|
>
|
|
{state.name === 'claude-plugins-official' && (
|
|
<Text color="claude">✻ </Text>
|
|
)}
|
|
{state.name}
|
|
{state.name === 'claude-plugins-official' && (
|
|
<Text color="claude"> ✻</Text>
|
|
)}
|
|
</Text>
|
|
{indicators.length > 0 && (
|
|
<Text color="warning">[{indicators.join(', ')}]</Text>
|
|
)}
|
|
</Box>
|
|
<Text dimColor>{state.source}</Text>
|
|
<Text dimColor>
|
|
{state.pluginCount !== undefined && (
|
|
<>{state.pluginCount} available</>
|
|
)}
|
|
{state.installedPlugins &&
|
|
state.installedPlugins.length > 0 && (
|
|
<> • {state.installedPlugins.length} installed</>
|
|
)}
|
|
{state.lastUpdated && (
|
|
<>
|
|
{' '}
|
|
• Updated{' '}
|
|
{new Date(state.lastUpdated).toLocaleDateString()}
|
|
</>
|
|
)}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
)
|
|
})}
|
|
</Box>
|
|
|
|
{/* Pending changes summary */}
|
|
{hasPendingChanges() && (
|
|
<Box marginTop={1} flexDirection="column">
|
|
<Text>
|
|
<Text bold>Pending changes:</Text>{' '}
|
|
<Text dimColor>Enter to apply</Text>
|
|
</Text>
|
|
{updateCount > 0 && (
|
|
<Text>
|
|
• Update {updateCount} {plural(updateCount, 'marketplace')}
|
|
</Text>
|
|
)}
|
|
{removeCount > 0 && (
|
|
<Text color="warning">
|
|
• Remove {removeCount} {plural(removeCount, 'marketplace')}
|
|
</Text>
|
|
)}
|
|
</Box>
|
|
)}
|
|
|
|
{/* Processing indicator */}
|
|
{isProcessing && (
|
|
<Box marginTop={1}>
|
|
<Text color="claude">Processing changes…</Text>
|
|
</Box>
|
|
)}
|
|
|
|
{/* Error display */}
|
|
{processError && (
|
|
<Box marginTop={1}>
|
|
<Text color="error">{processError}</Text>
|
|
</Box>
|
|
)}
|
|
|
|
<ManageMarketplacesKeyHints
|
|
exitState={exitState}
|
|
hasPendingActions={hasPendingChanges()}
|
|
/>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
type ManageMarketplacesKeyHintsProps = {
|
|
exitState: Props['exitState']
|
|
hasPendingActions: boolean
|
|
}
|
|
|
|
function ManageMarketplacesKeyHints({
|
|
exitState,
|
|
hasPendingActions,
|
|
}: ManageMarketplacesKeyHintsProps): React.ReactNode {
|
|
if (exitState.pending) {
|
|
return (
|
|
<Box marginTop={1}>
|
|
<Text dimColor italic>
|
|
Press {exitState.keyName} again to go back
|
|
</Text>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Box marginTop={1}>
|
|
<Text dimColor italic>
|
|
<Byline>
|
|
{hasPendingActions && (
|
|
<ConfigurableShortcutHint
|
|
action="select:accept"
|
|
context="Select"
|
|
fallback="Enter"
|
|
description="apply changes"
|
|
/>
|
|
)}
|
|
{!hasPendingActions && (
|
|
<ConfigurableShortcutHint
|
|
action="select:accept"
|
|
context="Select"
|
|
fallback="Enter"
|
|
description="select"
|
|
/>
|
|
)}
|
|
{!hasPendingActions && (
|
|
<KeyboardShortcutHint shortcut="u" action="update" />
|
|
)}
|
|
{!hasPendingActions && (
|
|
<KeyboardShortcutHint shortcut="r" action="remove" />
|
|
)}
|
|
<ConfigurableShortcutHint
|
|
action="confirm:no"
|
|
context="Confirmation"
|
|
fallback="Esc"
|
|
description={hasPendingActions ? 'cancel' : 'go back'}
|
|
/>
|
|
</Byline>
|
|
</Text>
|
|
</Box>
|
|
)
|
|
}
|