Module:Item Navbox: Difference between revisions

From The Deadlock Wiki
Jump to navigation Jump to search
added codename navbox function
 
(28 intermediate revisions by 3 users not shown)
Line 1: Line 1:
local p = {}
local p = {}
local items_data = mw.loadJsonData("Data:ItemData.json")
local items_data = mw.loadJsonData("Data:ItemData.json")
local items_module = require("Module:ItemData")
local lang_module = require('Module:Lang')
local lang_module = require('Module:Lang')
local generic_module = require('Module:GenericData')
local util_module = require('Module:Utilities')
-- Exceptions if the link is different from the item name
local linkOverrides = {
    ["Bullet Lifesteal"] = "Bullet Lifesteal (item)",
    ["Spirit Lifesteal"] = "Spirit Lifesteal (item)"
}


-- Cached items grouped by slot to prevent redundant full-table evaluations
-- Cached items grouped by slot to prevent redundant full-table evaluations
Line 37: Line 30:
end
end


-- Writes list of items of a certain slot within the min and max soul bounds
-- Directly fetches and formats ItemIcons for the navbox
local function write_wrapped_item_list(slot, min_souls, max_souls, template, sep, filter_mode)
local function get_item_icons(slot, min_souls, max_souls, filter_mode)
     if slot ~= 'Weapon' and slot ~= 'Armor' and slot ~= 'Tech' then
     if slot ~= 'Weapon' and slot ~= 'Armor' and slot ~= 'Tech' then return '' end
        return 'slot must be Weapon, Armor (Vitality), or Tech (Spirit)'
    end
   
    local min_souls = tonumber(min_souls)
    local max_souls = tonumber(max_souls)
    if min_souls == nil or max_souls == nil then return 'Min/Max souls must be numerical' end
   
    filter_mode = filter_mode or "all"
      
      
    -- Lifted out of the loop: Language code doesn't change per item
     local lang_code = lang_module.get_lang_code()  
     local lang_code = lang_module.get_lang_code()  
   
     local items = {}
     local items = {}
     local slot_items = get_items_by_slot(slot) -- Drastically reduces search pool size
     local slot_items = get_items_by_slot(slot)  
      
      
     for _, item_entry in ipairs(slot_items) do
     for _, item_entry in ipairs(slot_items) do
Line 63: Line 46:
         local should_include = true
         local should_include = true
          
          
        -- Filter logic for Street Brawl items
         if filter_mode == "street_brawl_only" and not is_street_brawl then
         if filter_mode == "street_brawl_only" and not is_street_brawl then
             should_include = false
             should_include = false
Line 73: Line 55:
             if this_cost >= min_souls and this_cost < max_souls then
             if this_cost >= min_souls and this_cost < max_souls then
                 local item_name_english = lang_module.get_string(item_key, "en")
                 local item_name_english = lang_module.get_string(item_key, "en")
                local item_link = linkOverrides[item_name_english] or item_name_english
                 local item_name_local = lang_module.get_string(item_key, lang_code)
                 local item_name_local = lang_module.get_string(item_key, lang_code)
                  
                  
                 local item_template
                 local item_template
                 if template == "ItemIcon" then
                 if lang_code == "en" then
                    if lang_code == "en" then
                     item_template = "{{ItemIcon|" .. item_name_english .. "|size=26px}}"
                        item_template = "{{ItemIcon|" .. item_name_english .. "|size=26px}}"
                     else
                        item_template = "{{ItemIcon|" .. item_name_english .. "|lang=" .. lang_code .. "|l1=" .. item_name_local .. "|size=26px}}"
                    end
                   
                    local search_data = item_name_english
                    if lang_code ~= "en" and item_name_local then
                        search_data = search_data .. " " .. item_name_local
                    end
                   
                    item_template = '<span class="item-nav-search-wrapper"><span class="item-nav-search-item" data-item-name="' .. search_data .. '">' .. item_template .. '</span>'
                elseif template == "ItemBox" then
                    if lang_code == "en" then
                        if is_street_brawl then
                            item_template = "{{ItemBox|itemName=" .. item_name_english .. "|overrideLinkClick=" .. item_link .. "|overrideTier=5}}"
                        else
                            item_template = "{{ItemBox|itemName=" .. item_name_english .. "|overrideLinkClick=" .. item_link .. "}}"
                        end
                    else
                        local link_local = item_link .. "/" .. lang_code
                        if is_street_brawl then
                            item_template = "{{ItemBox|itemName=" .. item_name_english .. "|overrideLinkClick=" .. link_local .. "|item_price={{#invoke:Lang|get_string|Citadel_ItemDraft_Legendary}}}}"
                        else
                            item_template = "{{ItemBox|itemName=" .. item_name_english .. "|overrideLinkClick=" .. link_local .. "}}"
                        end
                    end
                 else
                 else
                     return "Invalid template type"
                     item_template = "{{ItemIcon|" .. item_name_english .. "|lang=" .. lang_code .. "|l1=" .. item_name_local .. "|size=26px}}"
                 end
                 end
               
                local search_data = item_name_english
                if lang_code ~= "en" and item_name_local then
                    search_data = search_data .. " " .. item_name_local
                end
               
                item_template = '<span class="item-nav-search-wrapper"><span class="item-nav-search-item" data-item-name="' .. search_data .. '">' .. item_template .. '</span>'
                 table.insert(items, item_template)
                 table.insert(items, item_template)
             end
             end
Line 113: Line 75:
     end
     end
      
      
    -- Order list alphabetically
     table.sort(items)
     table.sort(items)
      
      
     -- Append closing tags and bullets
     -- Append closing tags and bullets
     if template == "ItemIcon" then
     local total_items = #items
        local total_items = #items
    for i = 1, total_items do
        for i = 1, total_items do
        if i == total_items then
            if i == total_items then
            items[i] = items[i] .. '</span>'
                items[i] = items[i] .. '</span>'
        else
            else
            items[i] = items[i] .. '<span class="item-nav-search-sep"> &bull; </span></span>'
                items[i] = items[i] .. '<span class="item-nav-search-sep"> &bull; </span></span>'
            end
         end
         end
     end
     end
      
      
     return table.concat(items, sep)
     return table.concat(items, '')
end
end
-- for [[Template:Item Navbox]]
function p.get_item_nav_bulletpoints(slot, min_souls, max_souls, debug_mode, filter_mode)
    if type(slot) == "table" and slot.args then
        local frame = slot
        slot = frame.args[1]
        min_souls = frame.args[2]
        max_souls = frame.args[3]
        debug_mode = frame.args["debug_mode"]
        filter_mode = frame.args["filter"]
    end
      
      
    local item_list = write_wrapped_item_list(slot, min_souls, max_souls, "ItemIcon", '', filter_mode)
-- Gets list of item codenames
    return process_debug_mode(item_list, debug_mode)
local function get_item_codenames(slot, min_souls, max_souls, filter_mode, frame)
end
     if slot ~= 'Weapon' and slot ~= 'Armor' and slot ~= 'Tech' then return '' end
 
-- for [[Template:Infobox ShopItems]]
function p.get_item_nav_cards(slot, min_souls, max_souls, debug_mode, filter_mode)
     if type(slot) == "table" and slot.args then
        local frame = slot
        slot = frame.args[1]
        min_souls = frame.args[2]
        max_souls = frame.args[3]
        debug_mode = frame.args["debug_mode"]
        filter_mode = frame.args["filter"]
    end
      
      
     local item_list = write_wrapped_item_list(slot, min_souls, max_souls, "ItemBox", ' ', filter_mode)
     local lang_code = lang_module.get_lang_code()  
    return process_debug_mode(item_list, debug_mode)
     local items = {}
end
     local slot_items = get_items_by_slot(slot)
 
-- for [[Template:Item Navbox]] subgroup rows
function p.write_item_slot_subgroup(frame)
     local slot = frame.args[1]
     local type_func = frame.args[2]
    local debug_mode = frame.args['debug_mode']
    local street_brawl_label = frame.args['street_brawl_label'] or '{{Legendary|{{#invoke:Lang|get_string|Citadel_ItemDraft_Legendary}}}}'
      
      
     if slot == nil then return "'slot' parameter is required" end
     for _, item_entry in ipairs(slot_items) do
   
        local item_key = item_entry.key
    local template_args = {
        local item_data = item_entry.data
        ["groupstyle"] = "background-color:" .. util_module.get_slot_color(slot) .. ";width:10%;min-width:70px;border-radius: 8px 0 0 8px",
       
         ["grouppadding"] = "5px",
        local this_cost = tonumber(item_data["Cost"])
         ["listpadding"] = "0 0.25rem",
         local is_street_brawl = item_data["StreetBrawl"] == true
    }
         local should_include = true
   
       
    local soul_style = "font-size: 12px; text-shadow: 1px 1px rgba(0, 0, 0, 0.3);"
        if filter_mode == "street_brawl_only" and not is_street_brawl then
    local prices = generic_module.get_item_price_per_tier()
            should_include = false
    local group_index = 1
        elseif filter_mode == "exclude_street_brawl" and is_street_brawl then
   
            should_include = false
    for i, souls in ipairs(prices) do
         end
         local min_souls = souls
          
          
         if min_souls ~= 0 then  
         if should_include and item_data["Name"] ~= nil and item_data["IsDisabled"] == false and this_cost ~= nil then
             local max_souls = prices[i+1] or (min_souls * 10)
             if this_cost >= min_souls and this_cost < max_souls then
           
                local item_name_english = lang_module.get_string(item_key, "en")
            local list
                local item_name_local = lang_module.get_string(item_key, lang_code)
            if type_func == 'get_item_nav_cards' then
               
                 list = p.get_item_nav_cards(slot, min_souls, max_souls, debug_mode, "exclude_street_brawl")
                local codename_frame = {
            elseif type_func == 'get_item_nav_bulletpoints' then
                    args = { item_name_english }
                list = p.get_item_nav_bulletpoints(slot, min_souls, max_souls, debug_mode, "exclude_street_brawl")
                }
            else
 
                return "'type' should be get_item_nav_cards or get_item_nav_bulletpoints"
                 local item_codename = items_module.get_codename(codename_frame)
            end
               
           
                local item_template
            if list and list ~= "" then
                if lang_code == "en" then
                template_args["group" .. group_index] = frame:expandTemplate{title="Souls", args={[1] = min_souls, ["Shadow"] = soul_style}}
                    item_template = "{{ItemIcon|" .. item_name_english .. "|l1=" .. item_codename .. "|size=26px}}"
                template_args["list" .. group_index] = list
                else
                 group_index = group_index + 1
                    item_template = "{{ItemIcon|" .. item_name_english .. "|lang=" .. lang_code .. "|l1=" .. item_name_local .. "|size=26px}}"
                end
               
                local search_data = item_name_english
                if lang_code ~= "en" and item_name_local then
                    search_data = search_data .. " " .. item_name_local
                end
               
                item_template = '<span class="item-nav-search-wrapper"><span class="item-nav-search-item" data-item-name="' .. search_data .. '">' .. item_template .. '</span>'
                 table.insert(items, item_template)
             end
             end
         end
         end
     end
     end
      
      
     local sb_list
     table.sort(items)
    if type_func == 'get_item_nav_cards' then
        sb_list = p.get_item_nav_cards(slot, 0, 999999, debug_mode, "street_brawl_only")
    elseif type_func == 'get_item_nav_bulletpoints' then
        sb_list = p.get_item_nav_bulletpoints(slot, 0, 999999, debug_mode, "street_brawl_only")
    end
      
      
     if sb_list and sb_list ~= "" then
     -- Append closing tags and bullets
        local sb_style = "color:#98ffde; font-family:'Retail Demo', sans-serif; text-wrap: nowrap; text-shadow: 0px 0px 2px #2c312e, 1.3px 1.3px rgba(0, 0, 0, 0.2);padding:5px;"
    local total_items = #items
         local sb_link_text = "[[Street Brawl{{if_lang}}|<span style=\"" .. sb_style .. "\"><b>" .. street_brawl_label .. "</b></span>]]"
    for i = 1, total_items do
         template_args["group" .. group_index] = frame:preprocess(sb_link_text)
         if i == total_items then
        template_args["list" .. group_index] = sb_list
            items[i] = items[i] .. '</span>'
        else
            items[i] = items[i] .. '<span class="item-nav-search-sep"> &bull; </span></span>'
         end
     end
     end
      
      
     return frame:expandTemplate{title="Navbox subgroup", args=template_args}
     return table.concat(items, '')
end
end


-- for [[Template:Active Items]]
-- Generates the full HTML item navbox recursively and efficiently
function p.generate_active_items_table(frame)
function p.generate_full_navbox(frame)
     local active_items = {}
     local debug_mode = type(frame) == "table" and frame.args and frame.args["debug_mode"] or nil
   
 
     for item_key, item_data in pairs(items_data) do
    local html = {}
         local cost = tonumber(item_data["Cost"])
table.insert(html, '<div class="itemnav-header"> [[Items]] <div class="item-nav-search-container"></div></div>\n')
         if item_data["Name"] and
     table.insert(html, '<div class="itemnav-container"><templatestyles src="Item Navbox/styles.css"/>\n')
          item_data["IsDisabled"] == false and  
 
          cost ~= nil and cost > 0 and
    -- Maps Headers to Slots and distinct CSS Classes
          item_data["Activation"] and
    local categories = {
          item_data["Activation"] ~= "Passive" then
         { header = "Weapon",  slot = "Weapon", css = "itemnav-weapon" },
           
         { header = "Vitality", slot = "Armor",  css = "itemnav-vitality" },
            table.insert(active_items, {
        { header = "Spirit",  slot = "Tech",  css = "itemnav-tech" }
                name = item_data["Name"],
    }
                key = item_key,
 
                cost = cost,
    -- Maps tier boundaries and formatting
                slot = item_data["Slot"] or "Weapon",
    local tiers = {
                has_active_desc = item_data["ActiveDescription"] ~= nil
        { label = "{{Souls|800}}", min = 0, max = 801 },
             })
        { label = "{{Souls|1600}}", min = 801, max = 1601 },
        { label = "{{Souls|3200}}", min = 1601, max = 3201 },
        { label = "{{Souls|6400}}", min = 3201, max = 6401 },
        { label = "[[Street Brawl|{{Legendary|{{#invoke:Lang|get_string|Citadel_ItemDraft_Legendary}}}}]]", min = 6401, max = 99999, extra_css = "itemnav-legendary " }
    }
 
    for _, cat in ipairs(categories) do
        table.insert(html, '\n<div class="itemnav-type-header">\'\'\'' .. cat.header .. '\'\'\'</div>\n')
        table.insert(html, '<div class="itemnav-type-container">\n')
 
        for _, tier in ipairs(tiers) do
            local css_class = "itemnav-soul " .. (tier.extra_css or "") .. cat.css
            local items_wikitext = get_item_icons(cat.slot, tier.min, tier.max, nil)
 
            table.insert(html, '\n<div class="itemnav-tier-row">\n')
            table.insert(html, '<div class="' .. css_class .. '">' .. tier.label .. '</div><!--\n')
            table.insert(html, '--><div class="itemnav-cost-type-container">' .. items_wikitext .. '</div>\n')
             table.insert(html, '</div>\n')
         end
         end
        table.insert(html, '\n</div>\n')
     end
     end
   
 
     table.sort(active_items, function(a, b) return a.name < b.name end)
     table.insert(html, '\n</div>')
   
 
    -- Optimized string compilation using a structural buffer table
    -- Only ONE preprocess call for the entire structure
     local rows = {}
    return process_debug_mode(table.concat(html), debug_mode)
    table.insert(rows, [=[{| class="wikitable mw-collapsible sortable" style="width:100%"  
end
|+{{#invoke:Dictionary|translate|Active Items}}
 
! colspan="2" | {{#invoke:Lang|get_string|Citadel_HeroBuilds_CategoryNameLabel}}
-- Generates navbox with codenames
! {{#invoke:Lang|get_string|Citadel_UserFeedback_TypeLabel}}
function p.generate_full_navbox_codenames(frame)
! {{Souls|{{#invoke:Dictionary|translate|Cost}}}}
    local debug_mode = type(frame) == "table" and frame.args and frame.args["debug_mode"] or nil
! {{#invoke:Lang|get_string|Citadel_Mod_Tooltip_Active}}
 
! {{#invoke:Lang|get_string|AbilityCooldown_label}}]=])
     local html = {}
      
table.insert(html, '<div class="itemnav-header"> [[Items]] <div class="item-nav-search-container"></div></div>\n')
     for _, item in ipairs(active_items) do
    table.insert(html, '<div class="itemnav-container"><templatestyles src="Item Navbox/styles.css"/>\n')
         local bg_color, item_type
 
         if item.slot == "Armor" then
    -- Maps Headers to Slots and distinct CSS Classes
             bg_color = "#86C921"
    local categories = {
             item_type = "Armor"
        { header = "Weapon",  slot = "Weapon", css = "itemnav-weapon" },
        elseif item.slot == "Tech" then
        { header = "Vitality", slot = "Armor",  css = "itemnav-vitality" },
             bg_color = "#DE9CFF"
        { header = "Spirit",  slot = "Tech",  css = "itemnav-tech" }
             item_type = "Tech"
    }
        else
 
             bg_color = "#FCAC4D"
    -- Maps tier boundaries and formatting
             item_type = "Weapon"
    local tiers = {
        { label = "{{Souls|800}}", min = 0, max = 801 },
        { label = "{{Souls|1600}}", min = 801, max = 1601 },
        { label = "{{Souls|3200}}", min = 1601, max = 3201 },
        { label = "{{Souls|6400}}", min = 3201, max = 6401 },
        { label = "[[Street Brawl|{{Legendary|{{#invoke:Lang|get_string|Citadel_ItemDraft_Legendary}}}}]]", min = 6401, max = 99999, extra_css = "itemnav-legendary " }
     }
 
     for _, cat in ipairs(categories) do
         table.insert(html, '\n<div class="itemnav-type-header">\'\'\'' .. cat.header .. '\'\'\'</div>\n')
         table.insert(html, '<div class="itemnav-type-container">\n')
 
        for _, tier in ipairs(tiers) do
             local css_class = "itemnav-soul " .. (tier.extra_css or "") .. cat.css
             local items_wikitext = get_item_codenames(cat.slot, tier.min, tier.max, nil)
 
             table.insert(html, '\n<div class="itemnav-tier-row">\n')
             table.insert(html, '<div class="' .. css_class .. '">' .. tier.label .. '</div><!--\n')
             table.insert(html, '--><div class="itemnav-cost-type-container">' .. items_wikitext .. '</div>\n')
             table.insert(html, '</div>\n')
         end
         end
       
 
        local row = string.format([=[
         table.insert(html, '\n</div>\n')
|-
! style="background-color:%s" | [[File:%s.png|64x64px]]
! [[%s{{If_lang}}|{{#invoke:Lang|get_string|%s}}]]
| style="text-align:center;font-weight:bold" | {{ItemType|%s|{{#invoke:Lang|get_string|CitadelCategory%s}}}}
| data-sort-value="%d" style="text-align:center;font-size:15px" | {{Souls|%d}}
| {{#invoke:Utilities|process_variables|%s_active_desc|%s}}{{#invoke:Utilities|process_variables|%s_desc|%s}}{{#invoke:Utilities|process_variables|%s_active|%s}}
| style="text-align:center;font-size:16px" | {{#invoke:ItemData|get_prop|%s|AbilityCooldown}}s]=],
            bg_color,
            item.name,
            item.name, item.key,
            item_type, item_type,
            item.cost, item.cost,
            item.key, item.name, item.key, item.name, item.key, item.name,
            item.name)
           
         table.insert(rows, row)
     end
     end
   
 
     table.insert(rows, "\n|}")
     table.insert(html, '\n</div>')
     return frame:preprocess(table.concat(rows, "\n"))
 
    -- Only ONE preprocess call for the entire structure
     return process_debug_mode(table.concat(html), debug_mode)
end
end


return p
return p

Latest revision as of 14:39, 21 August 2026

Documentation for this module may be created at Module:Item Navbox/doc

local p = {}
local items_data = mw.loadJsonData("Data:ItemData.json")
local items_module = require("Module:ItemData")
local lang_module = require('Module:Lang')

-- Cached items grouped by slot to prevent redundant full-table evaluations
local cached_slots = nil
local function get_items_by_slot(slot)
    if not cached_slots then
        cached_slots = { table = {}, Weapon = {}, Armor = {}, Tech = {} }
        for item_key, item_data in pairs(items_data) do
            local this_slot = item_data["Slot"]
            if this_slot and cached_slots[this_slot] then
                table.insert(cached_slots[this_slot], { key = item_key, data = item_data })
            end
        end
    end
    return cached_slots[slot] or {}
end

-- With debug_mode on, it outputs unprocessed wikitext
local function process_debug_mode(wikitext, debug_mode)
    if debug_mode == 'true' then
        return wikitext
    elseif debug_mode == 'false' or debug_mode == nil then
        return mw.getCurrentFrame():preprocess(wikitext)
    else
        return "debug_mode must be 'true' or 'false'"
    end
end

-- Directly fetches and formats ItemIcons for the navbox
local function get_item_icons(slot, min_souls, max_souls, filter_mode)
    if slot ~= 'Weapon' and slot ~= 'Armor' and slot ~= 'Tech' then return '' end
    
    local lang_code = lang_module.get_lang_code() 
    local items = {}
    local slot_items = get_items_by_slot(slot) 
    
    for _, item_entry in ipairs(slot_items) do
        local item_key = item_entry.key
        local item_data = item_entry.data
        
        local this_cost = tonumber(item_data["Cost"])
        local is_street_brawl = item_data["StreetBrawl"] == true
        local should_include = true
        
        if filter_mode == "street_brawl_only" and not is_street_brawl then
            should_include = false
        elseif filter_mode == "exclude_street_brawl" and is_street_brawl then
            should_include = false
        end
        
        if should_include and item_data["Name"] ~= nil and item_data["IsDisabled"] == false and this_cost ~= nil then
            if this_cost >= min_souls and this_cost < max_souls then
                local item_name_english = lang_module.get_string(item_key, "en")
                local item_name_local = lang_module.get_string(item_key, lang_code)
                
                local item_template
                if lang_code == "en" then
                    item_template = "{{ItemIcon|" .. item_name_english .. "|size=26px}}"
                else
                    item_template = "{{ItemIcon|" .. item_name_english .. "|lang=" .. lang_code .. "|l1=" .. item_name_local .. "|size=26px}}"
                end
                
                local search_data = item_name_english
                if lang_code ~= "en" and item_name_local then
                    search_data = search_data .. " " .. item_name_local
                end
                
                item_template = '<span class="item-nav-search-wrapper"><span class="item-nav-search-item" data-item-name="' .. search_data .. '">' .. item_template .. '</span>'
                table.insert(items, item_template)
            end
        end
    end
    
    table.sort(items)
    
    -- Append closing tags and bullets
    local total_items = #items
    for i = 1, total_items do
        if i == total_items then
            items[i] = items[i] .. '</span>'
        else
            items[i] = items[i] .. '<span class="item-nav-search-sep"> &bull; </span></span>'
        end
    end
    
    return table.concat(items, '')
end
    
-- Gets list of item codenames
local function get_item_codenames(slot, min_souls, max_souls, filter_mode, frame)
    if slot ~= 'Weapon' and slot ~= 'Armor' and slot ~= 'Tech' then return '' end
    
    local lang_code = lang_module.get_lang_code() 
    local items = {}
    local slot_items = get_items_by_slot(slot) 
    
    for _, item_entry in ipairs(slot_items) do
        local item_key = item_entry.key
        local item_data = item_entry.data
        
        local this_cost = tonumber(item_data["Cost"])
        local is_street_brawl = item_data["StreetBrawl"] == true
        local should_include = true
        
        if filter_mode == "street_brawl_only" and not is_street_brawl then
            should_include = false
        elseif filter_mode == "exclude_street_brawl" and is_street_brawl then
            should_include = false
        end
        
        if should_include and item_data["Name"] ~= nil and item_data["IsDisabled"] == false and this_cost ~= nil then
            if this_cost >= min_souls and this_cost < max_souls then
                local item_name_english = lang_module.get_string(item_key, "en")
                local item_name_local = lang_module.get_string(item_key, lang_code)
                
                local codename_frame = {
                     args = { item_name_english }
                }

                local item_codename = items_module.get_codename(codename_frame)
                
                local item_template
                if lang_code == "en" then
                    item_template = "{{ItemIcon|" .. item_name_english .. "|l1=" .. item_codename .. "|size=26px}}"
                else
                    item_template = "{{ItemIcon|" .. item_name_english .. "|lang=" .. lang_code .. "|l1=" .. item_name_local .. "|size=26px}}"
                end
                
                local search_data = item_name_english
                if lang_code ~= "en" and item_name_local then
                    search_data = search_data .. " " .. item_name_local
                end
                
                item_template = '<span class="item-nav-search-wrapper"><span class="item-nav-search-item" data-item-name="' .. search_data .. '">' .. item_template .. '</span>'
                table.insert(items, item_template)
            end
        end
    end
    
    table.sort(items)
    
    -- Append closing tags and bullets
    local total_items = #items
    for i = 1, total_items do
        if i == total_items then
            items[i] = items[i] .. '</span>'
        else
            items[i] = items[i] .. '<span class="item-nav-search-sep"> &bull; </span></span>'
        end
    end
    
    return table.concat(items, '')
end

-- Generates the full HTML item navbox recursively and efficiently
function p.generate_full_navbox(frame)
    local debug_mode = type(frame) == "table" and frame.args and frame.args["debug_mode"] or nil

    local html = {}
	table.insert(html, '<div class="itemnav-header"> [[Items]] <div class="item-nav-search-container"></div></div>\n')
    table.insert(html, '<div class="itemnav-container"><templatestyles src="Item Navbox/styles.css"/>\n')

    -- Maps Headers to Slots and distinct CSS Classes
    local categories = {
        { header = "Weapon",   slot = "Weapon", css = "itemnav-weapon" },
        { header = "Vitality", slot = "Armor",  css = "itemnav-vitality" },
        { header = "Spirit",   slot = "Tech",   css = "itemnav-tech" }
    }

    -- Maps tier boundaries and formatting
    local tiers = {
        { label = "{{Souls|800}}", min = 0, max = 801 },
        { label = "{{Souls|1600}}", min = 801, max = 1601 },
        { label = "{{Souls|3200}}", min = 1601, max = 3201 },
        { label = "{{Souls|6400}}", min = 3201, max = 6401 },
        { label = "[[Street Brawl|{{Legendary|{{#invoke:Lang|get_string|Citadel_ItemDraft_Legendary}}}}]]", min = 6401, max = 99999, extra_css = "itemnav-legendary " }
    }

    for _, cat in ipairs(categories) do
        table.insert(html, '\n<div class="itemnav-type-header">\'\'\'' .. cat.header .. '\'\'\'</div>\n')
        table.insert(html, '<div class="itemnav-type-container">\n')

        for _, tier in ipairs(tiers) do
            local css_class = "itemnav-soul " .. (tier.extra_css or "") .. cat.css
            local items_wikitext = get_item_icons(cat.slot, tier.min, tier.max, nil)

            table.insert(html, '\n<div class="itemnav-tier-row">\n')
            table.insert(html, '<div class="' .. css_class .. '">' .. tier.label .. '</div><!--\n')
            table.insert(html, '--><div class="itemnav-cost-type-container">' .. items_wikitext .. '</div>\n')
            table.insert(html, '</div>\n')
        end

        table.insert(html, '\n</div>\n')
    end

    table.insert(html, '\n</div>')

    -- Only ONE preprocess call for the entire structure
    return process_debug_mode(table.concat(html), debug_mode)
end

-- Generates navbox with codenames
function p.generate_full_navbox_codenames(frame)
    local debug_mode = type(frame) == "table" and frame.args and frame.args["debug_mode"] or nil

    local html = {}
	table.insert(html, '<div class="itemnav-header"> [[Items]] <div class="item-nav-search-container"></div></div>\n')
    table.insert(html, '<div class="itemnav-container"><templatestyles src="Item Navbox/styles.css"/>\n')

    -- Maps Headers to Slots and distinct CSS Classes
    local categories = {
        { header = "Weapon",   slot = "Weapon", css = "itemnav-weapon" },
        { header = "Vitality", slot = "Armor",  css = "itemnav-vitality" },
        { header = "Spirit",   slot = "Tech",   css = "itemnav-tech" }
    }

    -- Maps tier boundaries and formatting
    local tiers = {
        { label = "{{Souls|800}}", min = 0, max = 801 },
        { label = "{{Souls|1600}}", min = 801, max = 1601 },
        { label = "{{Souls|3200}}", min = 1601, max = 3201 },
        { label = "{{Souls|6400}}", min = 3201, max = 6401 },
        { label = "[[Street Brawl|{{Legendary|{{#invoke:Lang|get_string|Citadel_ItemDraft_Legendary}}}}]]", min = 6401, max = 99999, extra_css = "itemnav-legendary " }
    }

    for _, cat in ipairs(categories) do
        table.insert(html, '\n<div class="itemnav-type-header">\'\'\'' .. cat.header .. '\'\'\'</div>\n')
        table.insert(html, '<div class="itemnav-type-container">\n')

        for _, tier in ipairs(tiers) do
            local css_class = "itemnav-soul " .. (tier.extra_css or "") .. cat.css
            local items_wikitext = get_item_codenames(cat.slot, tier.min, tier.max, nil)

            table.insert(html, '\n<div class="itemnav-tier-row">\n')
            table.insert(html, '<div class="' .. css_class .. '">' .. tier.label .. '</div><!--\n')
            table.insert(html, '--><div class="itemnav-cost-type-container">' .. items_wikitext .. '</div>\n')
            table.insert(html, '</div>\n')
        end

        table.insert(html, '\n</div>\n')
    end

    table.insert(html, '\n</div>')

    -- Only ONE preprocess call for the entire structure
    return process_debug_mode(table.concat(html), debug_mode)
end

return p