mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
* feat: add recent usage sorting for chat history and project list. # Conflicts: # src/main.ts * fix: use in-memory recency for chat history modal sorting. * refactor: move sort strategy selectors to AdvancedSettings.
842 lines
28 KiB
TypeScript
842 lines
28 KiB
TypeScript
import { BrevilabsClient } from "@/LLMProviders/brevilabsClient";
|
|
import ProjectManager from "@/LLMProviders/projectManager";
|
|
import { CustomModel, getCurrentProject, setSelectedTextContexts, getSelectedTextContexts } from "@/aiParams";
|
|
import {
|
|
NoteSelectedTextContext,
|
|
SelectedTextContext,
|
|
} from "@/types/message";
|
|
import { registerCommands } from "@/commands";
|
|
import CopilotView from "@/components/CopilotView";
|
|
import { APPLY_VIEW_TYPE, ApplyView } from "@/components/composer/ApplyView";
|
|
import { LoadChatHistoryModal } from "@/components/modals/LoadChatHistoryModal";
|
|
|
|
import { QUICK_COMMAND_CODE_BLOCK } from "@/commands/constants";
|
|
import { registerContextMenu } from "@/commands/contextMenu";
|
|
import { CustomCommandRegister } from "@/commands/customCommandRegister";
|
|
import { migrateCommands, suggestDefaultCommands } from "@/commands/migrator";
|
|
import { createQuickCommandContainer } from "@/components/QuickCommand";
|
|
import { ABORT_REASON, CHAT_VIEWTYPE, DEFAULT_OPEN_AREA, EVENT_NAMES } from "@/constants";
|
|
import { ChatManager } from "@/core/ChatManager";
|
|
import { MessageRepository } from "@/core/MessageRepository";
|
|
import { encryptAllKeys } from "@/encryptionService";
|
|
import { logInfo, logWarn } from "@/logger";
|
|
import { logFileManager } from "@/logFileManager";
|
|
import { UserMemoryManager } from "@/memory/UserMemoryManager";
|
|
import { clearRecordedPromptPayload } from "@/LLMProviders/chainRunner/utils/promptPayloadRecorder";
|
|
import { checkIsPlusUser } from "@/plusUtils";
|
|
import {
|
|
getWebViewerService,
|
|
startActiveWebTabTracking,
|
|
} from "@/services/webViewerService/webViewerServiceSingleton";
|
|
import { WebSelectionTracker } from "@/services/webViewerService/webViewerServiceSelection";
|
|
import VectorStoreManager from "@/search/vectorStoreManager";
|
|
import { CopilotSettingTab } from "@/settings/SettingsPage";
|
|
import {
|
|
getModelKeyFromModel,
|
|
getSettings,
|
|
sanitizeSettings,
|
|
setSettings,
|
|
subscribeToSettingsChange,
|
|
} from "@/settings/model";
|
|
import { ChatUIState } from "@/state/ChatUIState";
|
|
import { VaultDataManager } from "@/state/vaultDataAtoms";
|
|
import { FileParserManager } from "@/tools/FileParserManager";
|
|
import { initializeBuiltinTools } from "@/tools/builtinTools";
|
|
import {
|
|
Editor,
|
|
MarkdownView,
|
|
Menu,
|
|
Notice,
|
|
Platform,
|
|
Plugin,
|
|
TFile,
|
|
TFolder,
|
|
WorkspaceLeaf,
|
|
} from "obsidian";
|
|
import { ChatHistoryItem } from "@/components/chat-components/ChatHistoryPopover";
|
|
import {
|
|
extractChatDate,
|
|
extractChatLastAccessedAtMs,
|
|
extractChatTitle,
|
|
} from "@/utils/chatHistoryUtils";
|
|
import { RecentUsageManager } from "@/utils/recentUsageManager";
|
|
import { v4 as uuidv4 } from "uuid";
|
|
|
|
// Removed unused FileTrackingState interface
|
|
|
|
export default class CopilotPlugin extends Plugin {
|
|
// Plugin components
|
|
projectManager: ProjectManager;
|
|
brevilabsClient: BrevilabsClient;
|
|
userMessageHistory: string[] = [];
|
|
vectorStoreManager: VectorStoreManager;
|
|
fileParserManager: FileParserManager;
|
|
customCommandRegister: CustomCommandRegister;
|
|
settingsUnsubscriber?: () => void;
|
|
chatUIState: ChatUIState;
|
|
userMemoryManager: UserMemoryManager;
|
|
private selectionDebounceTimer?: number;
|
|
private selectionChangeHandler?: () => void;
|
|
private webSelectionTracker?: WebSelectionTracker;
|
|
private readonly chatHistoryLastAccessedAtManager = new RecentUsageManager<string>();
|
|
|
|
async onload(): Promise<void> {
|
|
await this.loadSettings();
|
|
this.settingsUnsubscriber = subscribeToSettingsChange(async (prev, next) => {
|
|
if (next.enableEncryption) {
|
|
await this.saveData(await encryptAllKeys(next));
|
|
} else {
|
|
await this.saveData(next);
|
|
}
|
|
registerCommands(this, prev, next);
|
|
});
|
|
this.addSettingTab(new CopilotSettingTab(this.app, this));
|
|
|
|
// Core plugin initialization
|
|
|
|
// Initialize built-in tools with vault access
|
|
initializeBuiltinTools(this.app.vault);
|
|
|
|
// Initialize BrevilabsClient
|
|
this.brevilabsClient = BrevilabsClient.getInstance();
|
|
this.brevilabsClient.setPluginVersion(this.manifest.version);
|
|
checkIsPlusUser();
|
|
|
|
// Initialize ProjectManager
|
|
this.projectManager = ProjectManager.getInstance(this.app, this);
|
|
|
|
// Always construct VectorStoreManager; it internally no-ops when semantic search is disabled
|
|
this.vectorStoreManager = VectorStoreManager.getInstance();
|
|
|
|
// Initialize VaultDataManager for centralized vault data (notes, folders, tags)
|
|
// Note: VaultDataManager tracks ALL data; hooks filter based on parameters
|
|
const vaultDataManager = VaultDataManager.getInstance();
|
|
vaultDataManager.initialize();
|
|
|
|
// Initialize FileParserManager early with other core services
|
|
this.fileParserManager = new FileParserManager(this.brevilabsClient, this.app.vault);
|
|
|
|
// Initialize ChatUIState with new architecture
|
|
const messageRepo = new MessageRepository();
|
|
const chainManager = this.projectManager.getCurrentChainManager();
|
|
const chatManager = new ChatManager(messageRepo, chainManager, this.fileParserManager, this);
|
|
this.chatUIState = new ChatUIState(chatManager);
|
|
|
|
// Initialize UserMemoryManager
|
|
this.userMemoryManager = new UserMemoryManager(this.app);
|
|
|
|
// Single source of truth for Active Web Tab ({activeWebTab}) state
|
|
// Preserves activeWebTab when switching to Chat view
|
|
// Only run on desktop - Web Viewer is not available on mobile
|
|
if (Platform.isDesktopApp) {
|
|
const { activeLeafRef, layoutRef } = startActiveWebTabTracking(this.app, {
|
|
preserveOnViewTypes: [CHAT_VIEWTYPE],
|
|
});
|
|
this.registerEvent(activeLeafRef);
|
|
this.registerEvent(layoutRef);
|
|
}
|
|
|
|
this.registerView(CHAT_VIEWTYPE, (leaf: WorkspaceLeaf) => new CopilotView(leaf, this));
|
|
this.registerView(APPLY_VIEW_TYPE, (leaf: WorkspaceLeaf) => new ApplyView(leaf));
|
|
|
|
this.initActiveLeafChangeHandler();
|
|
|
|
this.addRibbonIcon("message-square", "Open Copilot Chat", (evt: MouseEvent) => {
|
|
this.activateView();
|
|
});
|
|
|
|
registerCommands(this, undefined, getSettings());
|
|
|
|
this.registerMarkdownCodeBlockProcessor(QUICK_COMMAND_CODE_BLOCK, (_, el) => {
|
|
createQuickCommandContainer({
|
|
plugin: this,
|
|
element: el,
|
|
});
|
|
|
|
// Remove parent element class names to clear default code block styling
|
|
if (el.parentElement) {
|
|
el.parentElement.className = "";
|
|
}
|
|
});
|
|
|
|
// Tool initialization is now handled automatically in CopilotPlusChainRunner and AutonomousAgentChainRunner
|
|
|
|
this.registerEvent(
|
|
this.app.workspace.on("editor-menu", (menu: Menu) => {
|
|
return registerContextMenu(menu);
|
|
})
|
|
);
|
|
|
|
this.registerEvent(
|
|
this.app.workspace.on("active-leaf-change", (leaf) => {
|
|
if (leaf && leaf.view instanceof MarkdownView) {
|
|
const file = leaf.view.file;
|
|
if (file) {
|
|
// Note: File tracking and real-time reindexing removed for simplicity
|
|
// Semantic search indexes are rebuilt manually or on startup as needed
|
|
const activeCopilotView = this.app.workspace
|
|
.getLeavesOfType(CHAT_VIEWTYPE)
|
|
.find((leaf) => leaf.view instanceof CopilotView)?.view as CopilotView;
|
|
|
|
if (activeCopilotView) {
|
|
const event = new CustomEvent(EVENT_NAMES.ACTIVE_LEAF_CHANGE);
|
|
activeCopilotView.eventTarget.dispatchEvent(event);
|
|
}
|
|
}
|
|
}
|
|
})
|
|
);
|
|
|
|
this.customCommandRegister = new CustomCommandRegister(this, this.app.vault);
|
|
this.app.workspace.onLayoutReady(() => {
|
|
this.customCommandRegister.initialize().then(migrateCommands).then(suggestDefaultCommands);
|
|
});
|
|
|
|
// Initialize automatic selection handler
|
|
this.initSelectionHandler();
|
|
|
|
// Initialize web selection watcher (Desktop only)
|
|
this.initWebSelectionWatcher();
|
|
}
|
|
|
|
async onunload() {
|
|
if (this.projectManager) {
|
|
this.projectManager.onunload();
|
|
}
|
|
|
|
// Cleanup VaultDataManager event listeners
|
|
const vaultDataManager = VaultDataManager.getInstance();
|
|
vaultDataManager.cleanup();
|
|
|
|
this.customCommandRegister.cleanup();
|
|
this.settingsUnsubscriber?.();
|
|
|
|
// Cleanup selection handler
|
|
this.cleanupSelectionHandler();
|
|
this.cleanupWebSelectionWatcher();
|
|
this.clearSelectionContext();
|
|
|
|
// Cleanup Web Viewer state tracking (webview event listeners)
|
|
try {
|
|
const webViewerService = getWebViewerService(this.app);
|
|
webViewerService.stopActiveWebTabTracking();
|
|
} catch {
|
|
// Ignore errors if service not available
|
|
}
|
|
|
|
// Best-effort flush of log file
|
|
await logFileManager.flush();
|
|
logInfo("Copilot plugin unloaded");
|
|
}
|
|
|
|
updateUserMessageHistory(newMessage: string) {
|
|
this.userMessageHistory = [...this.userMessageHistory, newMessage];
|
|
}
|
|
|
|
async autosaveCurrentChat() {
|
|
if (getSettings().autosaveChat) {
|
|
const chatView = this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE)[0]?.view as CopilotView;
|
|
if (chatView) {
|
|
await chatView.saveChat();
|
|
}
|
|
}
|
|
}
|
|
|
|
async processText(
|
|
editor: Editor,
|
|
eventType: string,
|
|
eventSubtype?: string,
|
|
checkSelectedText = true
|
|
) {
|
|
const selectedText = await editor.getSelection();
|
|
|
|
const isChatWindowActive = this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE).length > 0;
|
|
|
|
if (!isChatWindowActive) {
|
|
await this.activateView();
|
|
}
|
|
|
|
// Without the timeout, the view is not yet active
|
|
setTimeout(() => {
|
|
const activeCopilotView = this.app.workspace
|
|
.getLeavesOfType(CHAT_VIEWTYPE)
|
|
.find((leaf) => leaf.view instanceof CopilotView)?.view as CopilotView;
|
|
if (activeCopilotView && (!checkSelectedText || selectedText)) {
|
|
const event = new CustomEvent(eventType, { detail: { selectedText, eventSubtype } });
|
|
activeCopilotView.eventTarget.dispatchEvent(event);
|
|
}
|
|
}, 0);
|
|
}
|
|
|
|
processSelection(editor: Editor, eventType: string, eventSubtype?: string) {
|
|
this.processText(editor, eventType, eventSubtype);
|
|
}
|
|
|
|
emitChatIsVisible() {
|
|
const activeCopilotView = this.app.workspace
|
|
.getLeavesOfType(CHAT_VIEWTYPE)
|
|
.find((leaf) => leaf.view instanceof CopilotView)?.view as CopilotView;
|
|
|
|
if (activeCopilotView) {
|
|
const event = new CustomEvent(EVENT_NAMES.CHAT_IS_VISIBLE);
|
|
activeCopilotView.eventTarget.dispatchEvent(event);
|
|
}
|
|
}
|
|
|
|
initActiveLeafChangeHandler() {
|
|
this.registerEvent(
|
|
this.app.workspace.on("active-leaf-change", (leaf) => {
|
|
if (!leaf) {
|
|
return;
|
|
}
|
|
if (leaf.getViewState().type === CHAT_VIEWTYPE) {
|
|
this.emitChatIsVisible();
|
|
}
|
|
})
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Initialize automatic text selection handler
|
|
* Listens to selectionchange events and automatically adds selected text to chat context
|
|
*/
|
|
initSelectionHandler() {
|
|
this.selectionChangeHandler = () => {
|
|
// Clear existing debounce timer
|
|
if (this.selectionDebounceTimer) {
|
|
window.clearTimeout(this.selectionDebounceTimer);
|
|
}
|
|
|
|
// Debounce selection changes to avoid excessive triggers
|
|
this.selectionDebounceTimer = window.setTimeout(() => {
|
|
this.handleSelectionChange();
|
|
}, 500);
|
|
};
|
|
|
|
// Register the DOM selection change event
|
|
document.addEventListener("selectionchange", this.selectionChangeHandler);
|
|
}
|
|
|
|
/**
|
|
* Clean up selection handler on plugin unload
|
|
*/
|
|
cleanupSelectionHandler() {
|
|
if (this.selectionDebounceTimer) {
|
|
window.clearTimeout(this.selectionDebounceTimer);
|
|
}
|
|
if (this.selectionChangeHandler) {
|
|
document.removeEventListener("selectionchange", this.selectionChangeHandler);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Clears the auto-selected text context if one was previously captured
|
|
*/
|
|
private clearSelectionContext() {
|
|
setSelectedTextContexts([]);
|
|
}
|
|
|
|
/**
|
|
* Clears the auto-selected web text context for a specific URL.
|
|
* Preserves contexts from other sourceTypes and other URLs.
|
|
*/
|
|
private clearWebSelectionContextForUrl(url: string): void {
|
|
const current = getSelectedTextContexts();
|
|
const next = current.filter((c) => c.sourceType !== "web" || c.url !== url);
|
|
if (next.length === current.length) {
|
|
return;
|
|
}
|
|
setSelectedTextContexts(next);
|
|
}
|
|
|
|
/**
|
|
* Stores the provided selection as the active selected text context.
|
|
* Only keeps the latest selection - note and web selections are mutually exclusive.
|
|
*/
|
|
private setSelectionContext(context: SelectedTextContext) {
|
|
setSelectedTextContexts([context]);
|
|
}
|
|
|
|
/**
|
|
* Handle text selection changes
|
|
* Only processes selections from markdown editors
|
|
*/
|
|
handleSelectionChange() {
|
|
// Check if auto-inclusion is enabled
|
|
const settings = getSettings();
|
|
if (!settings.autoAddSelectionToContext) {
|
|
return;
|
|
}
|
|
|
|
const activeView = this.app.workspace.getActiveViewOfType(MarkdownView);
|
|
if (!activeView || !activeView.editor) {
|
|
return;
|
|
}
|
|
|
|
const editor = activeView.editor;
|
|
const selectedText = editor.getSelection();
|
|
|
|
// Only process non-empty selections
|
|
if (!selectedText || !selectedText.trim()) {
|
|
return;
|
|
}
|
|
|
|
const activeFile = this.app.workspace.getActiveFile();
|
|
if (!activeFile) {
|
|
return;
|
|
}
|
|
|
|
// Get selection range to determine line numbers
|
|
const selectionRange = editor.listSelections()[0];
|
|
if (!selectionRange) {
|
|
return;
|
|
}
|
|
|
|
const anchorLine = selectionRange.anchor.line + 1;
|
|
const headLine = selectionRange.head.line + 1;
|
|
const startLine = Math.min(anchorLine, headLine);
|
|
const endLine = Math.max(anchorLine, headLine);
|
|
|
|
// Create selected text context
|
|
const selectedTextContext: NoteSelectedTextContext = {
|
|
id: uuidv4(),
|
|
content: selectedText,
|
|
sourceType: "note",
|
|
noteTitle: activeFile.basename,
|
|
notePath: activeFile.path,
|
|
startLine,
|
|
endLine,
|
|
};
|
|
|
|
this.setSelectionContext(selectedTextContext);
|
|
}
|
|
|
|
/**
|
|
* Initialize web selection watcher for auto-adding web tab selections.
|
|
* Desktop only - uses WebSelectionTracker with self-scheduling pattern.
|
|
*/
|
|
initWebSelectionWatcher() {
|
|
// Only run on desktop
|
|
if (!Platform.isDesktopApp) {
|
|
return;
|
|
}
|
|
|
|
const webViewerService = getWebViewerService(this.app);
|
|
|
|
this.webSelectionTracker = new WebSelectionTracker({
|
|
intervalMs: 500,
|
|
emptySelectionDebounceCount: 2,
|
|
isEnabled: () => getSettings().autoAddSelectionToContext,
|
|
getLeaf: () => webViewerService.getActiveLeaf() ?? webViewerService.getLastActiveLeaf(),
|
|
getActiveLeaf: () => webViewerService.getActiveLeaf(),
|
|
onSelectionChange: (context) => {
|
|
// Use symmetric update strategy via setSelectionContext
|
|
this.setSelectionContext(context);
|
|
},
|
|
onSelectionClear: ({ url }) => {
|
|
this.clearWebSelectionContextForUrl(url);
|
|
},
|
|
});
|
|
|
|
this.webSelectionTracker.start();
|
|
}
|
|
|
|
/**
|
|
* Clean up web selection watcher
|
|
*/
|
|
cleanupWebSelectionWatcher() {
|
|
this.webSelectionTracker?.stop();
|
|
this.webSelectionTracker = undefined;
|
|
}
|
|
|
|
/**
|
|
* Suppress the current web selection so it won't be auto-captured again until it changes or is cleared.
|
|
* Called by UI when user removes web selection or starts a new chat.
|
|
* @param url - Optional URL to suppress (prevents leaf-binding issues when lastActiveLeaf has changed)
|
|
*/
|
|
suppressCurrentWebSelection(url?: string): void {
|
|
if (url && url.trim()) {
|
|
this.webSelectionTracker?.suppressSelectionForUrl(url);
|
|
return;
|
|
}
|
|
|
|
this.webSelectionTracker?.suppressCurrentSelection();
|
|
}
|
|
|
|
private getCurrentEditorOrDummy(): Editor {
|
|
const activeView = this.app.workspace.getActiveViewOfType(MarkdownView);
|
|
return {
|
|
getSelection: () => {
|
|
const selection = activeView?.editor?.getSelection();
|
|
if (selection) return selection;
|
|
// Default to the entire active file if no selection
|
|
const activeFile = this.app.workspace.getActiveFile();
|
|
return activeFile ? this.app.vault.cachedRead(activeFile) : "";
|
|
},
|
|
replaceSelection: activeView?.editor?.replaceSelection.bind(activeView.editor) || (() => {}),
|
|
} as Partial<Editor> as Editor;
|
|
}
|
|
|
|
processCustomPrompt(eventType: string, customPrompt: string) {
|
|
const editor = this.getCurrentEditorOrDummy();
|
|
this.processText(editor, eventType, customPrompt, false);
|
|
}
|
|
|
|
toggleView() {
|
|
const leaves = this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE);
|
|
if (leaves.length > 0) {
|
|
this.deactivateView();
|
|
} else {
|
|
this.activateView();
|
|
}
|
|
}
|
|
|
|
async activateView(): Promise<void> {
|
|
const leaves = this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE);
|
|
if (leaves.length === 0) {
|
|
if (getSettings().defaultOpenArea === DEFAULT_OPEN_AREA.VIEW) {
|
|
await this.app.workspace.getRightLeaf(false).setViewState({
|
|
type: CHAT_VIEWTYPE,
|
|
active: true,
|
|
});
|
|
} else {
|
|
await this.app.workspace.getLeaf(true).setViewState({
|
|
type: CHAT_VIEWTYPE,
|
|
active: true,
|
|
});
|
|
}
|
|
} else {
|
|
this.app.workspace.revealLeaf(leaves[0]);
|
|
}
|
|
// Small delay to ensure React component is ready to receive the focus event
|
|
setTimeout(() => {
|
|
this.emitChatIsVisible();
|
|
}, 50);
|
|
}
|
|
|
|
async deactivateView() {
|
|
this.app.workspace.detachLeavesOfType(CHAT_VIEWTYPE);
|
|
}
|
|
|
|
async loadSettings() {
|
|
const savedSettings = await this.loadData();
|
|
const sanitizedSettings = sanitizeSettings(savedSettings);
|
|
setSettings(sanitizedSettings);
|
|
}
|
|
|
|
mergeActiveModels(
|
|
existingActiveModels: CustomModel[],
|
|
builtInModels: CustomModel[]
|
|
): CustomModel[] {
|
|
const modelMap = new Map<string, CustomModel>();
|
|
|
|
// Create a unique key for each model, it's model (name + provider)
|
|
|
|
// Add or update existing models in the map
|
|
existingActiveModels.forEach((model) => {
|
|
const key = getModelKeyFromModel(model);
|
|
const existingModel = modelMap.get(key);
|
|
if (existingModel) {
|
|
// If it's a built-in model, preserve the built-in status
|
|
modelMap.set(key, {
|
|
...model,
|
|
isBuiltIn: existingModel.isBuiltIn || model.isBuiltIn,
|
|
});
|
|
} else {
|
|
modelMap.set(key, model);
|
|
}
|
|
});
|
|
|
|
return Array.from(modelMap.values());
|
|
}
|
|
|
|
async loadCopilotChatHistory() {
|
|
const chatFiles = await this.getChatHistoryFiles();
|
|
if (chatFiles.length === 0) {
|
|
new Notice("No chat history found.");
|
|
return;
|
|
}
|
|
new LoadChatHistoryModal(
|
|
this.app,
|
|
chatFiles,
|
|
this.chatHistoryLastAccessedAtManager,
|
|
this.loadChatHistory.bind(this)
|
|
).open();
|
|
}
|
|
|
|
async getChatHistoryFiles(): Promise<TFile[]> {
|
|
const folder = this.app.vault.getAbstractFileByPath(getSettings().defaultSaveFolder);
|
|
if (!(folder instanceof TFolder)) {
|
|
return [];
|
|
}
|
|
|
|
const files = this.app.vault.getMarkdownFiles();
|
|
const folderFiles = files.filter((file) => file.path.startsWith(folder.path));
|
|
|
|
// Get current project ID if in a project
|
|
const currentProject = getCurrentProject();
|
|
const currentProjectId = currentProject?.id;
|
|
|
|
if (currentProjectId) {
|
|
// In project mode: return only files with this project's ID prefix
|
|
const projectPrefix = `${currentProjectId}__`;
|
|
return folderFiles.filter((file) => file.basename.startsWith(projectPrefix));
|
|
} else {
|
|
// In non-project mode: return only files without any project ID prefix
|
|
// This assumes project IDs always use the format projectId__ as prefix
|
|
return folderFiles.filter((file) => {
|
|
// Check if the filename has any projectId__ prefix pattern
|
|
return !file.basename.match(/^[a-zA-Z0-9-]+__/);
|
|
});
|
|
}
|
|
}
|
|
|
|
async getChatHistoryItems(): Promise<ChatHistoryItem[]> {
|
|
const files = await this.getChatHistoryFiles();
|
|
return files.map((file) => {
|
|
const createdAt = extractChatDate(file);
|
|
const persistedLastAccessedAtMs = extractChatLastAccessedAtMs(file);
|
|
|
|
// Use effective last used time (prefers in-memory value for immediate UI updates)
|
|
const effectiveLastAccessedAtMs = this.chatHistoryLastAccessedAtManager.getEffectiveLastUsedAt(
|
|
file.path,
|
|
persistedLastAccessedAtMs ?? createdAt.getTime()
|
|
);
|
|
const lastAccessedAt = new Date(effectiveLastAccessedAtMs);
|
|
|
|
return {
|
|
id: file.path,
|
|
title: extractChatTitle(file),
|
|
createdAt,
|
|
lastAccessedAt,
|
|
};
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Record that a chat history file was accessed by updating its `lastAccessedAt`
|
|
* YAML frontmatter field (epoch ms), with in-memory tracking and throttled persistence.
|
|
*
|
|
* Memory is always updated immediately (for UI sorting), but disk writes are throttled and monotonic.
|
|
*/
|
|
private async touchChatHistoryLastAccessedAt(file: TFile): Promise<void> {
|
|
try {
|
|
// Always update memory for immediate UI feedback
|
|
this.chatHistoryLastAccessedAtManager.touch(file.path);
|
|
|
|
// Check if we should persist to disk (throttled)
|
|
const persistedLastAccessedAtMs = extractChatLastAccessedAtMs(file);
|
|
const timestampToPersist = this.chatHistoryLastAccessedAtManager.shouldPersist(
|
|
file.path,
|
|
persistedLastAccessedAtMs
|
|
);
|
|
|
|
if (timestampToPersist === null) {
|
|
return;
|
|
}
|
|
|
|
if (!this.app.fileManager?.processFrontMatter) {
|
|
return;
|
|
}
|
|
|
|
let persistedAtMs = timestampToPersist;
|
|
|
|
await this.app.fileManager.processFrontMatter(file, (frontmatter) => {
|
|
// Monotonic protection: ensure we never write an older timestamp
|
|
const existingValue = Number(frontmatter.lastAccessedAt);
|
|
const existingAtMs =
|
|
Number.isFinite(existingValue) && existingValue > 0 ? existingValue : 0;
|
|
|
|
persistedAtMs = Math.max(existingAtMs, timestampToPersist);
|
|
|
|
if (existingAtMs === persistedAtMs) {
|
|
return;
|
|
}
|
|
|
|
frontmatter.lastAccessedAt = persistedAtMs;
|
|
});
|
|
|
|
// Mark persistence successful for throttling purposes
|
|
this.chatHistoryLastAccessedAtManager.markPersisted(file.path, persistedAtMs);
|
|
} catch (error) {
|
|
logWarn(`[CopilotPlugin] Failed to update chat lastAccessedAt for ${file.path}`, error);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the chat history last accessed at manager for use in sorting.
|
|
* This allows UI components to use in-memory values for immediate feedback.
|
|
*/
|
|
getChatHistoryLastAccessedAtManager(): RecentUsageManager<string> {
|
|
return this.chatHistoryLastAccessedAtManager;
|
|
}
|
|
|
|
async loadChatHistory(file: TFile) {
|
|
// First autosave the current chat if the setting is enabled
|
|
await this.autosaveCurrentChat();
|
|
|
|
// Check if the Copilot view is already active
|
|
const existingView = this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE)[0];
|
|
if (!existingView) {
|
|
// Only activate the view if it's not already open
|
|
this.activateView();
|
|
}
|
|
|
|
// Load messages using ChatUIState (which now uses ChatPersistenceManager internally)
|
|
await this.chatUIState.loadChatHistory(file);
|
|
|
|
// Touch "lastAccessedAt" timestamp (throttled to avoid frequent writes)
|
|
void this.touchChatHistoryLastAccessedAt(file);
|
|
|
|
// Update the view
|
|
const copilotView = (existingView || this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE)[0])
|
|
?.view as CopilotView;
|
|
if (copilotView) {
|
|
copilotView.updateView();
|
|
}
|
|
}
|
|
|
|
async loadChatById(fileId: string): Promise<void> {
|
|
const file = this.app.vault.getAbstractFileByPath(fileId);
|
|
if (file instanceof TFile) {
|
|
await this.loadChatHistory(file);
|
|
} else {
|
|
throw new Error("Chat file not found.");
|
|
}
|
|
}
|
|
|
|
async openChatSourceFile(fileId: string): Promise<void> {
|
|
const file = this.app.vault.getAbstractFileByPath(fileId);
|
|
if (file instanceof TFile) {
|
|
await this.app.workspace.getLeaf(true).openFile(file);
|
|
} else {
|
|
throw new Error("Chat file not found.");
|
|
}
|
|
}
|
|
|
|
async updateChatTitle(fileId: string, newTitle: string): Promise<void> {
|
|
const file = this.app.vault.getAbstractFileByPath(fileId);
|
|
if (file instanceof TFile) {
|
|
await this.app.fileManager.processFrontMatter(file, (frontmatter) => {
|
|
frontmatter.topic = newTitle;
|
|
});
|
|
|
|
// Wait for metadata cache to update with improved error handling
|
|
// This ensures that subsequent calls to extractChatTitle will get the updated data
|
|
await new Promise<void>((resolve) => {
|
|
const handler = (updatedFile: TFile) => {
|
|
if (updatedFile.path === fileId) {
|
|
this.app.metadataCache.off("changed", handler);
|
|
clearTimeout(timeoutId);
|
|
resolve();
|
|
}
|
|
};
|
|
|
|
this.app.metadataCache.on("changed", handler);
|
|
|
|
// Fallback timeout with shorter duration and better error handling
|
|
const timeoutId = setTimeout(() => {
|
|
this.app.metadataCache.off("changed", handler);
|
|
// Don't reject, just resolve - the frontmatter update might have worked
|
|
// even if we didn't catch the event
|
|
resolve();
|
|
}, 500); // Reduced timeout for better performance
|
|
});
|
|
|
|
new Notice("Chat title updated.");
|
|
} else {
|
|
throw new Error("Chat file not found.");
|
|
}
|
|
}
|
|
|
|
async deleteChatHistory(fileId: string): Promise<void> {
|
|
const file = this.app.vault.getAbstractFileByPath(fileId);
|
|
if (file instanceof TFile) {
|
|
await this.app.vault.delete(file);
|
|
new Notice("Chat deleted.");
|
|
} else {
|
|
throw new Error("Chat file not found.");
|
|
}
|
|
}
|
|
|
|
async handleNewChat() {
|
|
clearRecordedPromptPayload();
|
|
await logFileManager.clear();
|
|
|
|
// Analyze chat messages for memory if enabled
|
|
if (getSettings().enableRecentConversations) {
|
|
try {
|
|
// Get the current chat model from the chain manager
|
|
const chainManager = this.projectManager.getCurrentChainManager();
|
|
const chatModel = chainManager.chatModelManager.getChatModel();
|
|
this.userMemoryManager.addRecentConversation(this.chatUIState.getMessages(), chatModel);
|
|
} catch (error) {
|
|
logInfo("Failed to analyze chat messages for memory:", error);
|
|
}
|
|
}
|
|
|
|
// First autosave the current chat if the setting is enabled
|
|
await this.autosaveCurrentChat();
|
|
|
|
// Abort any ongoing streams before clearing chat
|
|
const existingView = this.app.workspace.getLeavesOfType(CHAT_VIEWTYPE)[0];
|
|
if (existingView) {
|
|
const copilotView = existingView.view as CopilotView;
|
|
// Dispatch abort event to stop any ongoing streams
|
|
const abortEvent = new CustomEvent(EVENT_NAMES.ABORT_STREAM, {
|
|
detail: { reason: ABORT_REASON.NEW_CHAT },
|
|
});
|
|
copilotView.eventTarget.dispatchEvent(abortEvent);
|
|
}
|
|
|
|
// Clear messages through ChatUIState (which also clears chain memory)
|
|
this.chatUIState.clearMessages();
|
|
|
|
// Update view if it exists
|
|
if (existingView) {
|
|
const copilotView = existingView.view as CopilotView;
|
|
copilotView.updateView();
|
|
} else {
|
|
// If view doesn't exist, open it
|
|
await this.activateView();
|
|
}
|
|
|
|
// Note: UI-specific state like includeActiveNote setting is handled in the Chat component
|
|
// This ensures proper separation of concerns between plugin logic and UI state
|
|
}
|
|
|
|
async newChat() {
|
|
// Just delegate to the shared method
|
|
await this.handleNewChat();
|
|
}
|
|
|
|
async customSearchDB(query: string, salientTerms: string[], textWeight: number): Promise<any[]> {
|
|
const settings = getSettings();
|
|
const retriever = settings.enableSemanticSearchV3
|
|
? new (await import("@/search/v3/MergedSemanticRetriever")).MergedSemanticRetriever(
|
|
this.app,
|
|
{
|
|
minSimilarityScore: 0.3,
|
|
maxK: 20,
|
|
salientTerms: salientTerms,
|
|
textWeight: textWeight,
|
|
returnAll: false,
|
|
}
|
|
)
|
|
: new (await import("@/search/v3/TieredLexicalRetriever")).TieredLexicalRetriever(this.app, {
|
|
minSimilarityScore: 0.3,
|
|
maxK: 20,
|
|
salientTerms: salientTerms,
|
|
textWeight: textWeight,
|
|
timeRange: undefined,
|
|
returnAll: false,
|
|
useRerankerThreshold: undefined,
|
|
});
|
|
|
|
const results = await retriever.getRelevantDocuments(query);
|
|
return results.map((doc) => ({
|
|
content: doc.pageContent,
|
|
metadata: doc.metadata,
|
|
}));
|
|
}
|
|
}
|