Module:DropsLineTest: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
 
(46 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
-- Define a function to generate output numbers based on the input
-- Define a function to generate output numbers based on the input
local function generateOutput(input)
function p.generateOutput(frame)
    local inputNumber = tonumber(frame.args[1]) or 0
     local output = {}
     local output = {}


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


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


-- Test the script with an example input
return p
local inputNumber = 100 -- Example input number
local outputNumbers = generateOutput(inputNumber)
for i, number in ipairs(outputNumbers) do
    print("Number " .. i .. ": " .. number)
end

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