Module:RecipeTable: Difference between revisions

From Eco - English Wiki
[unchecked revision][checked revision]
No edit summary
No edit summary
 
(197 intermediate revisions by 4 users not shown)
Line 1: Line 1:
-- Module:RecipeTable https://wiki.play.eco/en/Module:RecipeTable
local p = {}
local p = {}
local Utils = require("Module:Utils")
local L = require("Module:Localization")


-- Header for the wikitable
-- Header for the wikitable
function header( args )
function header(args)
     local headerStr = '{| class=\"wikitable mw-collapsible\" style=\"text-align: center;\"\n|-\n'
     local headerStr = '{| class=\"wikitable mw-collapsible\" style=\"text-align: center;\"\n|-\n'


     -- Show or hide the Crafting Station column
     -- Show or hide the Crafting Station column
     if args[1] == 1 then
     if args[1] == '1' then
         headerStr = headerStr .. '! Crafting Station !'
         headerStr = headerStr .. '! ' .. L.t('Crafting Station') .. ' !'
    end
    -- Item, Level Needed, Materials, Crafting Time, Labour Cost and XP Gained Specialty
    headerStr = headerStr .. '! colspan=\"4\" | ' .. L.t('Item') .. ' !! colspan=\"4\" | ' .. L.t('Materials') .. ' !! ' .. L.t('Level Needed') .. ' !! ' .. L.t('Crafting Time<br>(mins)') .. ' !! ' .. L.t('Labour Cost') .. ' || ' .. L.t('XP Gained') .. ' !!\n'
    return headerStr
end
 
function imagedisp(name, nameEN, style, borderColour)
    local borderImageClass = ''
    local icon
    if borderColour == 'green' then
        borderImageClass = ' borderGreen'
    elseif borderColour == 'yellow' then
        borderImageClass = ' borderYellow'
     end
     end


     -- Item, Level Needed, Materials, Related Specialty
     local iconBG
     headerStr = headerStr .. '! colspan=\"4\" | Item !! Level Needed !! colspan=\"4\" | Materials !! Crafting Time <br>(Mins) !! style="width: 100px" | Related <br> Specialty\n'
     if style == 'tag' then
        iconBG = 'iconGrey'
        icon = L.tag(name) .. 'Tag'
        name = L.t('%s Tag'):format(name)
    elseif style == 'skill' then
        iconBG = 'iconBrightBlue'
        icon = nameEN
    end


     return headerStr
    if not icon then
        icon = name
    end
 
     return Utils.build_icon(icon, name, 'iconRecipe', iconBG, borderImageClass, true) .. '\n[[' .. name .. ']]'
end
end


function imagedisp( name )
function stationcell(args)
     local str = ''
     local str = ''
     local image
     str = str .. '| ' .. imagedisp(args[1], args[2])
    -- Manual override for image file
    return str
    if name then
        image = string.gsub(name, ' ', '') .. '_Icon.png'
else
image = 'NoImage.png'
end
str = str .. '[[File:' .. image .. '|frameless|50px|link=' .. name .. ']] <br> [[' .. name .. ']]'
return str
end
end


function stationcell( args )
function itemcell(args)
  local str = ''
    local str = ''
str = str .. '| ' .. imagedisp(args[1])
    str = str .. '| ' .. imagedisp(args[1], args[3])
return str
    str = str .. '<br>x' .. args[2] .. '\n'
    return str
end
end


 
function ingredientcell(args)
function itemcell( args )
     local str = ''
     local str = ''
str = str .. '| ' .. imagedisp(args[1])
    local borderColour
str = str .. '<br>x' .. args[2] .. '\n'
    if args[4] == 'False' then
return str
        borderColour = 'green'
    elseif args[4] == 'True' then
        borderColour = 'yellow'
    end
    if args[1] == 'TAG' then
        style = 'tag'
    else
        style = nil
    end
    return str .. '| ' .. imagedisp(args[2], args[5], style, borderColour) .. '<br>x' .. args[3] .. '\n'
end
end


function skillreqcell( args )
function skillreqcell(args)
     local str = ''
     local str = ''
str = str .. '| ' .. imagedisp(args[1])
    str = str .. '| ' .. imagedisp(args[1], args[3], 'skill')
str = str .. '<br> Level ' .. args[2] .. ' \n'
    str = str .. '<br> ' .. L.t('Level') .. ' ' .. args[2] .. ' \n'
return str
    return str
end
end


function groupedskillcell( args )
 
    local str = ''
-- Does this even exist anymore?
str = str .. '| ' .. imagedisp(args[1])
--function groupedskillcell( args )
if args[2] ~= nil then
--    local str = ''
str = str .. ' <br> ' .. imagedisp(args[2])
-- str = str .. '| ' .. imagedisp(args[1],args[3])
end
-- if args[2] ~= nil then
return str
-- str = str .. ' <br> ' .. imagedisp(args[2])
end
-- end
-- return str
--end


-- Create a wikitable of recipes
-- Create a wikitable of recipes
function p.main( recipes )
function p.main(recipes)
     local rows = ''
     local rows = ''
    --Not relevant for v0.9
    -- find number of times each Affect by Skill occurs
    --local prevSkill = recipes[1].efficiencySkills[1]
    --local skillIndex = {}
    --local prevSkillnum = 0
--local count = 0
    --for num = 1, #recipes do
--if prevSkill ~= recipes[num].efficiencySkills[1] then
--skillIndex[#skillIndex + 1] = prevSkillnum + count
--prevSkillnum = 1
--if #recipes[num].ingredients > 4 then
--count = 1
--else
--count = 0
--end
--prevSkill = recipes[num].efficiencySkills[1]
--else
--prevSkillnum = prevSkillnum + 1
--if #recipes[num].ingredients > 4 then
--count = count + 1
--end
--end
    --end
    --skillIndex[#skillIndex + 1] = prevSkillnum + count
     -- Get each row
     -- Get each row
    local j = 0
    local k = 1
     for i = 1, #recipes do
     for i = 1, #recipes do
     
        -- get information from the current recipe for building
-- get information from the current recipe for building
        local checkImage = recipes[i].checkImage
local checkImage = recipes[i].checkImage
        local craftStn = recipes[i].craftStn
local craftStn = recipes[i].craftStn
        local skillNeeds = recipes[i].skillNeeds
local skillNeeds = recipes[i].skillNeeds
        --use last variant as this is always the default variant
--use last variant as this is always the default variant
        local numberOfVariants = recipes[i].numberOfVariants
local numberOfVariants = recipes[i].numberOfVariants
        local products = {}
        local ingredients = {}
--loop through variants to select default variant details
 
--FOR STILL NOT WORKING - ingredients and products are being set to NULL
        --loop through variants to select default variant ingredients
--NOTE - for loop doesn't appear to get cycled at all.
if numberOfVariants == 1 then
for k, variants in pairs(recipes[i].variants) do --AS IT IS A FOR LOOP, WILL ALWAYS SET FINAL VALUE WHICH IS ALSO DEFAULT VARIANT
            ingredients = recipes[i].variants[1].ingredients
--if statement redundant - last variant should always be default
            products = recipes[i].variants[1].products
if variants.products[numberOfVariants][1] == recipes[i].defaultVariant then
        else
local ingredients = variants.ingredients
        --loop through variants to select default variant ingredients
local products = variants.products --THIS MAY PRODUCE ODD RESULTS, NEED TO CHECK
            for k, v in pairs(recipes[i].variants) do       
else
                --given pairs doesn't guarantee order, check that product matches default variant
--TEST CODE
                if k == recipes[i].defaultVariant then
local products = {{'DEFAULT PRODUCT NOT FOUND','1'}}
                    ingredients = v.ingredients
local ingredients = {{'DEFAULT INGREDIENT TEST','1'}}
                    products = v.products
end
                end
end
            end
        end
--local recipeVariants = recipes[i].variants
        local baseCraftTime = recipes[i].baseCraftTime
--local products = recipeVariants[numberOfVariants].products
        local baseLaborCost = recipes[i].baseLaborCost
--local ingredients = recipeVariants[numberOfVariants].ingredients
        local baseXPGain = recipes[i].baseXPGain
--TEST CODE
 
--local products = {{'Acorn Powder','1'}}
        -- determine the size needed for products to display correctly
--local ingredients = {{'Acorn','1'}}
        local ingrednum = #ingredients
        local rowspan = '|'
local baseCraftTime = recipes[i].baseCraftTime
        local rowspanProducts = '|'
 
--yet to be put into table output
        --Code to incorporate rowspan for ingrediants and variants here
local baseLaborCost = recipes[i].baseLaborCost
        local rowspanCount = 0
local baseXPGain = recipes[i].baseXPGain
 
        --accomodate both variants and multiple ingredients
-- determine the size needed for products to display correctly
 
local ingrednum = #ingredients
        if ingrednum > 4 then
local rowspan = '|'
            rowspanCount = rowspanCount + 2
        end
if ingrednum > 4 then
        --suspect there will be a bug here for many variants & many ingredients - might need x2 multipler per variant.
rowspan = '| rowspan=\"2\" '
        if (#recipes == 1) then
end
            --only add variant rowspans if there is one recipe (i.e. variants will be displayed)
            if tonumber(recipes[i].numberOfVariants) > 1 then
-- String to return
                rowspanCount = rowspanCount + tonumber(recipes[i].numberOfVariants)
local row = '|-\n'
                rowspanProducts = '| rowspan=\"' .. rowspanCount - recipes[i].numberOfVariants - 1 .. '\" '
            end
-- Add new row if products or ingredients are passed in with at least 1 item
        end
if (products[1] and ingredients[1]) then
        if rowspanCount > 0 then
     
            rowspan = '| rowspan=\"' .. rowspanCount .. '\" '
-- Show or hide the Crafting Station column
            if (#recipes > 1) then
if recipes[i].dispCraftStn == 1 then
                rowspanProducts = '| rowspan=\"' .. rowspanCount .. '\" '
row = row .. rowspan .. stationcell({craftStn[1]}) .. '\n'
            else
end
                rowspanProducts = '| rowspan=\"' .. rowspanCount - recipes[i].numberOfVariants - 1 .. '\" '
          
            end
-- Add the products columns
        end
local prodnum = #products
 
for a = 1, prodnum do
        -- String to return
if prodnum == 1 then
        local row = '|-\n'
row = row .. rowspan .. ' colspan=\"4\" '
 
end
         -- Add new row if products or ingredients are passed in with at least 1 item
if ((prodnum == 2) or (prodnum == 3 and a == 2)) then
        if (products[1] and ingredients[1]) then
row = row .. rowspan .. ' colspan=\"2\" '
 
end
            local station = craftStn[1]
row = row .. itemcell({products[a][1], products[a][2]})
 
end
            -- Show or hide the Crafting Station column
            if recipes[i].dispCraftStn == '1' then
-- Add the Skill needed column
                row = row .. rowspan .. stationcell({ station[1], station[2] }) .. '\n'
if (skillNeeds[1] ~= '' and skillNeeds[1] ~= nil) then
            end
row = row .. rowspan .. skillreqcell({skillNeeds[1][1], skillNeeds[1][2]})
 
else
            -- Add the products columns
row = row .. rowspan
            local prodnum = #products
if ingrednum > 4 then
            for a = 1, prodnum do
row = row .. '|'
                if prodnum == 1 then
end
                    row = row .. rowspanProducts .. ' colspan=\"4\" '
row = row .. ' \'\'None\'\' \n'
                end
end
                if ((prodnum == 2) or (prodnum == 3 and a == 2)) then
                    row = row .. rowspanProducts .. ' colspan=\"2\" '
-- Add the FIRST row of Ingredients column
                end
local numing = ingrednum
                row = row .. itemcell({ products[a][1], products[a][2], products[a][3] })
if ingrednum > 4 then  
                if (tonumber(numberOfVariants) > 1) then
numing = 4
                    row = row .. '<i>' .. L.t('Has Variants') .. '</i> \n'
end
                end
for b = 1, numing do
            end
if (ingrednum == 1) then
 
row = row .. '| colspan=\"4\" '
            -- Add the FIRST row of Ingredients column
end
            local numing = ingrednum
if ((ingrednum == 2) or (ingrednum == 3 and b == 2)) then
            if ingrednum > 4 then
row = row .. '| colspan=\"2\" '
                numing = 4
end
            end
row = row .. itemcell({ingredients[b][1], ingredients[b][2]})
            for b = 1, numing do
end
                if (ingrednum == 1) then
                    row = row .. '| colspan=\"4\" '
-- Add the Crafting time column
                end
row = row .. rowspan
                if ((ingrednum == 2) or (ingrednum == 3 and b == 2)) then
if ingrednum > 4 then
                    row = row .. '| colspan=\"2\" '
row = row .. '|'
                end
end
                row = row .. ingredientcell(ingredients[b])
if baseCraftTime then
            end
row = row .. baseCraftTime .. '\n'
 
else
            -- Add the Skill needed column
            if (skillNeeds[1] ~= '' and skillNeeds[1] ~= nil) then
row = row .. rowspan .. ' \'\'missing\'\' \n'
                row = row .. rowspan .. skillreqcell({ skillNeeds[1][1], skillNeeds[1][2], skillNeeds[1][3] })
end
            else
                row = row .. rowspan
-- not in v0.9
                if ingrednum > 4 then
-- Add the Affect by Skills column IF new skill grouping
                    row = row .. '|'
--if j == 0 and (recipes[i].efficiencySkills[1] ~= nil and recipes[i].efficiencySkills[1] ~= 'nil')  then
                end
--row = row .. '| rowspan=\"' .. skillIndex[k] .. '\" ' .. groupedskillcell({recipes[i].efficiencySkills[1], recipes[i].speedSkills}) .. '\n'
                row = row .. ' \'\'' .. L.t('None') .. '\'\' \n'
--elseif (recipes[i].efficiencySkills[1] == nil or recipes[i].efficiencySkills[1] == 'nil'then
            end
--row = row .. '| \n'
 
--end
            -- Add the Crafting time column
--j = j + 1
            row = row .. rowspan
--if #ingredients > 4 then
            if rowspanCount > 1 then
--j = j + 1
                row = row .. '|'
--end
            end
--if j == skillIndex[k] then
            if baseCraftTime then
--k = k + 1
                row = row .. baseCraftTime .. '\n'
--j = 0
            else
--end
 
                row = row .. rowspan .. ' \'\'' .. L.t('Missing') .. '\'\' \n'
-- Add the SECOND row of ingredients to ingredients column if applicable
            end
if ingrednum > 4 then
 
row = row .. '|-\n'
            -- Add the Labour time column
for b = 5, ingrednum do
            row = row .. rowspan
if (ingrednum == 5) then
            if rowspanCount > 1 then
row = row .. '| colspan=\"4\" '
                row = row .. '|'
end
            end
if ((ingrednum == 6) or (ingrednum == 7 and b == 6)) then
            if baseLaborCost then
row = row .. '| colspan=\"2\" '
                row = row .. baseLaborCost .. '\n'
end
            else
row = row .. itemcell({ingredients[b][1], ingredients[b][2]})
 
end
                row = row .. rowspan .. ' \'\'' .. L.t('Missing') .. '\'\' \n'
end
            end
 
rows = rows .. row
            -- Add the XP gain column
end
            row = row .. rowspan
end
            if rowspanCount > 1 then
                row = row .. '|'
            end
            if baseXPGain then
                row = row .. baseXPGain .. '\n'
            else
 
                row = row .. rowspan .. ' \'\'' .. L.t('Missing') .. '\'\' \n'
            end
 
            -- Add the SECOND row of ingredients to ingredients column if applicable
            if ingrednum > 4 then
                row = row .. '|-\n'
                for b = 5, ingrednum do
                    if (ingrednum == 5) then
                        row = row .. '| colspan=\"4\" '
                    end
                    if ((ingrednum == 6) or (ingrednum == 7 and b == 6)) then
                        row = row .. '| colspan=\"2\" '
                    end
                    row = row .. ingredientcell(ingredients[b])
                end
            end
 
            rows = rows .. row
           
        end
 
        --Show variants in table if only 1 recipe in list
        if (#recipes == 1 and tonumber(recipes[i].numberOfVariants) > 1) then
            for k, v in pairs(recipes[i].variants) do
                --start new row for variants
                row = '|-\n'
                --Skip default variant
                if v.products[1][1] ~= recipes[i].defaultVariant then
                    local prodnum = #products
                    for a = 1, prodnum do
                        if prodnum == 1 then
                            row = row .. rowspanProducts .. ' colspan=\"4\" '
                        end
                        if ((prodnum == 2) or (prodnum == 3 and a == 2)) then
                            row = row .. rowspanProducts .. ' colspan=\"2\" '
                        end
                        row = row .. itemcell({ v.products[a][1], v.products[a][2], v.products[a][3] })
                    end
 
                    --will need to cycle ingrediants to fill out complete table
                    --row = row .. itemcell({v.products[1][1], v.products[1][2]})
                    local numing = ingrednum
                    if ingrednum > 4 then
                        numing = 4
                    end
                    for b = 1, numing do
                        if (ingrednum == 1) then
                            row = row .. '| colspan=\"4\" '
                        end
                        if ((ingrednum == 2) or (ingrednum == 3 and b == 2)) then
                            row = row .. '| colspan=\"2\" '
                        end
                        row = row .. ingredientcell(v.ingredients[b])
                    end
 
 
                end
                rows = rows .. row
            end
        end
    end
 
     -- Return the full wikitable
     -- Return the full wikitable
return header({recipes[1].dispCraftStn}) .. rows .. '|-\n|}\n'
    return header({ recipes[1].dispCraftStn }) .. rows .. '|-\n|}\n'
end
 
function p.testrender()
  local crafting_recipes = require("Module:GetRecipes")
  return crafting_recipes.renderTable('Campfire', nil, nil, nil)
end
end


return p
return p

Latest revision as of 15:45, 1 January 2024

Documentation[edit source]

This module is a part of the Template:GetRecipes, and is used to generate a wikitable of recipes. It returns a wikitable as a string. The wikitable contains all of the recipes that were passed into the module.

If the template is passed, this module is used with the following Modules:


-- Module:RecipeTable https://wiki.play.eco/en/Module:RecipeTable
local p = {}

local Utils = require("Module:Utils")
local L = require("Module:Localization")

-- Header for the wikitable
function header(args)
    local headerStr = '{| class=\"wikitable mw-collapsible\" style=\"text-align: center;\"\n|-\n'

    -- Show or hide the Crafting Station column
    if args[1] == '1' then
        headerStr = headerStr .. '! ' .. L.t('Crafting Station') .. ' !'
    end
    -- Item, Level Needed, Materials, Crafting Time, Labour Cost and XP Gained Specialty
    headerStr = headerStr .. '! colspan=\"4\" | ' .. L.t('Item') .. ' !! colspan=\"4\" | ' .. L.t('Materials') .. ' !! ' .. L.t('Level Needed') .. ' !! ' .. L.t('Crafting Time<br>(mins)') .. ' !! ' .. L.t('Labour Cost') .. ' || ' .. L.t('XP Gained') .. ' !!\n'
    return headerStr
end

function imagedisp(name, nameEN, style, borderColour)
    local borderImageClass = ''
    local icon
    if borderColour == 'green' then
        borderImageClass = ' borderGreen'
    elseif borderColour == 'yellow' then
        borderImageClass = ' borderYellow'
    end

    local iconBG
    if style == 'tag' then
        iconBG = 'iconGrey'
        icon = L.tag(name) .. 'Tag'
        name = L.t('%s Tag'):format(name)
    elseif style == 'skill' then
        iconBG = 'iconBrightBlue'
        icon = nameEN
    end

    if not icon then
        icon = name
    end

    return Utils.build_icon(icon, name, 'iconRecipe', iconBG, borderImageClass, true) .. '\n[[' .. name .. ']]'
end

function stationcell(args)
    local str = ''
    str = str .. '| ' .. imagedisp(args[1], args[2])
    return str
end

function itemcell(args)
    local str = ''
    str = str .. '| ' .. imagedisp(args[1], args[3])
    str = str .. '<br>x' .. args[2] .. '\n'
    return str
end

function ingredientcell(args)
    local str = ''
    local borderColour
    if args[4] == 'False' then
        borderColour = 'green'
    elseif args[4] == 'True' then
        borderColour = 'yellow'
    end
    if args[1] == 'TAG' then
        style = 'tag'
    else
        style = nil
    end
    return str .. '| ' .. imagedisp(args[2], args[5], style, borderColour) .. '<br>x' .. args[3] .. '\n'
end

function skillreqcell(args)
    local str = ''
    str = str .. '| ' .. imagedisp(args[1], args[3], 'skill')
    str = str .. '<br> ' .. L.t('Level') .. ' ' .. args[2] .. ' \n'
    return str
end


-- Does this even exist anymore?
--function groupedskillcell( args )
--    local str = ''
--	str = str .. '| ' .. imagedisp(args[1],args[3])
--	if args[2] ~= nil then
--		str = str .. ' <br> ' .. imagedisp(args[2])
--	end
--	return str
--end

-- Create a wikitable of recipes
function p.main(recipes)
    local rows = ''
    -- Get each row
    for i = 1, #recipes do
        -- get information from the current recipe for building
        local checkImage = recipes[i].checkImage
        local craftStn = recipes[i].craftStn
        local skillNeeds = recipes[i].skillNeeds
        --use last variant as this is always the default variant
        local numberOfVariants = recipes[i].numberOfVariants
        local products = {}
        local ingredients = {}

        --loop through variants to select default variant ingredients
		if numberOfVariants == 1 then
            ingredients = recipes[i].variants[1].ingredients
            products = recipes[i].variants[1].products
        else
        --loop through variants to select default variant ingredients
            for k, v in pairs(recipes[i].variants) do        
                --given pairs doesn't guarantee order, check that product matches default variant
                if k == recipes[i].defaultVariant then
                    ingredients = v.ingredients
                    products = v.products
                end
            end
        end
        local baseCraftTime = recipes[i].baseCraftTime
        local baseLaborCost = recipes[i].baseLaborCost
        local baseXPGain = recipes[i].baseXPGain

        -- determine the size needed for products to display correctly
        local ingrednum = #ingredients
        local rowspan = '|'
        local rowspanProducts = '|'

        --Code to incorporate rowspan for ingrediants and variants here
        local rowspanCount = 0

        --accomodate both variants and multiple ingredients

        if ingrednum > 4 then
            rowspanCount = rowspanCount + 2
        end
        --suspect there will be a bug here for many variants & many ingredients - might need x2 multipler per variant.
        if (#recipes == 1) then
            --only add variant rowspans if there is one recipe (i.e. variants will be displayed)
            if tonumber(recipes[i].numberOfVariants) > 1 then
                rowspanCount = rowspanCount + tonumber(recipes[i].numberOfVariants)
                rowspanProducts = '| rowspan=\"' .. rowspanCount - recipes[i].numberOfVariants - 1 .. '\" '
            end
        end
        if rowspanCount > 0 then
            rowspan = '| rowspan=\"' .. rowspanCount .. '\" '
            if (#recipes > 1) then
                rowspanProducts = '| rowspan=\"' .. rowspanCount .. '\" '
            else
                rowspanProducts = '| rowspan=\"' .. rowspanCount - recipes[i].numberOfVariants - 1 .. '\" '
            end
        end

        -- String to return
        local row = '|-\n'

        -- Add new row if products or ingredients are passed in with at least 1 item
        if (products[1] and ingredients[1]) then

            local station = craftStn[1]

            -- Show or hide the Crafting Station column
            if recipes[i].dispCraftStn == '1' then
                row = row .. rowspan .. stationcell({ station[1], station[2] }) .. '\n'
            end

            -- Add the products columns
            local prodnum = #products
            for a = 1, prodnum do
                if prodnum == 1 then
                    row = row .. rowspanProducts .. ' colspan=\"4\" '
                end
                if ((prodnum == 2) or (prodnum == 3 and a == 2)) then
                    row = row .. rowspanProducts .. ' colspan=\"2\" '
                end
                row = row .. itemcell({ products[a][1], products[a][2], products[a][3] })
                if (tonumber(numberOfVariants) > 1) then
                    row = row .. '<i>' .. L.t('Has Variants') .. '</i> \n'
                end
            end

            -- Add the FIRST row of Ingredients column
            local numing = ingrednum
            if ingrednum > 4 then
                numing = 4
            end
            for b = 1, numing do
                if (ingrednum == 1) then
                    row = row .. '| colspan=\"4\" '
                end
                if ((ingrednum == 2) or (ingrednum == 3 and b == 2)) then
                    row = row .. '| colspan=\"2\" '
                end
                row = row .. ingredientcell(ingredients[b])
            end

            -- Add the Skill needed column
            if (skillNeeds[1] ~= '' and skillNeeds[1] ~= nil) then
                row = row .. rowspan .. skillreqcell({ skillNeeds[1][1], skillNeeds[1][2], skillNeeds[1][3] })
            else
                row = row .. rowspan
                if ingrednum > 4 then
                    row = row .. '|'
                end
                row = row .. ' \'\'' .. L.t('None') .. '\'\' \n'
            end

            -- Add the Crafting time column
            row = row .. rowspan
            if rowspanCount > 1 then
                row = row .. '|'
            end
            if baseCraftTime then
                row = row .. baseCraftTime .. '\n'
            else

                row = row .. rowspan .. ' \'\'' .. L.t('Missing') .. '\'\' \n'
            end

            -- Add the Labour time column
            row = row .. rowspan
            if rowspanCount > 1 then
                row = row .. '|'
            end
            if baseLaborCost then
                row = row .. baseLaborCost .. '\n'
            else

                row = row .. rowspan .. ' \'\'' .. L.t('Missing') .. '\'\' \n'
            end

            -- Add the XP gain column
            row = row .. rowspan
            if rowspanCount > 1 then
                row = row .. '|'
            end
            if baseXPGain then
                row = row .. baseXPGain .. '\n'
            else

                row = row .. rowspan .. ' \'\'' .. L.t('Missing') .. '\'\' \n'
            end

            -- Add the SECOND row of ingredients to ingredients column if applicable
            if ingrednum > 4 then
                row = row .. '|-\n'
                for b = 5, ingrednum do
                    if (ingrednum == 5) then
                        row = row .. '| colspan=\"4\" '
                    end
                    if ((ingrednum == 6) or (ingrednum == 7 and b == 6)) then
                        row = row .. '| colspan=\"2\" '
                    end
                    row = row .. ingredientcell(ingredients[b])
                end
            end

            rows = rows .. row
            
        end

        --Show variants in table if only 1 recipe in list
        if (#recipes == 1 and tonumber(recipes[i].numberOfVariants) > 1) then
            for k, v in pairs(recipes[i].variants) do
                --start new row for variants
                row = '|-\n'
                --Skip default variant
                if v.products[1][1] ~= recipes[i].defaultVariant then
                    local prodnum = #products
                    for a = 1, prodnum do
                        if prodnum == 1 then
                            row = row .. rowspanProducts .. ' colspan=\"4\" '
                        end
                        if ((prodnum == 2) or (prodnum == 3 and a == 2)) then
                            row = row .. rowspanProducts .. ' colspan=\"2\" '
                        end
                        row = row .. itemcell({ v.products[a][1], v.products[a][2], v.products[a][3] })
                    end

                    --will need to cycle ingrediants to fill out complete table
                    --row = row .. itemcell({v.products[1][1], v.products[1][2]})
                    local numing = ingrednum
                    if ingrednum > 4 then
                        numing = 4
                    end
                    for b = 1, numing do
                        if (ingrednum == 1) then
                            row = row .. '| colspan=\"4\" '
                        end
                        if ((ingrednum == 2) or (ingrednum == 3 and b == 2)) then
                            row = row .. '| colspan=\"2\" '
                        end
                        row = row .. ingredientcell(v.ingredients[b])
                    end


                end
                rows = rows .. row
            end
        end
    end

    -- Return the full wikitable
    return header({ recipes[1].dispCraftStn }) .. rows .. '|-\n|}\n'
end

function p.testrender()
  local crafting_recipes = require("Module:GetRecipes")
  return crafting_recipes.renderTable('Campfire', nil, nil, nil)
end

return p