From 32361db152be51704428d1abf3db4729312ee2f9 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 04:27:07 +0200 Subject: [PATCH] Color-code itemstacks with nbt data --- itemcontroller.lua | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index c6fc426..7032fff 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -158,7 +158,9 @@ local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage, text = text:sub(1,textBudget) end - local textLabel = Text:new{ text = text, bgColor = bgColors[i % 2] } + local nbtColor = group:getNBT() and colors.cyan or nil + + local textLabel = Text:new{ text = text, bgColor = bgColors[i % 2], fgColor = nbtColor } local countLabel = Text:new{ text = count, bgColor = bgColors[i % 2] } local paddedText = Padding:new{ left = 0, @@ -290,7 +292,7 @@ local PAGES = { state:setPage("MAIN") return NOOP end - local hello = Text:new{ + local title = Text:new{ text = "Detail: "..group:getSimpleName(), parent = state.monitor, onClick = function(e, x, y, s) @@ -298,7 +300,15 @@ local PAGES = { end } - return renderDefault(state, hello) + local paddedTitle = Padding:new{ + top = 1, + left = 1, + right = 1, + bottom = 1, + element = title + } + + return renderDefault(state, paddedTitle) end, REQUEST = function(state, newPage)