* feat: Implement project management store with project path validation and synchronization - Added `useProjectsStore` for managing projects, including adding, removing, renaming, and validating project paths. - Implemented persistence for projects and active project ID using safe storage. - Introduced synchronization from desktop settings to keep project data consistent. - Enhanced session store to manage sessions by directory and added new methods for session management. - Updated todo store to fetch session todos based on the directory context. - Refactored server code to validate and resolve project directories for various API endpoints. - Added project entry validation and sanitization to ensure data integrity. * feat(settings): migrate legacy project settings and update settings loading logic * feat: enhance project management with directory-aware settings and improved agent/command source handling * feat: enhance session and project management with directory-aware settings and improved configuration refresh logic * feat: enhance project management with worktree manager integration and project directory resolution * feat: enhance agent groups store with project directory resolution and loading logic * feat: add heartbeat management and global wrapping for SSE blocks in agent and chat providers * feat: refactor command and project handling in useCommandsStore - Replaced useDirectoryStore with useProjectsStore to manage project paths. - Introduced getRequestDirectory function to determine the active project directory. - Updated command fetching to respect project-level scoping. - Enhanced error handling and logging for command configuration fetching. - Improved command configuration saving and updating to utilize project directory context. feat: enhance project path normalization in useProjectsStore - Added resolveTildePath function to expand paths starting with ~. - Updated normalizeProjectPath to utilize home directory for path expansion. fix: update permission handling in useSessionStore - Changed Permission type to PermissionRequest for clarity. - Updated respondToPermission method to use requestId instead of permissionId. refactor: improve permission utilities - Introduced types for PermissionAction and PermissionRule. - Enhanced getAgentDefinition and resolveConfigStore functions for better type safety. - Added resolvePermissionAction to streamline permission resolution logic. feat: add agent configuration retrieval endpoint - Implemented new API endpoint to fetch agent configuration based on project directory. - Enhanced getAgentPermissionSource to prioritize project-level permissions. chore: update SDK version in package.json files - Bumped @opencode-ai/sdk version to ^1.1.1 across all relevant package.json files. refactor: streamline bridge message handling - Updated handleBridgeMessage to accept directory parameter for agent and command requests. - Improved local API request handling to extract directory from query parameters and headers. feat: enhance project configuration management - Added functions to retrieve and merge project configuration paths. - Improved handling of existing project configuration files for agents and commands. * feat: enhance VSCode integration and session management - Added support for a sticky sidebar header background in light and dark themes. - Introduced functions to read VSCode workspace directory and check if running in VSCode. - Implemented detailed logging for session loading and creation processes. - Enhanced session filtering based on directory structure and canonical paths. - Added a new method to reorder projects and prevent modifications in VSCode workspace. - Improved error handling and logging for app initialization and markdown file parsing. - Updated API checks and health checks to ensure readiness before proceeding. - Refactored code for better readability and maintainability across various modules. * feat: improve agent and branch selection logic, enhance session management, and update multi-run creation response * feat: add worktree management actions in agent group detail and sidebar, including delete and keep only options * fix(ui): share IME guard and cover multi-run * fix(session): reduce maximum visible sessions in group from 7 to 5
128 lines
4.3 KiB
TypeScript
128 lines
4.3 KiB
TypeScript
import React from 'react';
|
|
import { RiCheckLine, RiCloseLine, RiTimeLine } from '@remixicon/react';
|
|
import { cn } from '@/lib/utils';
|
|
import type { PermissionRequest as PermissionRequestPayload, PermissionResponse } from '@/types/permission';
|
|
import { useSessionStore } from '@/stores/useSessionStore';
|
|
|
|
interface PermissionRequestProps {
|
|
permission: PermissionRequestPayload;
|
|
onResponse?: (response: 'once' | 'always' | 'reject') => void;
|
|
}
|
|
|
|
export const PermissionRequest: React.FC<PermissionRequestProps> = ({
|
|
permission,
|
|
onResponse
|
|
}) => {
|
|
const [isResponding, setIsResponding] = React.useState(false);
|
|
const [hasResponded, setHasResponded] = React.useState(false);
|
|
const { respondToPermission } = useSessionStore();
|
|
|
|
const handleResponse = async (response: PermissionResponse) => {
|
|
setIsResponding(true);
|
|
|
|
try {
|
|
await respondToPermission(permission.sessionID, permission.id, response);
|
|
setHasResponded(true);
|
|
onResponse?.(response);
|
|
} catch { /* ignored */ } finally {
|
|
setIsResponding(false);
|
|
}
|
|
};
|
|
|
|
if (hasResponded) {
|
|
return null;
|
|
}
|
|
|
|
const command = typeof permission.metadata.command === 'string'
|
|
? permission.metadata.command
|
|
: (permission.patterns?.[0] ?? permission.permission);
|
|
|
|
return (
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-2 min-w-0 flex-1">
|
|
<div className="min-w-0">
|
|
<span className="typography-ui-label font-medium text-muted-foreground">
|
|
Permission required:
|
|
</span>
|
|
<code className="ml-2 typography-meta bg-amber-100/50 dark:bg-amber-800/30 px-1.5 py-0.5 rounded font-mono text-amber-800 dark:text-amber-200">
|
|
{command}
|
|
</code>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-1.5 flex-shrink-0 ml-4">
|
|
<button
|
|
onClick={() => handleResponse('once')}
|
|
disabled={isResponding}
|
|
className={cn(
|
|
"flex items-center gap-1 px-2 py-1 typography-meta font-medium rounded border h-6",
|
|
"disabled:opacity-50 disabled:cursor-not-allowed"
|
|
)}
|
|
style={{
|
|
borderColor: 'var(--status-success)',
|
|
color: 'var(--status-success)'
|
|
}}
|
|
onMouseEnter={(e) => {
|
|
e.currentTarget.style.backgroundColor = 'var(--status-success-background)';
|
|
}}
|
|
onMouseLeave={(e) => {
|
|
e.currentTarget.style.backgroundColor = 'transparent';
|
|
}}
|
|
>
|
|
<RiCheckLine className="h-3 w-3" />
|
|
Once
|
|
</button>
|
|
|
|
<button
|
|
onClick={() => handleResponse('always')}
|
|
disabled={isResponding}
|
|
className={cn(
|
|
"flex items-center gap-1 px-2 py-1 typography-meta font-medium rounded border h-6",
|
|
"disabled:opacity-50 disabled:cursor-not-allowed"
|
|
)}
|
|
style={{
|
|
borderColor: 'var(--status-info)',
|
|
color: 'var(--status-info)'
|
|
}}
|
|
onMouseEnter={(e) => {
|
|
e.currentTarget.style.backgroundColor = 'var(--status-info-background)';
|
|
}}
|
|
onMouseLeave={(e) => {
|
|
e.currentTarget.style.backgroundColor = 'transparent';
|
|
}}
|
|
>
|
|
<RiTimeLine className="h-3 w-3" />
|
|
Always
|
|
</button>
|
|
|
|
<button
|
|
onClick={() => handleResponse('reject')}
|
|
disabled={isResponding}
|
|
className={cn(
|
|
"flex items-center gap-1 px-2 py-1 typography-meta font-medium rounded border h-6",
|
|
"disabled:opacity-50 disabled:cursor-not-allowed"
|
|
)}
|
|
style={{
|
|
borderColor: 'var(--status-error)',
|
|
color: 'var(--status-error)'
|
|
}}
|
|
onMouseEnter={(e) => {
|
|
e.currentTarget.style.backgroundColor = 'var(--status-error-background)';
|
|
}}
|
|
onMouseLeave={(e) => {
|
|
e.currentTarget.style.backgroundColor = 'transparent';
|
|
}}
|
|
>
|
|
<RiCloseLine className="h-3 w-3" />
|
|
Reject
|
|
</button>
|
|
|
|
{isResponding && (
|
|
<div className="ml-2 flex items-center">
|
|
<div className="animate-spin h-3 w-3 border-2 border-t-transparent rounded-full" style={{ borderColor: 'var(--loading-spinner)' }} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |