Module:DropsLineTest: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
 
(48 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


-- Define a function to assign background color based on input numerical value
-- Define a function to generate output numbers based on the input
local function assignBackgroundColor(value)
function p.generateOutput(frame)
     local color = ""
     local inputNumber = tonumber(frame.args[1]) or 0
    -- Define your conditions and corresponding colors
     local output = {}
    if value == 1 then
 
        color = "#afeeee" -- Light blue color
     -- Add the input number
     elseif value == 1/25 then
     table.insert(output, "\" | 1/" .. inputNumber)
        color = "#56e156" -- Light green color
     elseif value == 1/99.99 then
        color = "#ffed4c" -- Yellow color
     elseif value == 1/999.99 then
        color = "#ff863c" -- Orange color
    elseif value == 1/9999999 then
        color = "#ff6262" -- Red color
    else
        color = "#FFFFFF" -- Default color (white)
    end
    return color
end


-- Define a function to create a table row with colored cells
    -- Calculate percentages and choose color based on the percentage
function p.createColoredRow(frame)
     local percentages = {0.85, 0.75, 0.70, 0.65, 0.60} -- Percentages
     local args = frame.args
     local colors = {"#ff9999", "#7aa7ff", "#d699ff", "#fff59e", "#b3f1ff"} -- Corresponding colors
     local data = {}
   
     for k, v in pairs(args) do
     for i, percent in ipairs(percentages) do
         table.insert(data, v)
         local value = math.floor(inputNumber * percent)
    end
         local color = colors[i]
    local row = ""
         table.insert(output, "| style=\"background-color: " .. color .. ";\" | 1/" .. value)
    for _, value in ipairs(data) do
         local color = assignBackgroundColor(tonumber(value))
         row = row .. "| style=\"background-color: " .. color .. ";\" | " .. value .. "\n"
     end
     end
     return row
   
     return table.concat(output, '\n')
end
end


return p
return p

Latest revision as of 17:59, 7 May 2024

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

local p = {}

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

    -- Add the input number
    table.insert(output, "\" | 1/" .. inputNumber)

    -- Calculate percentages and choose color based on the percentage
    local percentages = {0.85, 0.75, 0.70, 0.65, 0.60} -- Percentages
    local colors = {"#ff9999", "#7aa7ff", "#d699ff", "#fff59e", "#b3f1ff"} -- Corresponding colors
    
    for i, percent in ipairs(percentages) do
        local value = math.floor(inputNumber * percent)
        local color = colors[i]
        table.insert(output, "| style=\"background-color: " .. color .. ";\" | 1/" .. value)
    end
    
    return table.concat(output, '\n')
end

return p