-
-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathrenderer.lua
321 lines (269 loc) · 7.95 KB
/
renderer.lua
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
---@source component.lua
---@class RendererIndex
---@field index table
---@field items table
---@field oid_index table
local RendererIndex = {}
RendererIndex.__index = RendererIndex
---@param line number
---@return Component[]
function RendererIndex:find_by_line(line)
return self.index[line] or {}
end
---@param oid string
---@return Component|nil
function RendererIndex:find_by_oid(oid)
return self.oid_index[oid]
end
---@param node Component
function RendererIndex:add(node)
if not self.index[node.position.row_start] then
self.index[node.position.row_start] = {}
end
table.insert(self.index[node.position.row_start], node)
end
---For tracking item locations within status buffer. Needed to make selections.
---@param name string
---@param first number
---@param last number
function RendererIndex:add_section(name, first, last)
self.items[#self.items].name = name
self.items[#self.items].first = first
self.items[#self.items].last = last
table.insert(self.items, { items = {} })
end
function RendererIndex:add_item(item, first, last)
self.items[#self.items].last = last
item.first = first
item.last = last
table.insert(self.items[#self.items].items, item)
if item.oid then
self.oid_index[item.oid] = item
end
end
function RendererIndex.new()
return setmetatable({
index = {},
oid_index = {},
items = {
{ items = {} }, -- First section
},
}, RendererIndex)
end
---@class RendererBuffer
---@field line string[]
---@field highlight table[]
---@field line_highlight table[]
---@field ansi_highlight table[]
---@field extmark table[]
---@field fold table[]
---@class RendererFlags
---@field in_row boolean
---@field in_nested_row boolean
---@class Renderer
---@field buffer RendererBuffer
---@field flags RendererFlags
---@field namespace integer
---@field layout table
---@field current_column number
---@field index table
local Renderer = {}
Renderer.__index = Renderer
---@param layout table
---@param buffer Buffer
---@return Renderer
function Renderer:new(layout, buffer)
local obj = {
namespace = buffer:create_namespace("VirtualText"),
layout = layout,
buffer = {
line = {},
highlight = {},
line_highlight = {},
ansi_highlight = {},
extmark = {},
fold = {},
},
index = RendererIndex.new(),
flags = {
in_row = false,
in_nested_row = false,
},
}
setmetatable(obj, self)
return obj
end
---@return Renderer
function Renderer:render()
self:_render(self.layout, self.layout.children, 0)
return self
end
---@return RendererIndex
function Renderer:node_index()
return self.index
end
---@return RendererIndex
function Renderer:item_index()
return self.index.items
end
function Renderer:_build_child(child, parent, index)
child.parent = parent
child.index = index
child.position = {
row_start = #self.buffer.line + 1,
row_end = self.flags.in_row and #self.buffer.line + 1 or -1,
col_start = 0,
col_end = -1,
}
end
---@param parent Component
---@param children Component[]
---@param column integer
function Renderer:_render(parent, children, column)
if self.flags.in_row then
local col_start = column
local col_end
local highlights = {}
local text = {}
for index, child in ipairs(children) do
self:_build_child(child, parent, index)
col_start = self:_render_child_in_row(child, index, col_start, col_end, highlights, text)
end
if self.flags.in_nested_row then
return { text = table.concat(text), highlights = highlights }
end
table.insert(self.buffer.line, table.concat(text))
for _, h in ipairs(highlights) do
table.insert(self.buffer.highlight, { #self.buffer.line - 1, h.from, h.to, h.name })
end
else
for index, child in ipairs(children) do
self:_build_child(child, parent, index)
self:_render_child(child)
end
end
end
---@param child Component
function Renderer:_render_child(child)
if child.tag == "text" then
self:_render_text(child)
elseif child.tag == "col" then
self:_render_col(child)
elseif child.tag == "row" then
self:_render_row(child)
end
child.position.row_end = #self.buffer.line
if child.options.section then
self.index:add_section(child.options.section, child.position.row_start, child.position.row_end)
end
if child.options.item then
child.options.item.folded = child.options.folded
self.index:add_item(child.options.item, child.position.row_start, child.position.row_end)
end
local line_hl = child:get_line_highlight()
if line_hl then
table.insert(self.buffer.line_highlight, { #self.buffer.line - 1, line_hl })
end
if child.options.ansi_hl then
table.insert(self.buffer.ansi_highlight, {
#self.buffer.line - (child.position.row_end - child.position.row_start),
#self.buffer.line,
})
end
if child.options.virtual_text then
table.insert(self.buffer.extmark, {
self.namespace,
#self.buffer.line - 1,
0,
{
hl_mode = "combine",
virt_text = child.options.virtual_text,
virt_text_pos = "right_align",
},
})
end
if child.options.foldable then
table.insert(self.buffer.fold, {
#self.buffer.line - (child.position.row_end - child.position.row_start),
#self.buffer.line,
not child.options.folded,
child.options.tag,
})
end
end
---@param child Component
function Renderer:_render_row(child)
self.flags.in_row = true
self:_render(child, child.children, 0)
self.flags.in_row = false
end
---@param child Component
function Renderer:_render_col(child)
self:_render(child, child.children, 0)
end
---@param child Component
function Renderer:_render_text(child)
local highlight = child:get_highlight()
if highlight then
table.insert(self.buffer.highlight, {
#self.buffer.line,
child.position.col_start,
child.position.col_end,
highlight,
})
end
local line_highlight = child:get_line_highlight()
if line_highlight then
table.insert(self.buffer.line_highlight, { #self.buffer.line, line_highlight })
end
table.insert(self.buffer.line, table.concat { child:get_padding_left(), child.value })
self.index:add(child)
end
---@param child Component
---@param i integer index of child in parent.children
function Renderer:_render_child_in_row(child, i, col_start, col_end, highlights, text)
if child.tag == "text" then
return self:_render_in_row_text(child, i, col_start, highlights, text)
elseif child.tag == "row" then
return self:_render_in_row_row(child, highlights, text, col_start, col_end)
else
error("The row component does not support having a `" .. child.tag .. "` as a child")
end
end
---@param child Component
---@param index integer index of child in parent.children
function Renderer:_render_in_row_text(child, index, col_start, highlights, text)
local padding_left = self.flags.in_nested_row and "" or child:get_padding_left(index == 1)
table.insert(text, 1, padding_left)
col_start = col_start + #padding_left
local col_end = col_start + child:get_width()
child.position.col_start = col_start
child.position.col_end = col_end - 1
if child.options.align_right then
table.insert(text, child.value)
table.insert(text, (" "):rep(child.options.align_right - #child.value))
else
table.insert(text, child.value)
end
local highlight = child:get_highlight()
if highlight then
table.insert(highlights, { from = col_start, to = col_end, name = highlight })
end
self.index:add(child)
return col_end
end
---@param child Component
function Renderer:_render_in_row_row(child, highlights, text, col_start, col_end)
self.flags.in_nested_row = true
local res = self:_render(child, child.children, col_start)
self.flags.in_nested_row = false
table.insert(text, res.text)
for _, h in ipairs(res.highlights) do
table.insert(highlights, h)
end
col_end = col_start + vim.fn.strdisplaywidth(res.text)
child.position.col_start = col_start
child.position.col_end = col_end
return col_end
end
return Renderer