-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapi.lua
More file actions
523 lines (449 loc) · 12.7 KB
/
api.lua
File metadata and controls
523 lines (449 loc) · 12.7 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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
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",
path = file_path,
content = content,
}
-- Get current sidebar and add context
local sidebar = eca.get()
if not sidebar then
Logger.info("Opening ECA sidebar to add context...")
M.chat()
sidebar = eca.get()
end
if sidebar then
sidebar:add_context(context)
else
Logger.notify("Failed to create ECA sidebar", vim.log.levels.ERROR)
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",
path = directory_path,
}
-- For now, store it for next message
-- TODO: Implement context management
Logger.debug("Directory context added: " .. directory_path)
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()
-- 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
local selection_text = table.concat(lines, "\n")
local current_file = vim.api.nvim_buf_get_name(0)
local context_path = current_file .. ":" .. start_line .. "-" .. end_line
-- Create context object
local context = {
type = "file",
path = context_path,
lines_range = {
start = start_line,
End = end_line
}
}
-- Get current sidebar and add context
local eca = require("eca")
local sidebar = eca.get()
if not sidebar then
Logger.info("Opening ECA sidebar to add context...")
M.chat()
sidebar = eca.get()
end
if sidebar then
sidebar:add_context(context)
-- Also set as selected code for visual display
local selected_code = {
filepath = current_file,
content = selection_text,
start_line = start_line,
end_line = end_line,
filetype = vim.api.nvim_get_option_value("filetype", { buf = 0 }),
}
sidebar:set_selected_code(selected_code)
Logger.info("Added selection context (" .. #lines .. " lines from lines " .. start_line .. "-" .. end_line .. ")")
else
Logger.notify("Failed to create ECA sidebar", vim.log.levels.ERROR)
end
else
Logger.notify("No lines found in selection", vim.log.levels.WARN)
end
end
function M.list_contexts()
local eca = require("eca")
local sidebar = eca.get()
if not sidebar then
Logger.notify("No active ECA sidebar", vim.log.levels.WARN)
return
end
local contexts = sidebar:get_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
local size_info = ""
if context.content then
local lines = vim.split(context.content, "\n")
size_info = " (" .. #lines .. " lines)"
end
Logger.info(i .. ". " .. context.type .. ": " .. context.path .. size_info)
end
end
function M.clear_contexts()
local eca = require("eca")
local sidebar = eca.get()
if not sidebar then
Logger.notify("No active ECA sidebar", vim.log.levels.WARN)
return
end
sidebar:clear_contexts()
end
function M.remove_context(path)
local eca = require("eca")
local sidebar = eca.get()
if not sidebar then
Logger.notify("No active ECA sidebar", vim.log.levels.WARN)
return
end
sidebar:remove_context(path)
end
function M.add_repo_map_context()
local eca = require("eca")
local sidebar = eca.get()
if not sidebar then
Logger.info("Opening ECA sidebar to add repoMap context...")
M.chat()
sidebar = eca.get()
end
if sidebar then
-- Check if repoMap already exists
local contexts = sidebar:get_contexts()
for _, context in ipairs(contexts) do
if context.type == "repoMap" then
Logger.notify("RepoMap context already added", vim.log.levels.INFO)
return
end
end
-- Add repoMap context
sidebar:add_context({
type = "repoMap",
path = "repoMap",
content = "Repository structure and code mapping for better project understanding",
})
Logger.info("Added repoMap context")
else
Logger.notify("Failed to create ECA sidebar", vim.log.levels.ERROR)
end
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
-- ===== Selected Code Management =====
function M.show_selected_code()
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
local selected_code = sidebar._selected_code
if selected_code then
Logger.notify(
"Selected code: "
.. selected_code.filepath
.. " (lines "
.. (selected_code.start_line or "?")
.. "-"
.. (selected_code.end_line or "?")
.. ")",
vim.log.levels.INFO
)
else
Logger.notify("No code currently selected", vim.log.levels.INFO)
end
else
Logger.notify("ECA sidebar not available", vim.log.levels.WARN)
end
end
function M.clear_selected_code()
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
sidebar:clear_selected_code()
else
Logger.notify("ECA sidebar not available", vim.log.levels.WARN)
end
end
-- ===== TODOs Management =====
function M.add_todo(content)
local eca = require("eca")
local sidebar = eca.get()
if not sidebar then
Logger.info("Opening ECA sidebar to add TODO...")
M.chat()
sidebar = eca.get()
end
if sidebar then
local todo = {
content = content,
status = "pending",
}
sidebar:add_todo(todo)
else
Logger.notify("Failed to create ECA sidebar", vim.log.levels.ERROR)
end
end
function M.list_todos()
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
local todos = sidebar:get_todos()
if #todos == 0 then
Logger.notify("No active TODOs", vim.log.levels.INFO)
return
end
Logger.notify("Active TODOs:", vim.log.levels.INFO)
for i, todo in ipairs(todos) do
local status_icon = todo.status == "completed" and "✓" or "○"
Logger.notify(string.format("%d. %s %s", i, status_icon, todo.content), vim.log.levels.INFO)
end
else
Logger.notify("ECA sidebar not available", vim.log.levels.WARN)
end
end
function M.toggle_todo(index)
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
return sidebar:toggle_todo(index)
else
Logger.notify("ECA sidebar not available", vim.log.levels.WARN)
return false
end
end
function M.clear_todos()
local eca = require("eca")
local sidebar = eca.get()
if sidebar then
sidebar:clear_todos()
else
Logger.notify("ECA sidebar not available", vim.log.levels.WARN)
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