feat: add multi-project support (#110)
* 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
This commit is contained in:
committed by
GitHub
parent
8aa379e313
commit
18c5b4c7b5
@@ -2,7 +2,7 @@ import { create } from "zustand";
|
||||
import type { StoreApi, UseBoundStore } from "zustand";
|
||||
import { devtools } from "zustand/middleware";
|
||||
import type { Session, Message, Part } from "@opencode-ai/sdk/v2";
|
||||
import type { Permission, PermissionResponse } from "@/types/permission";
|
||||
import type { PermissionRequest, PermissionResponse } from "@/types/permission";
|
||||
import type { SessionStore, AttachedFile, EditPermissionMode } from "./types/sessionTypes";
|
||||
import { ACTIVE_SESSION_WINDOW, MEMORY_LIMITS } from "./types/sessionTypes";
|
||||
|
||||
@@ -66,6 +66,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
(set, get) => ({
|
||||
|
||||
sessions: [],
|
||||
sessionsByDirectory: new Map(),
|
||||
currentSessionId: null,
|
||||
lastLoadedDirectory: null,
|
||||
messages: new Map(),
|
||||
@@ -87,6 +88,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
webUICreatedSessions: new Set(),
|
||||
worktreeMetadata: new Map(),
|
||||
availableWorktrees: [],
|
||||
availableWorktreesByProject: new Map(),
|
||||
currentAgentContext: new Map(),
|
||||
sessionContextUsage: new Map(),
|
||||
sessionAgentEditModes: new Map(),
|
||||
@@ -420,7 +422,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
markMessageStreamSettled: (messageId: string) => useMessageStore.getState().markMessageStreamSettled(messageId),
|
||||
updateMessageInfo: (sessionId: string, messageId: string, messageInfo: Record<string, unknown>) => useMessageStore.getState().updateMessageInfo(sessionId, messageId, messageInfo),
|
||||
updateSessionCompaction: (sessionId: string, compactingTimestamp?: number | null) => useMessageStore.getState().updateSessionCompaction(sessionId, compactingTimestamp ?? null),
|
||||
addPermission: (permission: Permission) => {
|
||||
addPermission: (permission: PermissionRequest) => {
|
||||
const contextData = {
|
||||
currentAgentContext: useContextStore.getState().currentAgentContext,
|
||||
sessionAgentSelections: useContextStore.getState().sessionAgentSelections,
|
||||
@@ -428,9 +430,10 @@ export const useSessionStore = create<SessionStore>()(
|
||||
};
|
||||
return usePermissionStore.getState().addPermission(permission, contextData);
|
||||
},
|
||||
respondToPermission: (sessionId: string, permissionId: string, response: PermissionResponse) => usePermissionStore.getState().respondToPermission(sessionId, permissionId, response),
|
||||
respondToPermission: (sessionId: string, requestId: string, response: PermissionResponse) => usePermissionStore.getState().respondToPermission(sessionId, requestId, response),
|
||||
clearError: () => useSessionManagementStore.getState().clearError(),
|
||||
getSessionsByDirectory: (directory: string) => useSessionManagementStore.getState().getSessionsByDirectory(directory),
|
||||
getDirectoryForSession: (sessionId: string) => useSessionManagementStore.getState().getDirectoryForSession(sessionId),
|
||||
getLastMessageModel: (sessionId: string) => useMessageStore.getState().getLastMessageModel(sessionId),
|
||||
getCurrentAgent: (sessionId: string) => useContextStore.getState().getCurrentAgent(sessionId),
|
||||
syncMessages: (sessionId: string, messages: { info: Message; parts: Part[] }[]) => useMessageStore.getState().syncMessages(sessionId, messages),
|
||||
@@ -507,6 +510,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
return useContextStore.getState().pollForTokenUpdates(sessionId, messageId, messages, maxAttempts);
|
||||
},
|
||||
updateSession: (session: Session) => useSessionManagementStore.getState().updateSession(session),
|
||||
removeSessionFromStore: (sessionId: string) => useSessionManagementStore.getState().removeSessionFromStore(sessionId),
|
||||
|
||||
revertToMessage: async (sessionId: string, messageId: string) => {
|
||||
// Get the message text before reverting
|
||||
@@ -559,7 +563,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
const sessions = get().sessions;
|
||||
const currentSession = sessions.find(s => s.id === sessionId);
|
||||
|
||||
// Silent no-op like OpenCode CLI
|
||||
// No-op when there is nothing to undo/redo
|
||||
if (userMessages.length === 0) {
|
||||
return;
|
||||
}
|
||||
@@ -576,7 +580,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
targetMessage = userMessages[userMessages.length - 1];
|
||||
}
|
||||
|
||||
// Silent no-op like OpenCode CLI
|
||||
// No-op when there is nothing to undo/redo
|
||||
if (!targetMessage) {
|
||||
return;
|
||||
}
|
||||
@@ -598,7 +602,7 @@ export const useSessionStore = create<SessionStore>()(
|
||||
const currentSession = sessions.find(s => s.id === sessionId);
|
||||
const revertToId = currentSession?.revert?.messageID;
|
||||
|
||||
// Silent no-op like OpenCode CLI
|
||||
// No-op when there is nothing to undo/redo
|
||||
if (!revertToId) {
|
||||
return;
|
||||
}
|
||||
@@ -708,13 +712,15 @@ useSessionManagementStore.subscribe((state, prevState) => {
|
||||
|
||||
if (
|
||||
state.sessions === prevState.sessions &&
|
||||
state.sessionsByDirectory === prevState.sessionsByDirectory &&
|
||||
state.currentSessionId === prevState.currentSessionId &&
|
||||
state.lastLoadedDirectory === prevState.lastLoadedDirectory &&
|
||||
state.isLoading === prevState.isLoading &&
|
||||
state.error === prevState.error &&
|
||||
state.webUICreatedSessions === prevState.webUICreatedSessions &&
|
||||
state.worktreeMetadata === prevState.worktreeMetadata &&
|
||||
state.availableWorktrees === prevState.availableWorktrees
|
||||
state.availableWorktrees === prevState.availableWorktrees &&
|
||||
state.availableWorktreesByProject === prevState.availableWorktreesByProject
|
||||
) {
|
||||
return;
|
||||
}
|
||||
@@ -723,6 +729,7 @@ useSessionManagementStore.subscribe((state, prevState) => {
|
||||
|
||||
useSessionStore.setState({
|
||||
sessions: state.sessions,
|
||||
sessionsByDirectory: state.sessionsByDirectory,
|
||||
currentSessionId: draftOpen ? null : state.currentSessionId,
|
||||
lastLoadedDirectory: state.lastLoadedDirectory,
|
||||
isLoading: state.isLoading,
|
||||
@@ -730,6 +737,7 @@ useSessionManagementStore.subscribe((state, prevState) => {
|
||||
webUICreatedSessions: state.webUICreatedSessions,
|
||||
worktreeMetadata: state.worktreeMetadata,
|
||||
availableWorktrees: state.availableWorktrees,
|
||||
availableWorktreesByProject: state.availableWorktreesByProject,
|
||||
});
|
||||
});
|
||||
|
||||
@@ -873,6 +881,7 @@ useSessionStore.setState({
|
||||
webUICreatedSessions: useSessionManagementStore.getState().webUICreatedSessions,
|
||||
worktreeMetadata: useSessionManagementStore.getState().worktreeMetadata,
|
||||
availableWorktrees: useSessionManagementStore.getState().availableWorktrees,
|
||||
availableWorktreesByProject: useSessionManagementStore.getState().availableWorktreesByProject,
|
||||
messages: useMessageStore.getState().messages,
|
||||
sessionMemoryState: useMessageStore.getState().sessionMemoryState,
|
||||
messageStreamStates: useMessageStore.getState().messageStreamStates,
|
||||
|
||||
Reference in New Issue
Block a user