codemp-nvim/lua/codemp/neo-tree/bridge.lua
alemi 0c078ddcf1
fix: only expand all when changing state
so now toggling with enter works and doesnt bug out
2024-09-08 06:24:34 +02:00

176 lines
3.8 KiB
Lua

local renderer = require("neo-tree.ui.renderer")
local codemp = require("codemp.session")
local buf_manager = require("codemp.buffers")
---@module 'nui.tree'
local M = {}
---@param workspace string workspace name
---@param path string buffer relative path
---@return NuiTree.Node
local function new_item(workspace, path)
return {
id = string.format("codemp://%s/%s", workspace, path),
name = path,
type = "buffer",
extra = {},
children = {},
}
end
---@param workspace string workspace name
---@param username string user display name
---@return NuiTree.Node
local function new_user(workspace, username)
return {
id = string.format("codemp://%s@%s", username, workspace),
name = username,
type = "user",
extra = {},
children = {},
}
end
---@param name string workspace name
---@param owned boolean true if this workspace is owned by us
---@param expanded? boolean if node should be pre-expanded
---@return NuiTree.Node
local function new_workspace(name, owned, expanded)
return {
id = "codemp://" .. name,
name = name,
type = "workspace",
extra = {
owned = owned,
},
children = {},
}
end
---@param key string
---@param value string
---@return NuiTree.Node
local function new_entry(key, value)
return {
id = "codemp-entry-" .. key .. "-" .. value,
name = key .. ": " .. value,
type = "entry",
extra = {},
}
end
local function new_root(name)
return {
id = "codemp-tree-" .. name,
name = name,
type = "root",
expanded = true,
expand = true,
extra = {},
children = {}
}
end
local function new_button(name)
return {
id = "codemp-button-" .. name,
name = name,
type = "button",
extra = {},
children = {}
}
end
local counter = 0;
---@return NuiTree.Node
local function spacer()
counter = counter + 1
return {
id = "codemp-ws-spacer-" .. counter,
name = "",
type = "spacer",
}
end
local last_state = "N/A"
---@param tree NuiTree
local function expand(tree)
---@param node? NuiTree.Node
local function process(node)
local id = nil
if node ~= nil then id = node:get_id() end
for _, node in ipairs(tree:get_nodes(id)) do
node:expand()
if node:has_children() then
process(node)
end
end
end
process()
end
M.update_state = function(state)
---@type NuiTree.Node[]
local root = {
{
id = "codemp",
name = "codemp",
type = "title",
extra = {},
}
}
if codemp.workspace ~= nil then
local ws_section = new_root("#" .. codemp.workspace.name)
for i, path in ipairs(codemp.workspace:filetree()) do
table.insert(ws_section.children, new_item(codemp.workspace.name, path))
end
local usr_section = new_root("users")
for user, buffer in pairs(buf_manager.users) do
table.insert(usr_section.children, new_user(codemp.workspace.name, user))
end
table.insert(ws_section.children, spacer())
table.insert(ws_section.children, usr_section)
table.insert(root, spacer())
table.insert(root, ws_section)
end
if codemp.client ~= nil then
local ws_section = new_root("workspaces")
for _, ws in ipairs(codemp.available) do
table.insert(ws_section.children, new_workspace(ws.name, ws.owned))
end
table.insert(root, spacer())
table.insert(root, ws_section)
local status_section = new_root("client")
table.insert(status_section.children, new_entry("id", codemp.client.id))
table.insert(status_section.children, new_entry("name", codemp.client.username))
table.insert(root, spacer())
table.insert(root, status_section)
end
if codemp.client == nil then
table.insert(root, spacer())
table.insert(root, new_button("[connect]"))
end
renderer.show_nodes(root, state)
local new_state = "disconnected"
if codemp.client ~= nil then new_state = "connected" end
if codemp.workspace ~= nil then new_state = "joined" end
if last_state ~= new_state then expand(state.tree) end
last_state = new_state
end
return M