Module:DropsLineTest: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
(Created page with "local p = {} function p.determineColor(r) if r <= 1 then return "#afeeee" elseif r <= 25 then return "#56e156" elseif r <= 100 then return "#ffed4c" elseif r <= 1000 then return "#ff863c" elseif r <= 9999999 then return "#ff6262" else return "#ffffff" end end return p")
 
No edit summary
 
(67 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


function p.determineColor(r)
-- Define a function to generate output numbers based on the input
     if r <= 1 then
function p.generateOutput(frame)
        return "#afeeee"
     local inputNumber = tonumber(frame.args[1]) or 0
     elseif r <= 25 then
    local output = {}
        return "#56e156"
 
    elseif r <= 100 then
    -- Add the input number
        return "#ffed4c"
    table.insert(output, "\" | 1/" .. inputNumber)
     elseif r <= 1000 then
 
         return "#ff863c"
     -- Calculate percentages and choose color based on the percentage
    elseif r <= 9999999 then
    local percentages = {0.85, 0.75, 0.70, 0.65, 0.60} -- Percentages
         return "#ff6262"
    local colors = {"#ff9999", "#7aa7ff", "#d699ff", "#fff59e", "#b3f1ff"} -- Corresponding colors
    else
      
        return "#ffffff"
    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
     end
   
    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