Module:DropsLineTest: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
     local inputNumber = tonumber(frame.args[1]) or 0
     local inputNumber = tonumber(frame.args[1]) or 0


     -- Start building the wikitable row
     -- Initialize the output string
     local output = "|-" .. "\n"
     local output = ""


     -- Add the input number with color
     -- Add the input number with color

Revision as of 17:27, 5 May 2024

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

local p = {}

-- Define a function to generate output numbers and colored cells based on the input
function p.generateOutput(frame)
    local inputNumber = tonumber(frame.args[1]) or 0

    -- Initialize the output string
    local output = ""

    -- Add the input number with color
    output = output .. "| bgcolor=\"#FFFFFF\" | 1/" .. inputNumber .. "\n"

    -- Calculate and add percentages with colored cells
    output = output .. "| bgcolor=\"#FFCCCC\" | 1/" .. (inputNumber * 0.85) .. "\n" -- 10%
    output = output .. "| bgcolor=\"#FF9999\" | 1/" .. (inputNumber * 0.75) .. "\n" -- 20%
    output = output .. "| bgcolor=\"#FF6666\" | 1/" .. (inputNumber * 0.70) .. "\n" -- 30%
    output = output .. "| bgcolor=\"#FF3333\" | 1/" .. (inputNumber * 0.65) .. "\n" -- 40%
    output = output .. "| bgcolor=\"#FF0000\" | 1/" .. (inputNumber * 0.60) .. "\n" -- 50%

    return output
end

return p