* fix: exclude file content from reverted prompt text Revert and fork now restore only the user's original prompt, not server-injected file content Uses existing isSyntheticPart helper for type-safe filtering * fix: keep scrollbar visible when hovering over thumb * fix: prevent ESC abort from triggering when terminal is focused * fix: pass directory to permission/question reply calls so approvals actually resolve * fix: default model selection not responding after Base UI migration * fix: prevent modal content from shifting and clipping footer buttons * fix: improve session switching performance and add sub-agent export with prompt collapse Defer viewport anchor saving to eliminate ~800ms UI freeze when switching sessions Add export dialog to include sub-agent tasks recursively in markdown export Add collapse chevron button for expanded user prompts in sticky header * fix: resolve sidebar scroll and TDZ crash in session sidebar * perf: reduce CPU overhead and re-renders across chat, layout, and settings * fix: position collapse button at top of message and prevent ESC abort in terminal * fix: position collapse button at top and add padding only when expanded * refactor: extract shared PATH utilities and mobile keyboard hook * refactor: import shared path-utils in electron, use module-level style constants - Electron now imports pathLooksUserConfigured/mergePathValues from shared path-utils.js instead of inline duplication - ToolPart collapsedCustomStyle moved from useMemo([]) to module const * fix: resolve remaining merge conflicts and type errors - Remove duplicate variable declarations in SessionNodeItem - Remove orphaned export callback body from conflict resolution - Fix HelpDialog description -> descriptionKey (i18n rename) * fix: resolve type-check and lint errors in session-actions.test.ts - Added missing bun:test type declarations (beforeEach, mock, mock.module) - Removed unused State import - Replaced 'as any' casts with proper OpencodeClient and ChildStoreManager types - Added eslint-disable for unused _ parameter in mock function * fix PR 1028 export and PATH edge cases * fix startup retry exhaustion state * remove opencode package lock change * fix sub-session rename cancellation --------- Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
68 lines
2.8 KiB
TypeScript
68 lines
2.8 KiB
TypeScript
import React from 'react';
|
|
import { cn } from '@/lib/utils';
|
|
import { useConfigStore } from '@/stores/useConfigStore';
|
|
import { useSessionUIStore } from '@/sync/session-ui-store';
|
|
import { useContextStore } from '@/stores/contextStore';
|
|
import { formatEffortLabel, getAgentDisplayName, getModelDisplayName } from './mobileControlsUtils';
|
|
|
|
const STATUS_CHIP_STYLE = {
|
|
height: '28px',
|
|
maxHeight: '28px',
|
|
minHeight: '28px',
|
|
};
|
|
|
|
interface StatusChipProps {
|
|
onClick: () => void;
|
|
className?: string;
|
|
}
|
|
|
|
export const StatusChip: React.FC<StatusChipProps> = ({ onClick, className }) => {
|
|
const currentModelId = useConfigStore((state) => state.currentModelId);
|
|
const currentVariant = useConfigStore((state) => state.currentVariant);
|
|
const currentAgentName = useConfigStore((state) => state.currentAgentName);
|
|
const getCurrentProvider = useConfigStore((state) => state.getCurrentProvider);
|
|
const getCurrentModelVariants = useConfigStore((state) => state.getCurrentModelVariants);
|
|
const getVisibleAgents = useConfigStore((state) => state.getVisibleAgents);
|
|
const currentSessionId = useSessionUIStore((state) => state.currentSessionId);
|
|
const sessionAgentName = useContextStore((state) =>
|
|
currentSessionId ? state.getSessionAgentSelection(currentSessionId) : null
|
|
);
|
|
|
|
const agents = getVisibleAgents();
|
|
const uiAgentName = currentSessionId ? (sessionAgentName || currentAgentName) : currentAgentName;
|
|
const agentLabel = getAgentDisplayName(agents, uiAgentName);
|
|
const currentProvider = getCurrentProvider();
|
|
const modelLabel = getModelDisplayName(currentProvider, currentModelId);
|
|
const hasEffort = getCurrentModelVariants().length > 0;
|
|
const effortLabel = hasEffort ? formatEffortLabel(currentVariant) : null;
|
|
const fullLabel = [agentLabel, modelLabel, effortLabel].filter(Boolean).join(' · ');
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
onClick={onClick}
|
|
className={cn(
|
|
'inline-flex min-w-0 items-center justify-center',
|
|
'rounded-md border border-border/50 px-1.5',
|
|
'text-[11px] font-medium text-foreground/80',
|
|
'focus:outline-none hover:bg-[var(--interactive-hover)]',
|
|
className
|
|
)}
|
|
style={STATUS_CHIP_STYLE}
|
|
title={fullLabel}
|
|
>
|
|
<span className="shrink-0">{agentLabel}</span>
|
|
<span className="shrink-0 text-muted-foreground mx-0.5">·</span>
|
|
<span className="min-w-0 truncate">{modelLabel}</span>
|
|
{effortLabel && (
|
|
<>
|
|
<span className="shrink-0 text-muted-foreground mx-0.5">·</span>
|
|
<span className="shrink-0">{effortLabel}</span>
|
|
</>
|
|
)}
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export default StatusChip;
|