-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapi.lua
More file actions
431 lines (354 loc) · 10 KB
/
Copy pathapi.lua
File metadata and controls
431 lines (354 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
local Utils = require("eca.utils")
local Logger = require("eca.logger")
-- Load nui.nvim components for floating windows
local Popup = require("nui.popup")
---@class eca.Api
local M = {}
---@param opts? table
function M.chat(opts)
opts = opts or {}
local eca = require("eca")
if not M.is_server_running() then
M.start_server()
end
eca.open_sidebar(opts)
end
function M.focus()
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
sidebar:focus()
else
M.chat()
end
end
function M.toggle()
local eca = require("eca")
return eca.toggle_sidebar()
end
function M.close()
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
sidebar:new_chat() -- This will reset and force welcome content on next open
else
eca.close_sidebar()
end
end
---@param message string
function M.send_message(message)
local eca = require("eca")
local sidebar = eca.get()
if not sidebar or not sidebar:is_open() then
M.chat()
sidebar = eca.get()
end
if sidebar then
sidebar:_send_message(message)
else
Logger.notify("Could not open ECA sidebar", vim.log.levels.ERROR)
end
end
---@param file_path string
function M.add_file_context(file_path)
Logger.info("Adding file context: " .. file_path)
local eca = require("eca")
if not eca.server or not eca.server:is_running() then
Logger.notify("ECA server is not running", vim.log.levels.ERROR)
return
end
-- Read file content
local content = Utils.read_file(file_path)
if not content then
Logger.notify("Could not read file: " .. file_path, vim.log.levels.ERROR)
return
end
-- Create context object
local context = {
type = "file",
data = {
path = file_path,
}
}
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA Chat to add context", vim.log.levels.WARN)
return
end
chat.mediator:add_context(context)
Logger.info("File context added: " .. vim.inspect(context))
end
function M.remove_file_context(path)
local eca = require("eca")
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA Chat", vim.log.levels.WARN)
return
end
-- Create context object
local context = {
type = "file",
data = {
path = path,
}
}
Logger.info("Removing context: " .. vim.inspect(context))
chat.mediator:remove_context(context)
end
function M.remove_current_file_context()
local current_file = vim.api.nvim_buf_get_name(0)
if current_file and current_file ~= "" then
M.remove_file_context(current_file)
else
Logger.notify("No current file to remove as context", vim.log.levels.WARN)
end
end
---@param directory_path string
function M.add_directory_context(directory_path)
Logger.info("Adding directory context: " .. directory_path)
local eca = require("eca")
if not eca.server or not eca.server:is_running() then
Logger.notify("ECA server is not running", vim.log.levels.ERROR)
return
end
-- Create context object for directory
local context = {
type = "directory",
data = {
path = directory_path,
},
}
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA Chat to add context", vim.log.levels.WARN)
return
end
chat.mediator:add_context(context)
Logger.info("Directory context added: " .. vim.inspect(context))
end
---@param url string
function M.add_web_context(url)
Logger.info("Adding web context: " .. url)
local eca = require("eca")
if not eca.server or not eca.server:is_running() then
Logger.notify("ECA server is not running", vim.log.levels.ERROR)
return
end
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA Chat to add context", vim.log.levels.WARN)
return
end
local context = {
type = "web",
data = {
path = url,
},
}
chat.mediator:add_context(context)
Logger.info("Web context added: " .. vim.inspect(context))
end
function M.add_current_file_context()
local current_file = vim.api.nvim_buf_get_name(0)
if current_file and current_file ~= "" then
M.add_file_context(current_file)
else
Logger.notify("No current file to add as context", vim.log.levels.WARN)
end
end
function M.add_selection_context()
Logger.info("Adding selection context ...")
local eca = require("eca")
-- Get visual selection marks (should be set by the command before calling this)
local start_pos = vim.fn.getpos("'<")
local end_pos = vim.fn.getpos("'>")
if start_pos[2] == 0 or end_pos[2] == 0 then
Logger.notify("No selection to add as context. Please make a visual selection first.", vim.log.levels.WARN)
return
end
-- Ensure we have the right line order
local start_line = math.min(start_pos[2], end_pos[2])
local end_line = math.max(start_pos[2], end_pos[2])
local lines = vim.api.nvim_buf_get_lines(0, start_line - 1, end_line, false)
if #lines <= 0 then
Logger.notify("No lines found in the selection", vim.log.levels.WARN)
return
end
local current_file = vim.api.nvim_buf_get_name(0)
-- Create context object
local context = {
type = "file",
data = {
path = current_file,
lines_range = {
line_start = start_line,
line_end = end_line,
},
}
}
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA Chat to add context", vim.log.levels.WARN)
return
end
chat.mediator:add_context(context)
Logger.info("Added selection context: " .. vim.inspect(context))
end
function M.list_contexts()
local eca = require("eca")
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA sidebar", vim.log.levels.WARN)
return
end
local contexts = chat.mediator:contexts()
if #contexts == 0 then
Logger.notify("No active contexts", vim.log.levels.INFO)
return
end
Logger.info("Active contexts (" .. #contexts .. "):")
for i, context in ipairs(contexts) do
Logger.info(i .. ". " .. context.type .. ": " .. vim.inspect(context.data))
end
end
function M.clear_contexts()
local eca = require("eca")
local chat = eca.get()
if not chat or not chat.mediator then
Logger.notify("No active ECA Chat", vim.log.levels.WARN)
return
end
chat.mediator:clear_contexts()
Logger.info("Cleared all contexts")
end
---@return boolean
function M.is_server_running()
local eca = require("eca")
return eca.server and eca.server:is_running()
end
function M.start_server()
local eca = require("eca")
if eca.server then
eca.server:start()
else
Logger.notify("ECA server not initialized", vim.log.levels.ERROR)
end
end
function M.stop_server()
local eca = require("eca")
if eca.server then
eca.server:stop()
end
end
function M.restart_server()
M.stop_server()
vim.defer_fn(function()
M.start_server()
end, 1000)
end
function M.server_status()
local eca = require("eca")
if eca.server then
return eca.server:status()
else
return "Not initialized"
end
end
-- Keep reference to logs popup globally to reuse it
local logs_popup = nil
function M.show_logs()
-- File logging is always enabled now
local display = Logger.get_display()
if display == "popup" then
M._show_logs_in_popup()
else
M._show_logs_in_buffer()
end
end
--- Show logs in a regular Neovim buffer (when file logging is enabled)
function M._show_logs_in_buffer()
local log_path = Logger.get_log_path()
if vim.fn.filereadable(log_path) ~= 1 then
Logger.info("Log file does not exist yet: " .. log_path)
return
end
vim.cmd("edit " .. vim.fn.fnameescape(log_path))
local bufnr = vim.fn.bufnr("%")
-- Set buffer options for log viewing
vim.api.nvim_set_option_value("modifiable", false, { buf = bufnr })
vim.cmd("normal! G")
Logger.debug("Opened ECA log file: " .. log_path)
end
--- Show logs in a popup window
function M._show_logs_in_popup()
local log_path = Logger.get_log_path()
-- Helper function to read latest log content
local function get_latest_log_content()
if vim.fn.filereadable(log_path) == 1 then
local content = vim.fn.readfile(log_path)
return #content > 0 and content or { "No log entries found" }
else
return { "Log file does not exist yet: " .. log_path }
end
end
-- Helper function to setup popup close keymaps
local function setup_popup_keymaps(popup)
popup:map("n", "q", function()
popup:unmount()
end, { noremap = true, silent = true })
popup:map("n", "<Esc>", function()
popup:unmount()
end, { noremap = true, silent = true })
-- Clean up reference when popup is closed
popup:on("BufWinLeave", function()
logs_popup = nil
end)
end
-- Helper function to get responsive popup size
local function get_popup_size()
return {
width = math.floor(vim.o.columns * 0.8),
height = math.floor(vim.o.lines * 0.7),
}
end
local function set_popup_content(popup, lines)
vim.api.nvim_set_option_value("modifiable", true, { buf = popup.bufnr })
vim.api.nvim_buf_set_lines(popup.bufnr, 0, -1, false, lines)
vim.api.nvim_set_option_value("modifiable", false, { buf = popup.bufnr })
vim.api.nvim_win_set_cursor(popup.winid, { #lines, 0 })
end
if logs_popup and logs_popup.winid and vim.api.nvim_win_is_valid(logs_popup.winid) then
set_popup_content(logs_popup, get_latest_log_content())
return
end
logs_popup = Popup({
enter = true,
focusable = true,
border = {
style = "rounded",
text = {
top = " 📋 ECA Logs ",
top_align = "center",
},
},
position = "50%",
size = get_popup_size(),
buf_options = {
buftype = "nofile",
bufhidden = "hide",
swapfile = false,
modifiable = true,
filetype = "log",
},
win_options = {
wrap = false,
number = true,
signcolumn = "no",
cursorline = true,
},
})
logs_popup:mount()
set_popup_content(logs_popup, get_latest_log_content())
setup_popup_keymaps(logs_popup)
end
return M