codemp-nvim/lua/codemp/neo-tree/commands.lua

189 lines
6.5 KiB
Lua
Raw Normal View History

local cc = require("neo-tree.sources.common.commands")
local utils = require("neo-tree.utils")
2024-09-15 12:43:59 +02:00
local codemp_utils = require("codemp.utils")
local manager = require("neo-tree.sources.manager")
local buf_manager = require("codemp.buffers")
local ws_manager = require("codemp.workspace")
local client_manager = require("codemp.client")
local M = {}
2024-09-07 05:03:34 +02:00
local function toggle(node)
if node:is_expanded() then
node:collapse()
else
node:expand()
end
2024-09-07 05:10:58 +02:00
manager.refresh("codemp")
2024-09-07 05:03:34 +02:00
end
M.refresh = require("neo-tree.utils").wrap(manager.refresh, "codemp")
M.open = function(state, path, extra)
local selected = state.tree:get_node()
if selected.type == "spacer" then return end
2024-09-07 05:03:34 +02:00
if selected.type == "entry" then return end
2024-09-07 05:07:06 +02:00
if selected.type == "root" then return toggle(selected) end
if selected.type == "title" then
if CODEMP.client ~= nil then
print(" :: refreshing workspace list")
ws_manager.list()
end
return
end
2024-09-07 04:26:21 +02:00
if selected.type == "button" then
if selected.name == "[connect]" and CODEMP.client == nil then
client_manager.connect()
end
return
end
if selected.type == "workspace" then
if CODEMP.workspace ~= nil and CODEMP.workspace.name ~= selected.name then
2024-09-07 05:03:34 +02:00
error("must leave current workspace first")
end
if CODEMP.workspace == nil then
2024-09-07 05:03:34 +02:00
ws_manager.join(selected.name)
end
return
end
if selected.type == "buffer" then
local window = utils.get_appropriate_window(state)
if buf_manager.map_rev[selected.name] ~= nil then
vim.api.nvim_set_current_win(window)
vim.api.nvim_win_set_buf(window, buf_manager.map_rev[selected.name])
else
local buf = vim.api.nvim_create_buf(true, false)
buf_manager.attach(selected.name, { buffer = buf, window = window })
end
return
end
if selected.type == "user" then
2024-09-25 04:00:46 +02:00
if CODEMP.workspace == nil then error("cannot follow while not in a workspace") end
2024-09-16 20:10:54 +02:00
local usr = ws_manager.map[selected.name]
2024-09-25 04:00:46 +02:00
print(" /\\/ following " .. selected.name)
CODEMP.following = selected.name
local _ = CODEMP.workspace.cursor:send({
buffer = "",
start = { 0, 0 },
finish = { 0, 0 },
}) -- clear current cursor
2024-09-16 20:10:54 +02:00
if usr ~= nil then
local buf_name = buf_manager.users[selected.name]
local buf_id = buf_manager.map_rev[buf_name]
if buf_id ~= nil then
local win = utils.get_appropriate_window(state)
2024-09-25 04:00:46 +02:00
CODEMP.ignore_following_action = true
vim.api.nvim_set_current_win(win)
2024-09-16 20:10:54 +02:00
vim.api.nvim_win_set_buf(win, buf_id)
vim.api.nvim_win_set_cursor(win, { usr.pos[1] + 1, usr.pos[2] })
end
end
2024-09-25 04:10:48 +02:00
manager.refresh("codemp")
return
end
error("unrecognized node type")
end
M.move = function(state, path, extra)
local selected = state.tree:get_node()
if selected.type == "buffer" then
2024-09-15 12:43:59 +02:00
return vim.ui.input({ prompt = "move content into open buffer?" }, function (input)
2024-09-26 16:38:52 +02:00
if not input or not vim.startswith(string.lower(input), "y") then return end
2024-09-15 12:43:59 +02:00
local window = utils.get_appropriate_window(state)
local buf = vim.api.nvim_win_get_buf(window)
2024-09-27 23:04:56 +02:00
buf_manager.attach(selected.name, { buffer = buf })
2024-09-15 12:43:59 +02:00
end)
end
error("only buffers can be moved to current file")
end
2024-09-15 12:43:59 +02:00
M.copy = function(state, path, extra)
local selected = state.tree:get_node()
if selected.type == "buffer" then
return vim.ui.input({ prompt = "copy content to remote buffer?" }, function (input)
2024-09-26 16:38:52 +02:00
if not input or not vim.startswith(string.lower(input), "y") then return end
2024-09-15 12:43:59 +02:00
local window = utils.get_appropriate_window(state)
local buf = vim.api.nvim_win_get_buf(window)
local content = codemp_utils.buffer.get_content(buf)
2024-09-27 23:04:56 +02:00
buf_manager.attach(selected.name, { buffer = buf, content = content })
2024-09-15 12:43:59 +02:00
end)
end
error("current file can only be copied into buffers")
end
2024-09-07 01:31:04 +02:00
M.delete = function(state, path, extra)
local selected = state.tree:get_node()
2024-09-26 16:38:52 +02:00
if selected.type == "title" then
vim.ui.input({ prompt = "disconnect from server?" }, function(choice)
if not choice or not vim.startswith(string.lower(choice), "y") then return end
CODEMP.client = nil
collectgarbage("collect") -- to make sure we drop the reference and disconnect
end)
elseif selected.type == "root" and vim.startswith(selected.name, "#") then
2024-09-07 05:03:34 +02:00
vim.ui.input({ prompt = "disconnect from workspace?" }, function (input)
2024-09-26 16:38:52 +02:00
if not input or not vim.startswith(string.lower(input), "y") then return end
2024-09-07 05:03:34 +02:00
ws_manager.leave()
end)
elseif selected.type == "buffer" then
if CODEMP.workspace == nil then error("join a workspace first") end
vim.ui.input({ prompt = "delete buffer '" .. selected.name .. "'?" }, function (input)
2024-09-26 16:38:52 +02:00
if not input or not vim.startswith(string.lower(input), "y") then return end
if buf_manager.map_rev[selected.name] ~= nil then
buf_manager.detach(selected.name)
end
CODEMP.workspace:delete(selected.name):and_then(function ()
2024-09-17 16:33:22 +02:00
print("deleted buffer " .. selected.name)
manager.refresh("codemp")
end)
end)
2024-09-07 01:31:04 +02:00
elseif selected.type == "workspace" then
if CODEMP.client == nil then error("connect to server first") end
vim.ui.input({ prompt = "delete buffer '" .. selected.name .. "'?" }, function (input)
2024-09-26 16:38:52 +02:00
if not input or not vim.startswith(string.lower(input), "y") then return end
CODEMP.client:delete_workspace(selected.name):and_then(function ()
2024-09-17 16:33:22 +02:00
print("deleted workspace " .. selected.name)
manager.refresh("codemp")
end)
end)
2024-09-07 01:31:04 +02:00
end
end
2024-09-07 05:03:34 +02:00
M.add = function(state, path, extra)
local selected = state.tree:get_node()
if selected.type == "root" then
if vim.startswith(selected.name, "#") then
2024-09-15 12:46:43 +02:00
vim.ui.input({ prompt = "new buffer path" }, function(input)
2024-09-07 05:03:34 +02:00
if input == nil or input == "" then return end
CODEMP.workspace:create(input):and_then(function ()
2024-09-17 16:33:22 +02:00
manager.refresh("codemp")
end)
2024-09-07 05:03:34 +02:00
end)
elseif selected.name == "workspaces" then
2024-09-15 12:46:43 +02:00
vim.ui.input({ prompt = "new workspace name" }, function(input)
2024-09-07 05:03:34 +02:00
if input == nil or input == "" then return end
CODEMP.client:create_workspace(input):and_then(function ()
2024-09-17 18:43:45 +02:00
manager.refresh("codemp")
2024-09-17 16:33:22 +02:00
require('codemp.workspace').list()
end)
2024-09-07 05:03:34 +02:00
end)
end
elseif selected.type == "workspace" then
2024-09-15 12:46:43 +02:00
vim.ui.input({ prompt = "user name to invite" }, function(input)
if input == nil or input == "" then return end
CODEMP.client:invite_to_workspace(selected.name, input):and_then(function ()
2024-09-17 16:33:22 +02:00
print("invited user " .. input .. " to workspace " .. selected.name)
end)
end)
elseif selected.type == "buffer" then
if buf_manager.map_rev[selected.name] ~= nil then
vim.ui.input({ prompt = "detach from '" .. selected.name .. "'?" }, function (choice)
2024-09-26 16:38:52 +02:00
if not choice or not vim.startswith(string.lower(choice), "y") then return end
2024-09-26 03:44:42 +02:00
buf_manager.detach(selected.name)
end)
end
end
end
cc._add_common_commands(M)
return M