mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Implemented notification center initialization and rendering utilities. - Added toast notification types: success, error, warning, and info. - Created notification list rendering with badge support. - Included SVG icons for notification center. - Added tests for notification center functionalities. feat: introduce schema editor package for database management - Developed schema editor initialization and field type definitions. - Implemented table management and relationships handling. - Added SVG icons for schema editor. - Included tests for schema editor functionalities. feat: create user manager package for user management operations - Implemented user management actions: create, update, delete, change level, and toggle active. - Developed user list rendering with sortable columns. - Added SVG icons for user manager. - Included tests for user manager functionalities. feat: add workflow editor package for workflow management - Developed workflow editor rendering and step management utilities. - Implemented workflow run status display and progress rendering. - Added SVG icons for workflow editor. - Included tests for workflow editor functionalities. chore: add static SVG icons for various packages
37 lines
864 B
Lua
37 lines
864 B
Lua
-- Row rendering utilities
|
|
local M = {}
|
|
|
|
function M.render_cell(column, value)
|
|
if column.type == "date" then
|
|
return { type = "text", content = value }
|
|
elseif column.type == "number" then
|
|
return { type = "text", content = tostring(value), align = "right" }
|
|
elseif column.type == "actions" then
|
|
return { type = "actions", buttons = column.actions }
|
|
else
|
|
return { type = "text", content = value or "" }
|
|
end
|
|
end
|
|
|
|
function M.render_row(columns, data, index)
|
|
local cells = {}
|
|
for _, col in ipairs(columns) do
|
|
table.insert(cells, M.render_cell(col, data[col.id]))
|
|
end
|
|
return {
|
|
index = index,
|
|
cells = cells,
|
|
selected = false
|
|
}
|
|
end
|
|
|
|
function M.render_rows(columns, data_list)
|
|
local rows = {}
|
|
for i, data in ipairs(data_list) do
|
|
table.insert(rows, M.render_row(columns, data, i))
|
|
end
|
|
return rows
|
|
end
|
|
|
|
return M
|